/* ==========================================================================
   Youth Business Russia - Official Stylesheet
   Centered Header, Active Hero Slider, Gray About Card, Prism & Movement Layout
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;600;700;800&family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --color-teal: #009B91;
  --color-teal-hover: #007A72;
  --color-coral: #FA4E50;
  --color-coral-dark: #E03816;
  --color-yellow: #F5D222;
  --color-yellow-dark: #FFC824;
  --color-dark: #2A2A2A;
  --color-text-body: #4A4A4A;
  --color-gray-about: #EFEFEF;
  --color-footer-bg: #EAEAEA;
  --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', 'Open Sans', sans-serif;
  --max-width: 1200px;
  --site-width: 1040px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==========================================================================
   HEADER & NAVIGATION (LOGO ON LEFT, CENTERED HORIZONTAL NAVIGATION)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: -28px;
  margin-bottom: -28px;
}

.header-brand .brand-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 820px;
  margin: 0 auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.active > .nav-link {
  color: var(--color-coral);
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  color: inherit;
}

.dropdown-icon {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.nav-item:hover .dropdown-icon,
.nav-item.dropdown-open .dropdown-icon {
  transform: rotate(180deg);
  color: var(--color-coral);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #FFFFFF;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 1001;
  text-align: center;
}

.nav-item:hover .dropdown-menu,
.nav-item.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark);
  transition: var(--transition-smooth);
}

.dropdown-menu li a:hover {
  color: var(--color-coral);
  background-color: #F8F9FA;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   ACTIVE HERO BANNER SLIDER
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #FFFFFF;
  padding: 1.5rem 0 0 0;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-slider-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  background: linear-gradient(135deg, #009B91 0%, #004D40 100%);
  min-height: 440px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.9);
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  padding: 3.5rem 4rem;
  max-width: 680px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.btn-primary-yellow {
  display: inline-block;
  background-color: var(--color-yellow-dark);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

.btn-primary-yellow:hover {
  background-color: #E5B200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.hero-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slide-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slide-dot.active, .slide-dot:hover {
  background-color: var(--color-coral);
  transform: scale(1.25);
  border-color: #FFFFFF;
}

.hero-social-bar {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Font Awesome Social Circle Buttons */
.social-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #000000;
  color: #FFFFFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.15rem;
  transition: var(--transition-smooth);
}

.social-circle-btn:hover {
  transform: translateY(-3px);
  background-color: var(--color-teal);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 3-Color Strip Divider */
.strip-divider {
  width: 100%;
  height: 10px;
  margin: 1.5rem 0 2.5rem 0;
  background: linear-gradient(to right, #FA4E50 0%, #FA4E50 35%, #F5D222 35%, #F5D222 65%, #009B91 65%, #009B91 100%);
  border-radius: 2px;
}

/* ==========================================================================
   ABOUT SECTION WITH LIGHT GRAY CARD (Screenshot 1)
   ========================================================================== */
.about-section {
  padding: 2rem 0 3rem 0;
  background-color: #FFFFFF;
}

.section-container {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-box-gray {
  background-color: var(--color-gray-about);
  padding: 3.5rem 4rem;
  border-radius: 4px;
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

/* 3 Underline Bars */
.title-underline-bars {
  display: flex;
  gap: 4px;
  width: 150px;
  height: 8px;
  margin-top: 4px;
}

.title-underline-bars .bar-coral {
  flex: 1;
  background-color: #FA4E50;
}

.title-underline-bars .bar-yellow {
  flex: 1;
  background-color: #F5D222;
}

.title-underline-bars .bar-teal {
  flex: 1;
  background-color: #009B91;
}

.about-intro-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333333;
  margin-bottom: 1.5rem;
}

.about-intro-text strong {
  color: #000000;
}

/* ==========================================================================
   NEWSLETTER & MOVEMENT SECTION (Screenshot 2 & 3 Matching)
   ========================================================================== */
.movement-newsletter-section {
  padding: 3rem 0 4rem 0;
  background-color: #FFFFFF;
}

.movement-newsletter-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
}

.movement-branding-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}

.prism-img {
  height: 410px;
  max-height: 420px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* MENARIK TEKS PAKSA KE KIRI */
.movement-branding-wrapper > div,
.movement-branding-wrapper .text-container {
  margin-left: -80px !important; /* Ubah angka ini (misal -100px) jika kurang ke kiri */
  position: relative;
  z-index: 2;                   /* Memastikan teks berada di atas layer gambar */
}

.movement-title {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
}

.txt-yellow {
  color: #E5A800;
}

.txt-teal {
  color: var(--color-teal);
}

.txt-coral {
  color: #FA4E50;
}

.subscribe-box {
  background: #FFFFFF;
  padding: 1rem 0;
}

.subscribe-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.8rem;
}

.subscribe-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: #000000;
}

