/* MOBILE FIRST RESPONSIVE

--- TABLET (768px ke atas) --- 

@media (min-width: 768px) {
  .card-container {
    display: flex;
    gap: 20px;
  }
  .card {
    flex: 1; 
  }
}

 --- DESKTOP (1024px ke atas) --- 
 
@media (min-width: 1024px) {
  .card-container {
    max-width: 1200px;
    margin: 0 auto;  Membatasi lebar konten di layar sangat besar 
  }
  body {
    font-size: 18px;  Memperbesar teks untuk layar desktop 
  }
}

*/

/* Navbar */

:root {
  --navbar-height: 70px;
}

.navbar {
  padding: 10px;
  background: var(--bg-primer);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1070 !important;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: white !important;
  letter-spacing: -0.5px;
  padding: 5px;
}

.logo-navbar {
  height: 40px;
  width: auto;
}

.navbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-btn {
  width: 50px;
  height: 50px;
  color: white;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: transparent;
  border: none;
}

.search-btn:hover {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
}

.navbar-toggler {
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar-toggler:hover {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: 0.3s;
}

.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

.menu-open .hamburger {
  background: transparent;
}

.menu-open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-open .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.close-btn {
  width: 50px;
  height: 50px;
  color: white;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: transparent;
  border: none;
}

.close-btn:hover {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
}

/* OVERLAY FADE + SLIDE */
.menu-overlay {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--navbar-height));
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: grayscale(1); 
  -webkit-backdrop-filter: grayscale(1);
  opacity: 0;
  visibility: hidden;
  z-index: 1072 !important;
}

.menu-overlay.menu-open {
  opacity: 1;
  visibility: visible;
}

.navbar-collapse {
  opacity: 0.7;
  position: fixed;
  top: var(--navbar-height);
  right: -400px;
  height: calc(100vh - var(--navbar-height));
  width: 100%;
  z-index: 1074 !important;
  background: var(--bg-primer);
  padding: 3rem 2rem;
  overflow-y: auto;
  max-width: 400px;
  transition: all 0.5s cubic-bezier(0, 0.3, 0.1, 1);
}

.navbar-collapse.menu-open {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.navbar-nav {
  flex-direction: column;
  gap: 1.2rem;
  margin-left: auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 400;
  font-size: 1.1rem;
  padding: 1rem !important;
  border-radius: 15px;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
  z-index: -1;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover {
  color: white !important;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(10px);
}

.nav-link i {
  width: 24px;
  font-size: 1.2rem;
  opacity: 0.9;
  margin-right: 12px;
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: none;
  border-radius: 12px;
  margin: 0.5rem 0 0 1rem;
  padding: 10px;
  opacity: 0.7;
  transition: all 0.5s ease-out;
}
.dropdown-menu.show {
  opacity: 1;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.9rem 1.5rem !important;
  margin-bottom: 5px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
  z-index: -1;
}
.dropdown-item:hover::before {
  width: 100%;
}

.dropdown-item:hover {
  background: none;
}

/* DARKMODE TOGGLE  */
.toggle {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  z-index: 1075 !important;
}

.switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  cursor: pointer;
  transition: 0.3s;
}

.switch span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.switch.on {
  background: #0d38b5;
}

.switch.on span {
  transform: translateX(24px);
}

/* search modal  */

.search-body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8); 
  backdrop-filter: grayscale(1);
  -webkit-backdrop-filter: grayscale(1);
  overflow: hidden;
  z-index: 1080 !important;
  opacity: 0.7;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0, 0.3, 0.1, 1);
}

.search-body.search-open-show {
  opacity: 1;
  visibility: visible;
}


.search-container {
  position: fixed;
  top: -35%;
  width: 90vw;
  max-width: 1000px;
  height: auto;
  min-height: 200px;
  max-height: 85vh;
  background: white;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0, 0.3, 0.1, 1);
  z-index: 1081 !important;
  opacity: 0.7;
  visibility: hidden;
  border-radius: 0 0 15px 15px;
}

.search-container.search-open-show {
    top: 0;
  opacity: 1;
  visibility: visible;
}

.search-header {
  flex-shrink: 0;
  height: var(--navbar-height);
  background: var(--bg-primer);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1082 !important;
}

.search-modal-title {
  font-size: 1.5rem;
  font-family: graphik700;
  color: white;
  margin: 0;
}

