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

:root {
  --blue:    #1a5fa8;
  --blue-dk: #0e3d72;
  --red:     #d42b2b;
  --gold:    #c9a84c;
  --bg:      #ffffff;
  --gray:    #f5f6f8;
  --text:    #1e1e1e;
  --muted:   #6b7280;
  --nav-h:   72px;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f5f6f8; }
::-webkit-scrollbar-thumb { background: #1a5fa8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #0e3d72; }

html { scroll-behavior: smooth;
  scrollbar-color: #1a5fa8 #f5f6f8; 
  scrollbar-width: thin; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity .45s ease, visibility .45s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { position: relative; width: 72px; height: 72px; }
.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #1a5fa8;
  border-right-color: #c9a84c;
  animation: loader-spin 1s cubic-bezier(.6,.15,.4,.85) infinite;
}
.loader-ring--2 {
  inset: 10px;
  border-top-color: #c9a84c;
  border-right-color: #1a5fa8;
  animation-direction: reverse;
  animation-duration: .75s;
}
.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7280;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-dk);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-badge {
  width: 48px;
  height: 48px;
  background: var(--bg);
  
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .5px;
  line-height: 1.1;
  text-align: center;
}

.logo-img {
  width: 48px;
  height: 48px;
  background: #fff;
  
  border-radius: 6px;
  object-fit: contain;
  padding: 2px;
}

.hero-logo {
  width: clamp(120px, 30vw, 480px);
  height: clamp(120px, 18vw, 180px);
  background: #fff;
  border: 0.4em solid var(--gold);
  border-radius: 12px;
  object-fit: contain;
  padding: 0.4em;
  margin: 0 auto 1.5em;
}

.footer-logo {
  width: 56px;
  height: 56px;
  background: #fff;
  
  border-radius: 8px;
  object-fit: contain;
  padding: 3px;
  margin-bottom: 14px;
}

.nav-name {
  display: flex;
  flex-direction: column;
}

.nav-name span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}

.nav-name span:last-child {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

.hero {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 60%, #2980b9 100%);
  padding: 60px 5% 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.25);
  will-change: transform;
}
.hero::before {
  width: 500px; height: 500px;
  top: -200px; right: -100px;
  animation: hero-ring-float 7s ease-in-out infinite;
}
.hero::after {
  width: 360px; height: 360px;
  bottom: -160px; left: -60px;
  animation: hero-ring-pulse 6s ease-in-out infinite;
}

.hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.flower-corner {
  position: absolute;
  width: 300px;
  height: auto;
  pointer-events: none;
  opacity: 0.85;
}

.flower-corner-top {
  top: -20px;
  left: -20px;
}

.flower-corner-bottom {
  bottom: -20px;
  right: -20px;
  transform: rotate(180deg);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 5vw, 44px);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 10px;
}

.hero p.tagline {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero p.desc {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}

.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: all .22s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: #a8853a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  margin-left: 12px;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

@keyframes hero-ring-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

@keyframes hero-ring-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.stats {
  padding: 60px 5% 68px;
  background:
    radial-gradient(circle at top right, rgba(201,168,76,.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.stats-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.stats-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.stats h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--blue-dk);
  margin-bottom: 14px;
}

.stats-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 22px;
}

.stat-card {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(26,95,168,.12);
  box-shadow: 0 16px 40px rgba(14,61,114,.08);
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%);
}

.stat-value {
  display: block;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1;
  color: var(--blue-dk);
}

.stat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--blue-dk);
  margin-bottom: 10px;
}

.stat-card sup {
  font-size: 11px;
  color: var(--gold);
}

.stat-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.stats-source {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.stats-source a {
  color: var(--blue);
  font-weight: 600;
}

.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.ticker {
  display: inline-block;
  animation: ticker-scroll 28s linear infinite;
}

.ticker span {
  font-size: 13px;
  color: #fff;
  letter-spacing: .3px;
  padding-right: 80px;
}

.ticker span::before { content: '▶ '; opacity: .7; }

@keyframes ticker-scroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

.news {
  background: var(--gray);
  padding: 48px 5%;
  text-align: center;
}

.news-label {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.news h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3vw, 26px);
  color: var(--blue-dk);
  margin-bottom: 24px;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.35;
}

.news-carousel {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-btn {
  background: var(--blue);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--blue-dk);
}

.carousel-btn:disabled {
  background: var(--muted);
  cursor: not-allowed;
}

.carousel-container {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}

.news-card {
  flex: 0 0 280px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  text-align: center;
}

.image-counter {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  pointer-events: none;
}

.image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.card-image-container:hover .image-nav {
  opacity: 1;
}

.image-nav.prev {
  left: 10px;
}