.required-indicator {
  font-size: 0.8rem;
  color: #D32F2F;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #333333;
}

.form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #CCCCCC;
  border-radius: 3px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 155, 145, 0.15);
}

.btn-subscribe-pill {
  background-color: #9E9E9E;
  color: #FFFFFF;
  padding: 0.65rem 2.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 20px;
  align-self: flex-start;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
}

.btn-subscribe-pill:hover {
  background-color: var(--color-teal);
}

.newsletter-past-wrapper {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-newsletter-past {
  display: inline-block;
  padding: 0.75rem 2.8rem;
  border: 1.5px solid #000000;
  border-radius: 25px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #000000;
  text-align: center;
  transition: var(--transition-smooth);
}

.btn-newsletter-past:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================================================
   FEATURED SECTION: SUMMIT PAGE BUTTON, FAN TO RIGHT, 2 SUB-IMAGES (SS 1 & 2)
   ========================================================================== */
.featured-section {
  padding: 3rem 0;
  background-color: #FFFFFF;
}

.featured-top-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.featured-summit-box {
  display: flex;
  flex-direction: column;
}

.featured-summit-headline {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--color-teal);
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.summit-btn-fan-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 0.5rem;
}

.btn-summit-page {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: 2px;
  transition: var(--transition-smooth);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

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

.summit-fan-img {
  max-width: 250px;
  height: auto;
  display: block;
  margin-left: auto;
}

.featured-top-banner {
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.featured-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2 Sub-images in Featured Section */
.featured-two-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.featured-img-card {
  height: 310px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
  transition: var(--transition-smooth);
}

.featured-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.featured-sub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2-Column Action Cards */
.two-col-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.action-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}

.action-badge {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.action-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.btn-pill-orange {
  display: inline-block;
  background-color: var(--color-coral);
  color: #FFFFFF;
  padding: 0.65rem 1.8rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.btn-pill-orange:hover {
  background-color: var(--color-coral-dark);
  transform: translateY(-2px);
}

.btn-pill-teal {
  display: inline-block;
  background-color: var(--color-teal);
  color: #FFFFFF;
  padding: 0.65rem 1.8rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.btn-pill-yellow {
  display: inline-block;
  background-color: var(--color-yellow-dark);
  color: #000000;
  padding: 0.65rem 1.8rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.btn-pill-yellow:hover {
  background-color: #E5B200;
  transform: translateY(-2px);
}

/* ==========================================================================
   PUBLICATIONS SECTION
   ========================================================================== */
.publications-section {
  padding: 2rem 0 4rem 0;
  background-color: #FFFFFF;
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pub-cover-wrapper {
  width: 100%;
  max-width: 220px;
  height: 310px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  transition: var(--transition-smooth);
}

.pub-card:hover .pub-cover-wrapper {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.pub-cover-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pub-badge {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.pub-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1.2rem;
  line-height: 1.4;
  min-height: 55px;
}

/* ==========================================================================
   CELEBRATE 5 YEARS SHOWCASE (CLEAN VIDEO THUMBNAIL)
   ========================================================================== */
.celebrate-section {
  padding: 3rem 0 4rem 0;
  background-color: #FFFFFF;
}

.celebrate-heading {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.celebrate-video-box {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  transition: var(--transition-smooth);
}

.celebrate-video-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.celebrate-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.5s ease;
}

.celebrate-video-box:hover .celebrate-video-bg {
  transform: scale(1.03);
}

.celebrate-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  text-align: center;
  padding: 2rem;
}

.celebrate-video-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
  max-width: 600px;
  line-height: 1.3;
}

.celebrate-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2.5px solid #FFFFFF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  padding-left: 4px;
}

.celebrate-play-btn:hover {
  background-color: var(--color-coral);
  border-color: var(--color-coral);
  transform: scale(1.12);
}

/* ==========================================================================
   BLOGS SECTION
   ========================================================================== */
.blogs-section {
  padding: 2.5rem 0 4rem 0;
  background-color: #FFFFFF;
}

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.blog-thumb-wrapper {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-thumb-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.blog-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #000000;
  line-height: 1.45;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  min-height: 48px;
  text-transform: uppercase;
}

.btn-read-coral {
  display: inline-block;
  background-color: var(--color-coral);
  color: #FFFFFF;
  padding: 0.65rem 2.8rem;
  border-radius: 25px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
}

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

.btn-read-teal {
  display: inline-block;
  background-color: var(--color-teal);
  color: #FFFFFF;
  padding: 0.65rem 2.8rem;
  border-radius: 25px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   SPOTLIGHT ON ENTREPRENEURS SECTION
   ========================================================================== */
.spotlight-section {
  padding: 3rem 0 5rem 0;
  background-color: #FFFFFF;
}

.spotlight-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.spotlight-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #EEEEEE;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.text-celebrate-orange {
  color: #FA4E50 !important;
}

.text-celebrate-cyan {
  color: #00D2C4 !important;
}

.spotlight-avatar-wrapper {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 4.5px solid var(--color-yellow);
  overflow: hidden;
  margin-bottom: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-card-title {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  min-height: 70px;
}

.spotlight-divider {
  width: 100%;
  height: 1px;
  background-color: #E2E8F0;
}

.spotlight-cta-wrapper {
  display: flex;
  justify-content: center;
}

.btn-spotlight-full {
  display: inline-block;
  padding: 0.85rem 3rem;
  border: 2px solid #2A2A2A;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #2A2A2A;
  transition: var(--transition-smooth);
}

.btn-spotlight-full:hover {
  background-color: #2A2A2A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER COMPONENT
   ========================================================================== */
.site-footer {
  background-color: var(--color-footer-bg);
  padding: 1.2rem 0 0.8rem 0;
  border-top: 1px solid #DEDEDE;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  display: flex;
  align-items: center;
  margin-top: -38px;
  margin-bottom: -38px;
}

.footer-logo {
  height: 200px;
  max-width: 480px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.footer-right {
  display: flex;
  gap: 5rem;
}

.follow-title, .contact-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 0.75rem;
}

.social-bar {
  display: flex;
  gap: 0.75rem;
}

.contact-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #000000;
  text-decoration: underline;
  cursor: default;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 1.2rem auto 0 auto;
  padding: 0.8rem 2rem 0 2rem;
  border-top: 1px solid #D5D5D5;
  text-align: center;
}

.copyright-text {
  font-size: 0.85rem;
  color: #666666;
}

/* ==========================================================================
   SUBPAGES INTERNAL CONTENT STYLING
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #009B91 0%, #006D66 100%);
  color: #FFFFFF;
  padding: 4rem 2rem;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.page-content-wrapper {
  max-width: var(--site-width);
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.subpage-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.subpage-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--color-teal);
  transition: var(--transition-smooth);
}

.subpage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.subpage-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.subpage-card p {
  color: var(--color-text-body);
  line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
  .header-container {
    padding: 0.75rem 1.5rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    padding-left: 1.5rem;
    display: none;
    text-align: left;
  }
  
  .nav-item.dropdown-open .dropdown-menu {
    display: block;
  }
  
  .movement-newsletter-grid,
  .featured-top-grid,
  .featured-two-images-grid,
  .two-col-action-grid,
  .blogs-grid,
  .spotlight-grid,
  .publications-grid,
  .milestone-stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .movement-branding-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-box-gray {
    padding: 2rem 1.5rem;
  }

  .summit-btn-fan-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .summit-fan-img {
    margin-left: 0;
  }

  .footer-right {
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero-slide-content {
    padding: 2rem 1.5rem;
  }
  
  .hero-title {
    font-size: 1.7rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .movement-title {
    font-size: 1.8rem;
  }

  .featured-summit-headline {
    font-size: 1.8rem;
  }
  
  .celebrate-heading {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   ABOUT DROPDOWN 5 SUBPAGES COMPREHENSIVE STYLES
   ========================================================================== */

/* 1. Universal Subpage Hero & Badge Banner */
.subpage-hero-wrapper {
  position: relative;
  width: 100%;
  max-width: var(--site-width);
  margin: 2rem auto 0 auto;
  padding: 0 1rem;
}

.subpage-hero-image-box {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.subpage-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.subpage-hero-image-box:hover .subpage-hero-img {
  transform: scale(1.02);
}

.subpage-hero-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--color-coral);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  z-index: 2;
  box-shadow: -4px -4px 15px rgba(0,0,0,0.15);
}

.subpage-intro-block {
  max-width: var(--site-width);
  margin: 2.5rem auto 3.5rem auto;
  padding: 0 1.5rem;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  line-height: 1.8;
  color: #333333;
  text-align: left;
}

.subpage-intro-block strong {
  color: #000000;
}

/* 2. Movement Title in 3 Colors */
.movement-heading-block {
  max-width: var(--site-width);
  margin: 3rem auto 1.5rem auto;
  padding: 0 1.5rem;
}

.movement-heading-colored {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.jtm-part1 { color: #F5D222; }
.jtm-part2 { color: #009B91; }
.jtm-part3 { color: #FA4E50; }

.movement-lead-text {
  font-size: 1.15rem;
  color: #4A4A4A;
  line-height: 1.8;
  max-width: 960px;
}

/* 3. Two-Pager Download Card */
.two-pager-wrapper {
  max-width: var(--site-width);
  margin: 3.5rem auto;
  padding: 0 1.5rem;
}

.two-pager-card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 360px 1fr;
  overflow: hidden;
}

.two-pager-img-side {
  background: #F4F6F8;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-pager-preview-img {
  max-height: 260px;
  width: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 4px;
}

.two-pager-info-side {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-pager-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.two-pager-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.two-pager-desc {
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-download-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-coral);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(250, 78, 80, 0.35);
  transition: var(--transition-smooth);
}

.btn-download-pill:hover {
  background-color: var(--color-coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(250, 78, 80, 0.45);
}

/* 4. Full-Width Impact Report Showcase Blocks */
.report-section-full {
  width: 100%;
  padding: 5rem 1.5rem;
}

.report-section-yellow {
  background-color: #FFC836;
  color: #000000;
}

.report-section-white {
  background-color: #FFFFFF;
  color: var(--color-dark);
}

.report-section-gray {
  background-color: #F3F3F3;
  color: var(--color-dark);
}

.report-container-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}

.report-container-inner.reverse-layout {
  grid-template-columns: 340px 1fr;
}

.report-text-col h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.report-text-col p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.report-cover-img {
  max-height: 380px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.btn-report-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--color-coral);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-report-action:hover {
  background-color: var(--color-coral-dark);
  transform: translateY(-2px);
}

.btn-report-dark {
  background-color: #222222;
  color: #FFFFFF;
}

.btn-report-dark:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

/* 5. Split Columns: Orange Left (Empowering Youth) & Teal Right (Stats) */
.split-orange-teal-wrapper {
  max-width: var(--site-width);
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.split-orange-teal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.split-orange-col {
  background-color: var(--color-coral);
  color: #FFFFFF;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.split-orange-col h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.split-orange-col p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.split-orange-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.split-teal-col {
  background-color: var(--color-teal);
  color: #FFFFFF;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
}

.split-stat-item {
  display: flex;
  flex-direction: column;
}

.split-stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.split-stat-label {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.9;
  text-transform: uppercase;
}

/* 6. Split Coral & White (Positioning Young People) */
.split-coral-photo-wrapper {
  max-width: var(--site-width);
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.split-coral-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.split-side-photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.split-coral-card {
  background-color: var(--color-coral);
  color: #FFFFFF;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-coral-card h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.split-coral-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* 7. Split Yellow (Our Approach to Youth Empowerment) */
.split-yellow-approach-wrapper {
  max-width: var(--site-width);
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.split-yellow-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.split-yellow-card {
  background-color: #FFC836;
  color: #000000;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-yellow-card h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.approach-level-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.approach-level-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.approach-level-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.approach-level-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.approach-level-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #222222;
}

/* ==========================================================================
   YOUTH SKILLS SUBPAGE SPECIFIC STYLES
   ========================================================================== */

.video-showcase-container {
  max-width: var(--site-width);
  margin: 3.5rem auto;
  padding: 0 1.5rem;
}

.responsive-video-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: #000000;
}

.responsive-video-box iframe,
.responsive-video-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid #EAEAEA;
  margin-bottom: 2rem;
}

.video-meta-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-dark);
}

.featured-blogs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.featured-blog-card {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.featured-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.featured-blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.featured-blog-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category-tag {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.featured-blog-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.featured-blog-excerpt {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-read-more-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-read-more-link:hover {
  color: var(--color-teal-hover);
  text-decoration: underline;
}

/* Video Showcase Carousel / Thumbnails */
.video-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-thumb-card {
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #EBEBEB;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.video-thumb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.video-thumb-img-wrapper {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background-color: rgba(250, 78, 80, 0.9);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.video-thumb-card:hover .video-play-overlay-icon {
  background-color: var(--color-coral);
  transform: translate(-50%, -50%) scale(1.15);
}

.video-thumb-title {
  padding: 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
}

/* 6-Grid Stories in Words */
.skills-stories-word-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.skills-word-card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

.skills-word-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-teal);
  box-shadow: 0 8px 24px rgba(0, 155, 145, 0.15);
}

.skills-word-tag {
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.skills-word-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.skills-word-excerpt {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.skills-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #F0F0F0;
  font-size: 0.8rem;
  color: #888888;
}

.skills-meta-stats {
  display: flex;
  gap: 0.75rem;
}

.skills-meta-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Pagination Bar */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 3.5rem 0 2rem 0;
}

.page-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F2F2F2;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.page-nav-btn:hover,
.page-nav-btn.active {
  background-color: var(--color-coral);
  color: #FFFFFF;
}

/* ==========================================================================
   PARTNERS SUBPAGE SPECIFIC STYLES
   ========================================================================== */

.partners-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid #EAEAEA;
}

.partners-action-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-dark);
  text-transform: uppercase;
}

.partners-filter-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #666666;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.partner-logo-card {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 140px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-teal);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
}

.partner-logo-img {
  max-height: 60px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(10%);
  transition: var(--transition-smooth);
}

.partner-logo-card:hover .partner-logo-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-name-caption {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #777777;
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.2;
}

.alliance-register-box {
  background: linear-gradient(135deg, #009B91 0%, #007A72 100%);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 3.5rem 3rem;
  text-align: center;
  margin: 4.5rem auto 2rem auto;
  box-shadow: 0 10px 30px rgba(0, 155, 145, 0.25);
}

.alliance-register-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.alliance-register-desc {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  opacity: 0.95;
  line-height: 1.7;
}

/* ==========================================================================
   COUNTRIES & REGIONS SUBPAGE SPECIFIC STYLES
   ========================================================================== */

.region-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #EAEAEA;
}

.region-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-pill-btn {
  background-color: #F0F2F5;
  color: var(--color-dark);
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
  background-color: var(--color-coral);
  color: #FFFFFF;
}

.region-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.region-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  border: 1px solid #EBEBEB;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.region-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.region-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.region-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.region-card:hover .region-card-img {
  transform: scale(1.06);
}

.region-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.region-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.region-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.region-card-desc {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.region-stats-row {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #F0F0F0;
  font-size: 0.85rem;
  color: #777777;
}

.region-stats-row strong {
  color: var(--color-teal);
}

/* ==========================================================================
   SPOTLIGHT ON ENTREPRENEURS SUBPAGE SPECIFIC STYLES
   ========================================================================== */

.spotlight-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #EAEAEA;
}

.spotlight-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.spotlight-tab-btn {
  background-color: #F2F4F7;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.spotlight-tab-btn:hover,
.spotlight-tab-btn.active {
  background-color: var(--color-coral);
  color: #FFFFFF;
}

.spotlight-dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.spotlight-card {
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #EAEAEA;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: var(--color-yellow-dark);
}

.spotlight-img-box {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-img {
  transform: scale(1.05);
}

.spotlight-journey-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-yellow-dark);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.spotlight-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.spotlight-founder-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.spotlight-startup-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 0.85rem;
}

.spotlight-desc {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-spotlight-story {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-coral);
  transition: var(--transition-smooth);
}

.btn-spotlight-story:hover {
  color: var(--color-coral-dark);
  transform: translateX(4px);
}

/* Spotlight Bottom Banner CTA */
.spotlight-submit-banner {
  background: #FFF8E6;
  border: 2px solid var(--color-yellow-dark);
  border-radius: 8px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  margin: 4.5rem auto 2rem auto;
}

.spotlight-submit-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.spotlight-submit-desc {
  font-size: 1.05rem;
  color: #444444;
  max-width: 680px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
}

/* Modal Popup */
.site-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.site-modal-backdrop.open {
  display: flex;
}

.site-modal-box {
  background: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: modalFadeIn 0.3s ease;
}

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

.site-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: #777777;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.site-modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

/* Subpages Responsive Overrides */
@media (max-width: 992px) {
  .subpage-hero-image-box {
    height: 320px;
  }
  
  .subpage-hero-badge {
    font-size: 1.1rem;
    padding: 0.75rem 1.75rem;
  }

  .two-pager-card {
    grid-template-columns: 1fr;
  }

  .report-container-inner,
  .report-container-inner.reverse-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .report-cover-img {
    max-height: 300px;
  }

  .split-orange-teal-grid,
  .split-coral-photo-grid,
  .split-yellow-approach-grid {
    grid-template-columns: 1fr;
  }

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

  .region-card-grid,
  .spotlight-dir-grid,
  .skills-stories-word-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .subpage-hero-image-box {
    height: 240px;
  }
  
  .subpage-hero-badge {
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
  }

  .movement-heading-colored {
    font-size: 2.2rem;
  }

  .split-orange-col,
  .split-teal-col,
  .split-coral-card,
  .split-yellow-card {
    padding: 2.25rem 1.5rem;
  }

  .split-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .region-card-grid,
  .spotlight-dir-grid,
  .skills-stories-word-grid,
  .featured-blogs-grid,
  .video-stories-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BOTTOM COMMUNITY STORY CTA SECTION (MATCHING SCREENSHOT WITH 3D YELLOW BUTTON)
   ========================================================================== */
.community-story-cta-section {
  width: 100%;
  max-width: var(--site-width);
  margin: 4.5rem auto 3.5rem auto;
  padding: 0 1.5rem;
}

.community-story-cta-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.community-story-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--color-dark);
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

.btn-3d-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #E8BA23;
  color: #1A1A1A;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.9rem 1.85rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 5px 5px 0px #3A3520;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.btn-3d-yellow:hover {
  background-color: #F5C62C;
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px #3A3520;
  color: #000000;
}

.btn-3d-yellow:active {
  transform: translate(5px, 5px);
  box-shadow: 0px 0px 0px #3A3520;
}

.btn-3d-yellow i {
  font-size: 1rem;
}

/* Image-Based Video Showcase */
.video-image-showcase-box {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  background-color: #111111;
}

.video-image-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.video-image-showcase-box:hover .video-image-showcase-img {
  transform: scale(1.03);
  filter: brightness(0.9);
}

.video-image-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background-color: var(--color-coral);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(250, 78, 80, 0.5);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-image-showcase-box:hover .video-image-play-btn {
  background-color: var(--color-coral-dark);
  transform: translate(-50%, -50%) scale(1.15);
}

/* ==========================================================================
   OUR STORIES THEMATIC & BLOG STYLES
   ========================================================================== */
.stories-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #EFEFEF;
}

.stories-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.story-pill-btn {
  padding: 0.55rem 1.15rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid #E0E0E0;
  background-color: #FFFFFF;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.story-pill-btn:hover,
.story-pill-btn.active {
  background-color: var(--color-coral);
  color: #FFFFFF;
  border-color: var(--color-coral);
}

.stories-search-box {
  display: flex;
  align-items: center;
  background: #F4F6F8;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  border: 1px solid #E5E7EB;
  min-width: 260px;
}

.stories-search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  width: 100%;
  margin-left: 0.5rem;
}

.story-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.story-thematic-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-thematic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.story-card-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.story-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-thematic-card:hover .story-card-img {
  transform: scale(1.05);
}

.story-badge-floating {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-teal);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.story-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-card-meta {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-dark);
  margin-bottom: 0.85rem;
}