.search-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-modal-close:hover {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
}

.search-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 50px;
  scroll-behavior: smooth;
  transition: all 0.3s cubic-bezier(0, 0.3, 0.1, 1);
  opacity: 0.7;
  visibility: hidden;
  z-index: 1083 !important;
  scrollbar-width: none;
}

.search-content.search-open-show {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s cubic-bezier(0, 0.3, 0.1, 1);
}

.search-input-wrapper {
  position: sticky;
  padding: 2rem;
  top: 0;
  background: white;
  z-index: 1084 !important;
}

.search-input {
  width: 100%;
  max-width: 700px;
  height: 60px;
  margin: 0 auto;
  display: block;
  padding: 1rem 1rem 1rem 3.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  outline: none;
}

.search-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.search-input-icon {
  position: absolute;
  left: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-dark);
  font-size: 1.7rem;
  pointer-events: none;
}

.typing {
  color: var(--c-dark);
  font-style: italic;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

.stats-search {
  padding: 0;
  margin: 4px;
  font-size: 15px;
}

.result {
  background: white;
  color: var(--c-dark);
  margin-bottom: 12px;
  border-radius: 15px;
  overflow: auto;
  transition: all 0.5s;
  cursor: pointer;
  border:2px solid transparent;
}
.result-card {
    border: 2px solid #dcdfeb;
    border-radius: 12px;
    transition: all 0.5s ease;
}

.result-card:hover {
    border: 2px solid #dcdfeb;
    border-radius: 12px;
    transition: all 0.5s ease;
    background: #adadc0;
}


.result-header {
  background: #dcdfeb;
  font-family: graphik600;
  color: var(--c-dark);
  padding: 10px 20px;
}

.result-title {
  margin: 0 0 5px 0;
}

.result-category {
  font-size: 15px;
  font-family: graphik400;
}

.result-body {
  padding: 10px;
}

.result-snippet {
  color: var(--c-dark);
  font-family: oxygen400;
  padding: 0 10px;
}

.no-results {
  text-align: center;
  padding: 10px;
  color: var(--c-dark);
  margin-bottom: 20px;
}

.info-input {
  text-align: center;
  padding: 10px;
  color: var(--c-dark);
  margin-bottom: 20px;
}

.highlight {
  background: none;
  color: blue;
  margin-left:1px;
  margin-right:1px;
}

@media (min-width: 768px) {
  .search-input-icon {
    left: 3.2rem;
  }
}

@media (min-width: 1024px) {
  .search-input-icon {
    left: 5rem;
  }
}


/* Weather widget */

.weather {
  padding: 5px 10px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-white);
  color: var(--c-dark);
  border-radius: 6px;
}

.temp {
  font-family: graphik700;
  font-size: 20px;
  line-height: 17px;
}

.cond {
  font-family: oxygen400;
  font-size: 12px;
}

.city {
  font-family: oxygen400;
  font-size: 12px;
}

.city-icon {
  margin-right: 3px;
}

.icon {
  font-size: 4rem;
  margin-bottom: 15px;
  display: none;
}

/*.stats$disabled$ {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  font-size: 0.9rem;
  display: none;
}
*/

.stat {
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: none;
}

/* hero landing slide */

/* HERO LANDING CONTAINER */
.hero-landing-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 2rem 0;
}

/* HERO LANDING SLIDER */
.hero-landing-slider {
  position: relative !important;
  width: 100vw !important;
  max-width: 100% !important;
  height: 70vh !important;
  max-height: 700px !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  margin-bottom: 5rem !important;
}

/* HERO LANDING SLIDE */
.hero-landing-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  transition: opacity 1s ease-in-out !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.hero-landing-slide.active {
  opacity: 1 !important;
}

.hero-landing-slide::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 129, 0.1) 0%,
    rgba(25, 118, 210, 0.1) 35%,
    rgba(35, 130, 246, 0.1) 70%,
    rgba(45, 102, 241, 0.1) 100%
  ) !important;
  z-index: 1 !important;
}

/* FIXED OVERLAY TEXT - KIRI ATAS */
.hero-landing-fixed-overlay {
  position: absolute !important;
  top: 80px !important;
  left: 30px !important;
  z-index: 3 !important;
  pointer-events: none !important;
  animation: heroLandingSlideInLeft 1.5s ease-out !important;
}

