/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/TermsAcceptanceModal.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
.terms-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 55, 72, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.terms-modal {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(45, 55, 72, 0.3);
    animation: slideIn 0.3s ease-out;
    font-family: 'DM Sans', sans-serif;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #E5E7EB;
    background: #2D3748;
    color: white;
    border-radius: 12px 12px 0 0;
}

.terms-modal-header h2 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.01em;
}

.terms-modal-version {
    margin: 0;
    opacity: 0.85;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.terms-modal-progress {
    padding: 20px 32px;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
}

.progress-bar {
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: #5A8B9F;
    transition: width 0.3s ease;
}

.progress-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.terms-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    background: white;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: #2D3748;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #5A8B9F;
    letter-spacing: -0.01em;
}

.section-content {
    color: #2D3748;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.section-content p {
    margin-bottom: 1em;
    color: #2D3748;
}

.section-content ul,
.section-content ol {
    margin-bottom: 1em;
    padding-left: 24px;
    color: #2D3748;
}

.section-content li {
    margin-bottom: 0.5em;
}

.section-content h1,
.section-content h2,
.section-content h3,
.section-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    color: #2D3748;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.section-content strong {
    font-weight: 600;
    color: #2D3748;
}

.terms-modal-error {
    margin: 0 32px;
    padding: 14px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #991b1b;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.terms-modal-footer {
    padding: 20px 32px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    background: #F9FAFB;
}

.terms-modal-footer button {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    flex: 1;
}

.btn-secondary {
    background: white;
    color: #2D3748;
    border: 1px solid #E5E7EB;
}

.btn-secondary:hover:not(:disabled) {
    filter: brightness(0.98);
    border-color: #6B7280;
}

.btn-secondary:active:not(:disabled) {
    filter: brightness(0.95);
}

.btn-secondary:focus-visible {
    outline: 3px solid rgba(90, 139, 159, 0.5);
    outline-offset: 2px;
}

.btn-primary {
    background: #5A8B9F;
    color: white;
    border: 1px solid #4e7a8b;
}

.btn-primary:hover:not(:disabled) {
    filter: brightness(0.95);
}

.btn-primary:active:not(:disabled) {
    filter: brightness(0.9);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(90, 139, 159, 0.5);
    outline-offset: 2px;
}

.btn-accept {
    background: #9DB5A5;
    color: white;
    font-size: 1rem;
    border: 1px solid #8ca599;
}

.btn-accept:hover:not(:disabled) {
    filter: brightness(0.95);
}

.btn-accept:active:not(:disabled) {
    filter: brightness(0.9);
}

.btn-accept:focus-visible {
    outline: 3px solid rgba(157, 181, 165, 0.5);
    outline-offset: 2px;
}

.terms-modal-footer button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.terms-modal-notice {
    padding: 16px 32px 20px;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    color: #6B7280;
    text-align: center;
    background: #F9FAFB;
    border-radius: 0 0 12px 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .terms-modal {
        max-height: 95vh;
        margin: 10px;
    }

    .terms-modal-header,
    .terms-modal-progress,
    .terms-modal-content,
    .terms-modal-footer,
    .terms-modal-notice {
        padding-left: 20px;
        padding-right: 20px;
    }

    .terms-modal-footer {
        flex-direction: column;
    }

    .terms-modal-footer button {
        width: 100%;
    }
}
/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/Hero.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* Hero Section — Dark Aurora Edition (Safari-optimised) */

/* ─── KEY SAFARI OPTIMISATION RULES APPLIED ────────────────────────────────
   1. SVG filter removed from entire SVG tree — the biggest Safari GPU killer
   2. backdrop-filter removed from .tech-badge: replaced with solid RGBA bg
   3. box-shadow removed from @keyframes (logo-pulse, btn-pulse) — non-composited;
      replaced with opacity pulsing which IS compositor-only
   4. drop-shadow filter removed from @keyframes letter-glow — non-composited;
      replaced with opacity change
   5. will-change: transform added where 3D transforms fire on those elements
   6. -webkit-backdrop-filter kept only on the logo box (one element = OK)
   ─── All visual effects preserved, just moved to GPU-safe properties ────── */

.hero-section-new {
  min-height: 150vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 65% 10%, rgba(115, 100, 209, 0.30) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 120, 212, 0.22) 0%, transparent 48%),
    radial-gradient(ellipse at 85% 75%, rgba(6, 214, 160, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, #0A0A14 0%, #0D0D1A 55%, #090915 100%);
  padding: 4rem 2rem;
}

.svg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90%;
  z-index: 0;
  pointer-events: none;
}

