@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --color-primary: #1e40af;
  /* Blue 800 */
  --color-primary-light: #3b82f6;
  /* Blue 500 */
  --color-primary-dark: #1e3a8a;
  /* Blue 900 */

  --color-secondary: #facc15;
  /* Yellow 400 */
  --color-secondary-hover: #eab308;
  /* Yellow 500 */

  --color-accent: #10b981;
  /* Emerald 500 */

  --color-bg: #f8fafc;
  /* Slate 50 */
  --color-surface: #ffffff;

  --color-text-main: #0f172a;
  /* Slate 900 */
  --color-text-muted: #475569;
  /* Slate 600 */

  /* Typography */
  --font-main: 'Outfit', sans-serif;

  /* Shadows & Glass */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.5);
  --glass-blur: blur(16px);

  /* Radii */
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  scroll-margin-top: 80px;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--color-primary-dark);
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Navigation & Dropdowns */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  transition: all var(--transition-normal);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.nav-brand img {
  height: 90px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-main);
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links>.nav-item>a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width var(--transition-fast);
}

.nav-links>.nav-item>a:hover::after,
.nav-links>.nav-item>a.active::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-surface);
  min-width: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  padding: 0.5rem 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.dropdown-menu a:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

.dropdown-menu a::after {
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-main);
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--color-surface);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0.5rem 0;
  }

  .dropdown-menu {
    position: relative;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    padding-left: 1rem;
  }

  .nav-item.dropdown.active .dropdown-menu {
    display: block;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  outline: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white !important;
  box-shadow: 0 4px 14px 0 rgba(30, 64, 175, 0.39);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.23);
  color: white !important;
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-main) !important;
  box-shadow: 0 4px 14px 0 rgba(250, 204, 21, 0.39);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary) !important;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: white !important;
}

/* Video Hero Section */
.hero-video {
  position: relative;
  padding: 14rem 0 10rem 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh;
  /* 16/9 ratio */
  z-index: -2;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background-color: var(--color-primary-dark);
  /* Fallback */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  /* Dark slate overlay */
  z-index: -1;
}

.hero-video h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-video p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Quote Block */
.quote-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-xl);
  border: var(--glass-border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: var(--color-primary-light);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--color-primary-dark);
}

.quote-author {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Cards */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 64, 175, 0.1);
  color: var(--color-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.card:hover .card-icon {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Impact Banner */
.impact-banner {
  background: var(--color-primary-dark);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-banner h2 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0 1.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.fade-left {
  transform: translateX(-40px);
}

.reveal.fade-right {
  transform: translateX(40px);
}

.reveal.fade-left.active,
.reveal.fade-right.active {
  transform: translateX(0);
}

/* Stagger delays */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

/* Image Grid */
.img-rounded {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Impact Metrics */
.metric-box {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.metric-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.metric-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Infinite Marquee Slider */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-marquee 20s linear infinite;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partner-logo {
  min-width: 250px;
  width: 250px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all var(--transition-normal);
}

.partner-logo:hover img {
  transform: scale(1.1);
}

/* Bento Grid for Partners */
.partner-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-light);
  z-index: 2;
}

@keyframes float-logo {
  0% {
    transform: translateY(0px);
  }

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

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

.bento-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  animation: float-logo 5s ease-in-out infinite;
}

.bento-card:nth-child(2n) img {
  animation-delay: 1s;
}

.bento-card:nth-child(3n) img {
  animation-delay: 2s;
}

.bento-card:nth-child(5n) img {
  animation-delay: 3s;
}

.bento-card:hover img {
  transform: scale(1.1) !important;
  animation-play-state: paused;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.tall {
  grid-row: span 2;
}

.bento-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 3rem;
  border: none;
}

.bento-card.featured h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.2;
}

.bento-card.featured p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
}

.bento-card.featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(var(--color-primary), 0.3);
}

@media (max-width: 992px) {
  .partner-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .bento-card.featured,
  .bento-card.wide {
    grid-column: span 2;
  }

  .bento-card.tall {
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .partner-bento {
    grid-template-columns: 1fr;
  }

  .bento-card.featured,
  .bento-card.wide {
    grid-column: span 1;
  }

  .bento-card.featured h3 {
    font-size: 2rem;
  }
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8fafc;
  position: relative;
}

.bio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #1a202c;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  border-radius: inherit;
  transform: translateY(10px);
  overflow-y: auto;
}

.bio-overlay p {
  margin: auto 0;
}

.team-img-wrapper:hover .bio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.08);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 1.25rem;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-card {
  width: 450px;
  flex-shrink: 0;
  /* Ensuring the cards look like standard stakeholder quotes */
  display: flex;
}

.marquee-card .quote-block {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1rem));
  }

  /* -50% shifts by exactly the original content width if duplicated once, gap is 2rem, half is 1rem */
}

@media (max-width: 768px) {
  .marquee-card {
    width: 300px;
  }

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 50px;
  }
}

/* News Page Styling */
.news-search-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.news-search-bar {
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.5rem;
  width: 100%;
  max-width: 600px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.news-search-bar:focus-within {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.news-search-bar input {
  border: none;
  outline: none;
  background: transparent;
  padding: 0.75rem;
  font-size: 1.1rem;
  flex-grow: 1;
  font-family: var(--font-main);
  color: var(--color-text-main);
}

.news-search-bar i {
  color: var(--color-text-muted);
  font-size: 1.25rem;
}

.news-filter-tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.news-filter-tab {
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text-muted);
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.news-filter-tab:hover {
  background: var(--color-primary-light);
  color: white;
  border-color: var(--color-primary-light);
}

.news-filter-tab.active {
  background: var(--color-primary);
  color: white !important;
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
}

/* Modal/Lightbox Overlay */
.modal-overlay {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255, 255, 255, 0.1);
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content-img {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-secondary);
}

.modal-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-top: 1rem;
  text-align: center;
}