@keyframes heroLandingSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MANUAL SLIDER NAVIGATION */
.hero-landing-nav {
  position: absolute !important;
  bottom: 3.5rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  z-index: 10 !important;
}

.hero-landing-nav-arrow {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: var(--bg-second) !important;
  backdrop-filter: blur(15px) !important;
  color: var(--c-second) !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  user-select: none !important;
}

.hero-landing-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.4) !important;
  transform: scale(1.25) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35) !important;
}

.hero-landing-nav-arrow:active {
  transform: scale(1.1) !important;
}

.hero-landing-dots {
  display: flex !important;
  margin: 15px;
}

.hero-landing-dot {
  margin: 5px;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.5) !important;
  cursor: pointer !important;
  transition: all 0.4s ease !important;
  border: 2px solid transparent !important;
}

.hero-landing-dot:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.2) !important;
}

.hero-landing-dot.active {
  background: rgba(255, 255, 255, 1) !important;
  transform: scale(1.5) !important;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8) !important;
}

/* DESCRIPTION SECTION */
.hero-landing-description {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: all 1s ease !important;
  width: 100% !important;
}

.hero-landing-description.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-landing-slider {
    height: 70vh !important;
    width: 100% !important;
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
}

@media (max-width: 768px) {
  .hero-landing-container {
    padding: 1rem 0 !important;
  }

  .hero-landing-slider {
    height: 70vh !important;
    margin-bottom: 4rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-landing-overlay-title {
    margin-bottom: 0.75rem !important;
  }

  .hero-landing-desc-title {
    font-size: 2rem !important;
  }

  .hero-landing-desc-text {
    font-size: 1.15rem !important;
  }
}

@media (max-width: 480px) {
  .hero-landing-overlay-title {
    font-size: clamp(2.2rem, 7vw, 3.2rem) !important;
  }

  .hero-landing-overlay-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.2rem) !important;
  }
}

/* Artikel terbaru grid */

.cards-wrapper {
  overflow: hidden;
}

.cards-container {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card {
  flex: 0 0 320px;
  height: 380px;
  background: var(--bg-white);
  color: var(--c-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-style: none;
}

.card-image {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  position: relative;
}

.card-content {
  padding: 1.25rem;
  background: var(--bg-white);
  color: var(--c-dark);
  border-width: 0;
}

.card-category {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  height: 3.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-excerpt {
  font-size: 0.875rem;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 1rem;
}

.nav-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  align-items: center;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: white;
  color: #3b82f6;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.arrow-btn:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
  transform: scale(1.05);
}

.indicators {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.indicator.active {
  background: #3b82f6;
  transform: scale(1.2);
}

/* Kenapa harus bandung section index */

.highlight-event-section {
  width: 100vw;
  color: var(--c-dark);
  position: relative;
  overflow: hidden;
  background: var(--bg-second);
  margin-top: 80px;
}

.highlight-event-container {
  margin: 2rem auto;
  padding: 6rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.highlight-event-content {
  flex: 1;
}

.highlight-event-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.highlight-event-subtitle {
  margin-bottom: 1rem;
  max-width: 600px;
}

/* SLIDER CONTAINER */
.highlight-event-slider {
  flex-shrink: 0;
  width: 500px;
  height: 400px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* SLIDE IMAGES */
.highlight-event-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.highlight-event-slide.active {
  opacity: 1;
}

/* Dots Indicator */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .highlight-event-container {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .highlight-event-slider {
    width: 100%;
    max-width: 500px;
    height: 300px;
  }
}

@media (max-width: 640px) {
  .highlight-event-container {
    padding: 3rem 1.5rem;
  }
}

/* Informasi Terkini index */

.event-news-section {
  background: var(--bg-white);
  min-height: 100vh;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-news-cards-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.event-news-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: none;
  transition: box-shadow 0.2s ease;
  max-width: 800px;
  width: 100%;
  margin: 30px auto;
}

.event-news-card:hover {
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.event-news-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-news-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--bg-yellow);
  color: var(--c-second);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.event-news-content {
  padding: 2rem;
  text-align: center;
}

.event-news-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--c-dark);
  text-align: center;
  height: 4.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-news-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  height: 3.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.event-news-button {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  max-width: 200px;
}

.event-news-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

@media (max-width: 640px) {
  .event-news-content {
    padding: 1.5rem;
  }

  .event-news-title {
    font-size: 1.5rem;
  }
}