.svg-container svg {
  width: 100%;
  height: 100%;
  /* REMOVED: filter: url(#glow)  ← was repaint-ing the entire SVG on every frame in Safari */
  /* The individual glow elements inside SVG still have their own animations */
  will-change: transform;
  /* promote to own layer */
}

/* Estilos para círculos y labels */
.bulb-outer {
  transition: all 0.3s ease;
}

.tech-label {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

#central-logo {
  animation: pulse-logo 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes pulse-logo {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

/* Texto principal */
.hero-text-content {
  text-align: center;
  max-width: 900px;
  margin-top: -14rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #c4b8ff 40%, #7ec8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-gradient-text {
  background: linear-gradient(135deg,
      var(--mbn-steel-500) 0%,
      #7BA7BA 50%,
      var(--mbn-sage-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Contenedor de animación */
.hero-animation-container {
  width: 100%;
  max-width: 1200px;
  height: 600px;
  position: relative;
  margin: 0.5rem 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Botones de acción */
.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Botón CTA llamativo */
.hero-btn-cta {
  position: relative;
  padding: 1.25rem 3.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans-primary);
  color: white;
  background: linear-gradient(135deg, var(--aurora-purple) 0%, var(--aurora-blue) 100%);
  box-shadow:
    0 8px 28px rgba(115, 100, 209, 0.45),
    0 4px 12px rgba(0, 120, 212, 0.3);
  overflow: hidden;
  letter-spacing: 0.3px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  /* Pulse replaced with opacity-only animation (compositor path) */
  animation: btn-pulse 3s ease-in-out infinite;
}

.hero-btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s ease;
}

.hero-btn-cta:hover::before {
  left: 100%;
}

.hero-btn-cta:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}

.hero-btn-cta:active {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Animate opacity instead of box-shadow — compositor-only, no repaint */
@keyframes btn-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.88;
  }
}

/* Tech Stack Display */
.tech-stack-display {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1rem;
  min-height: 4rem;
}

.tech-badge {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  border: 1.5px solid rgba(115, 100, 209, 0.55);
  /* REPLACED backdrop-filter with solid rgba bg — each badge had its own
     compositor layer due to backdrop-filter, compounding GPU cost in Safari */
  background-color: rgba(18, 18, 32, 0.92);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  animation: pulse-badge 2s ease-in-out infinite;
  white-space: nowrap;
  will-change: opacity;
  /* only opacity changes in animation */
}

/* Changed to animate opacity only — compositor-safe */
@keyframes pulse-badge {

  0%,
  100% {
    opacity: 1;
    border-color: rgba(90, 139, 159, 0.55);
  }

  50% {
    opacity: 0.7;
    border-color: rgba(157, 181, 165, 0.4);
  }
}

/* Logo MB Container */
.hero-logo-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mb-logo-box {
  position: relative;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  border: 2px solid rgba(115, 100, 209, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(115, 100, 209, 0.25),
    0 4px 16px rgba(0, 120, 212, 0.2);
  /* backdrop-filter kept on logo box — only ONE element, acceptable cost */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  will-change: transform, opacity;
  transition: transform 0.3s ease, opacity 0.3s ease;
  /* Pulse replaced with opacity — compositor-only */
  animation: logo-pulse 3s ease-in-out infinite;
}

.mb-logo-box:hover {
  transform: translateY(-5px);
}

/* Replaced box-shadow animation with opacity — compositor-only */
@keyframes logo-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.88;
  }
}

/* Efecto de reflejo diagonal tipo anime cuando las partículas top llegan */
.mb-logo-pulse {
  position: relative;
  overflow: hidden;
}

.mb-logo-pulse::before {
  content: '';
  position: absolute;
  top: -150%;
  left: -150%;
  width: 150px;
  height: 400%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(90, 139, 159, 0.1) 15%,
      rgba(90, 139, 159, 0.3) 25%,
      rgba(123, 167, 186, 0.5) 40%,
      rgba(143, 181, 161, 0.6) 50%,
      rgba(123, 167, 186, 0.5) 60%,
      rgba(90, 139, 159, 0.3) 75%,
      rgba(90, 139, 159, 0.1) 85%,
      transparent 100%);
  /* REDUCED blur from 15px → 6px — still looks like a shine, cheaper */
  filter: blur(6px);
  transform: rotate(45deg);
  animation: anime-shine 1.2s ease-in-out;
  will-change: transform, opacity;
}

@keyframes anime-shine {
  0% {
    left: -150%;
    top: -150%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 150%;
    top: 150%;
    opacity: 0;
  }
}