.story-card-excerpt {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.story-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-coral);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.story-card-readmore:hover {
  gap: 0.75rem;
  color: var(--color-coral-dark);
}

/* Thematic Quote Banner */
.story-quote-banner {
  background: linear-gradient(135deg, #1B365D 0%, #009B91 100%);
  color: #FFFFFF;
  padding: 3.5rem 2.5rem;
  border-radius: 8px;
  margin: 3.5rem auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-quote-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  max-width: 850px;
  margin: 0 auto 1.25rem auto;
}

.story-quote-author {
  font-size: 1rem;
  opacity: 0.85;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Thematic Highlight Block */
.thematic-split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem auto;
}

.thematic-split-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.thematic-split-info h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.thematic-split-info p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .story-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .thematic-split-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .story-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ENHANCED COMPONENTS & FIXES (PILLARS, ALLIANCE 5-COL, SPOTLIGHT MARGINS)
   ========================================================================== */

/* 1. About Us: 3-Tier Operational Approach Split Grid */
.split-yellow-pillars-wrapper {
  max-width: var(--site-width);
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.split-yellow-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 460px;
}

.split-yellow-card {
  background-color: #FFC836;
  color: #000000;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-yellow-card h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #000000;
}

.about-pillar-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.about-pillar-item .pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about-pillar-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #000000;
}

