.notification-banner {
  background-color: #259271;
  color: white;
  position: relative;
  z-index: 1000;
  padding-top: calc(11px + env(safe-area-inset-top));
  box-sizing: border-box;
  padding-bottom: 11px;
}

.notification-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.notification-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: opacity 0.3s ease;
  font-style: italic;
}

/* intro — Leo italic, softened white */
.notification-intro {
  font-family: "leo", serif;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

/* CTA — Leo medium italic, bright white; goes yellow (with the arrow) on hover */
.notification-cta {
  font-family: "leo", serif;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  transition: color 0.2s ease;
}

.notification-arrow {
  display: inline-block;
  width: 15px;
  height: 8px;
  margin-left: 0.45em;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notification-link:hover .notification-cta,
.notification-link:hover .notification-arrow {
  color: #6ce0b5;
}

@media (max-width: 768px) {
  .notification-banner {
    padding: 10px 0;
    min-height: 44px;
  }

  .notification-link {
    font-size: 14px;
  }

  .notification-arrow {
    margin: 0 5px;
  }
}

@media (max-width: 415px) {
  .notification-banner {
    min-height: 44px;
    padding: 8px 0;
  }
  
  .notification-content {
    white-space: normal;
    line-height: 1;
  }
  
  .mobile-nav {
    top: calc(50px + env(safe-area-inset-top));
  }
}