/* Estilos específicos para el estado hover del logo MB */
.mb-logo-hover-active {
  transform: scale(1.12) !important;
  box-shadow:
    0 0 40px rgba(90, 139, 159, 0.6),
    0 0 60px rgba(90, 139, 159, 0.4),
    0 0 80px rgba(90, 139, 159, 0.2),
    0 8px 32px rgba(90, 139, 159, 0.3) !important;
  border-color: #5a8b9f !important;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* Clase específica para desvanecer partículas top durante hover */
.top-particles-fade {
  opacity: 0 !important;
  transition: opacity 0.4s ease-out;
}

.mb-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.mb-letter {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -2px;
}

.m-letter {
  background: linear-gradient(135deg, var(--mbn-steel-500) 0%, #4A7A8E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* REPLACED: filter:drop-shadow keyframe → opacity keyframe (compositor-only) */
  animation: letter-glow 2s ease-in-out infinite;
  will-change: opacity;
}

.b-letter {
  background: linear-gradient(135deg, var(--mbn-sage-400) 0%, #7BA7BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: letter-glow 2s ease-in-out infinite 0.3s;
  will-change: opacity;
}

/* REPLACED filter:drop-shadow() animation with opacity — compositor path */
@keyframes letter-glow {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.75;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .tech-stack-display {
    bottom: 1.5rem;
    gap: 0.75rem;
  }

  .tech-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .hero-section-new {
    min-height: auto;
    /* Add top padding to account for the fixed 64px header */
    padding: calc(64px + 2rem) 1rem 3rem;
  }

  .mb-logo-box {
    width: 100px;
    height: 100px;
  }

  .mb-letter {
    font-size: 40px;
  }

  .hero-text-content {
    margin-top: 1rem;
  }

  .hero-animation-container {
    height: 320px;
    margin: 0.5rem 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  /* Clamp title/subtitle sizes for narrow screens */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    padding: 0 0.5rem;
  }
}


@media (max-width: 480px) {
  .hero-animation-container {
    height: 300px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-logo-container {
    margin-top: 2rem;
  }

  .mb-logo-box {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    border-width: 2px;
  }

  .mb-letter {
    font-size: 36px;
  }
}

/* Animaciones adicionales */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Efecto de brillo en hover de botones */
.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s;
}

.hero-btn-primary {
  position: relative;
  overflow: hidden;
}

.hero-btn-primary:hover::before {
  left: 100%;
}
/*!***********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/NewsBanner.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************/
/* News Banner - Fullscreen Overlay */

.news-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bannerFadeIn 0.4s ease;
}

@keyframes bannerFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.news-banner-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 55, 72, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.news-banner-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: bannerSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bannerSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.news-banner-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #2D3748;
    font-size: 1.75rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-banner-close:hover {
    background: #EF4444;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Arrow Buttons */
.news-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #5A8B9F;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.news-banner-arrow-left {
    left: -28px;
}

.news-banner-arrow-right {
    right: -28px;
}

.news-banner-arrow:hover {
    background: #5A8B9F;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.news-banner-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* News Content */
.news-banner-content {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 85vh;
    overflow: hidden;
}

.news-banner-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #F9FAFB;
    flex-shrink: 0;
}

.news-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-banner-content:hover .news-banner-image img {
    transform: scale(1.05);
}

.news-banner-info {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-banner-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.news-banner-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.news-banner-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.news-banner-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #9CA3AF;
}

.news-banner-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #5A8B9F;
    transition: all 0.2s;
}

.news-banner-content:hover .news-banner-cta {
    color: #4A7B8F;
    transform: translateX(4px);
}

/* Dots Indicator */
.news-banner-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.news-banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.news-banner-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.news-banner-dot.active {
    background: white;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .news-banner-container {
        width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }

    .news-banner-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .news-banner-arrow {
        width: 48px;
        height: 48px;
        font-size: 2.5rem;
    }

    .news-banner-arrow-left {
        left: 0.5rem;
    }

    .news-banner-arrow-right {
        right: 0.5rem;
    }

    .news-banner-image {
        height: 250px;
    }

    .news-banner-info {
        padding: 1.5rem;
    }

    .news-banner-title {
        font-size: 1.5rem;
    }

    .news-banner-description {
        font-size: 1rem;
    }

    .news-banner-dots {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .news-banner-image {
        height: 200px;
    }

    .news-banner-info {
        padding: 1.25rem;
    }

    .news-banner-title {
        font-size: 1.25rem;
    }

    .news-banner-description {
        font-size: 0.95rem;
    }

    .news-banner-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