.about-pillar-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #222222;
  margin: 0;
}

@media (max-width: 900px) {
  .split-yellow-pillars-grid {
    grid-template-columns: 1fr;
  }
  .split-yellow-pillars-grid .split-side-photo {
    height: 280px;
    min-height: auto;
  }
  .split-yellow-card {
    padding: 2.5rem 1.5rem;
  }
}

/* 2. Alliance Partners: 5 Brands per Row Grid */
.alliance-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  margin: 3rem auto;
  max-width: var(--site-width);
}

.alliance-partner-cell {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 110px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alliance-partner-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.alliance-logo-img {
  max-width: 130px;
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.alliance-register-box {
  background: linear-gradient(135deg, #1B365D 0%, #009B91 100%);
  color: #FFFFFF;
  border-radius: 10px;
  padding: 3.5rem 3rem;
  text-align: center;
  margin: 4rem auto;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.alliance-register-box h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.alliance-register-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2rem auto;
  color: #E0E7FF;
}

.btn-register-alliance {
  background-color: var(--color-coral);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(250, 78, 80, 0.4);
}

.btn-register-alliance:hover {
  background-color: var(--color-coral-dark);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .alliance-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .alliance-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .alliance-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3. Spotlight Filter Bar & Button Spacing */
.spotlight-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin: 2.5rem 0 3rem 0;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #ECECEC;
}

.spotlight-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.spotlight-tab-btn {
  background: #F0F2F5;
  color: #4A4A4A;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.spotlight-tab-btn:hover {
  background: #E2E6EC;
  color: #1A1A1A;
}

.spotlight-tab-btn.active {
  background-color: var(--color-coral);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(250, 78, 80, 0.3);
}

.btn-spotlight-submit {
  margin: 0.5rem 0;
}

.spotlight-dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin-bottom: 4rem;
}

.spotlight-card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.spotlight-img-box {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.spotlight-card:hover .spotlight-img {
  transform: scale(1.04);
}

.spotlight-journey-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FFC836;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.spotlight-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.spotlight-founder-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}

.spotlight-startup-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 1rem;
  display: block;
}

.spotlight-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .spotlight-dir-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .spotlight-dir-grid {
    grid-template-columns: 1fr;
  }
}