.image-nav.next {
  right: 10px;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--blue-dk);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-date {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.card-description {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  max-height: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  z-index: 9999;
  animation: wa-fab-pulse 2s ease-in-out infinite;
}

.wa-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes wa-fab-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

.what {
  padding: 72px 5%;
  text-align: center;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.what h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--blue-dk);
  margin-bottom: 16px;
}

.what .intro {
  max-width: 600px;
  margin: 0 auto 56px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 32px 24px;
  text-align: left;
  transition: box-shadow .22s, transform .22s;
}

.pillar:hover {
  box-shadow: 0 10px 30px rgba(26,95,168,.12);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, #2980b9 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--blue-dk);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.vismis {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 100%);
  padding: 72px 5%;
  text-align: center;
}

.vismis-inner {
  max-width: 900px;
  margin: 0 auto;
}

.vismis .section-label { color: var(--gold); margin-bottom: 10px; }

.vismis h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  color: #fff;
  margin-bottom: 48px;
}

.vismis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vismis-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: left;
  transition: background .25s, transform .25s;
}

.vismis-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}

.vismis-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vismis-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}

.vismis-card p {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .vismis-grid { grid-template-columns: 1fr; }
}

.team {
  background: var(--white);
  padding: 64px 5%;
  text-align: center;
}

.team h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--blue-dk);
  margin-bottom: 10px;
}

.team .section-label { margin-bottom: 12px; }

.team-img-wrap {
  max-width: 820px;
  margin: 36px auto 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.team-img-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(160deg, #0e3d72 0%, #1a5fa8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  gap: 8px;
}

.founder{
  background: var(--gray);
  padding: 64px 5%;
  text-align: center;
}

.founder h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(35px, 3.5vw, 32px);
  color: var(--blue-dk);
  margin-bottom: 10px;
}

.founder h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5px, 3.5vw, 32px);
  color: var(--blue-dk);
  margin-bottom: 10px;
}

.founder p {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(223, 182, 49, 0.87);
  max-width: 280px;
}

.founders-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 80px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 450px;
}

.founder-img {
  width: 300px;
  height: 300px;
  border-radius: 50%; 
  object-fit: cover;
  margin-bottom: 20px;
}

.founder-name {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.founder-role {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0.9;
}

footer {
  background: var(--blue-dk);
  color: rgba(255,255,255,.75);
  padding: 52px 5% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-brand .logo-badge {
  margin-bottom: 14px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-col ul li svg { flex-shrink: 0; margin-top: 2px; }

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  cursor: pointer;
}

.social-btn:hover { background: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--blue-dk);
  padding: 20px 5%;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,.1);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.affiliates {
  padding: 72px 5% 64px;
  background: #fff;
  text-align: center;
}

.affiliates-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.affiliates h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-dk);
  margin-bottom: 42px;
}

.affiliates-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(50px, 0.5fr));
  align-items: center;
 
}

.affiliate-logo {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
}

.affiliate-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  border-radius: 14px;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.affiliate-logo a:hover,
.affiliate-logo a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(26,95,168,.12);
  background: rgba(26,95,168,.03);
}

.affiliate-logo a:focus-visible {
  outline: 2px solid rgba(26,95,168,.35);
  outline-offset: 3px;
}

.affiliate-logo img {
  zoom: 2.2;
  width: auto;
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

.affiliate-logo-ace img { max-height: 68px; }
.affiliate-logo-cape img { max-height: 56px; }
.affiliate-logo-aots img { max-height: 64px; }
.affiliate-logo-ilo img { max-height: 82px; }
.affiliate-logo-ioe img { max-height: 62px; }

.cta-membership {
  background:
    linear-gradient(rgba(14,61,114,.74), rgba(26,95,168,.72)),
    url('../Asset/cta_bg.png') center/cover no-repeat;
  padding: 80px 5%;
  text-align: center;
  color: #fff;
}

.cta-inner {
  max-width: 850px;
  margin: 0 auto;
}

.cta-membership h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.3;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .affiliates-logos {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 22px 18px;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-carousel {
    gap: 10px;
  }
  .news-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 640px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .affiliates {
    padding: 60px 5% 56px;
  }
  .affiliates h2 {
    margin-bottom: 28px;
  }
  .affiliates-logos {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 16px 12px;
  }
  .affiliate-logo {
    min-height: 92px;
  }
  .affiliate-logo img {
    max-height: 58px;
  }
  .stats { padding-top: 52px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
  .news-carousel {
    gap: 5px;
  }
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .news-card {
    flex: 0 0 250px;
  }
}

.press {
  background: var(--gray);
  padding: 48px 5%;
  text-align: center;
}

.press-label {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.press h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3vw, 26px);
  color: var(--blue-dk);
  margin-bottom: 24px;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.35;
}

.press-img-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}

