/* 
==========================================================================
Panicker Family Foundation - Design System & Component Library
Based on tapovanchinmaya.org design standard
========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Color Palette */
  --color-primary-dark: #4A2040;
  /* Charcoal / Deep Plum */
  --color-gold: #C8923A;
  /* Deep Gold */
  --color-bg-alt: #F8F2E8;
  /* Warm Ivory */
  --color-accent: #B5603A;
  /* Terracotta */
  --color-secondary: #2E7744;
  /* Forest Green (TCF) */
  --color-bg: #FFFFFF;
  /* Muted White */
  --color-text: #333333;
  /* Body Text */
  --color-text-muted: #777777;
  /* Muted Text */

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;

  /* Spacing & Layout */
  --max-content-width: 1200px;
  --section-padding: 80px 0;
  --container-padding-desktop: 64px;
  --container-padding-mobile: 24px;
  --grid-gap: 32px;
  --grid-gap-large: 48px;

  /* Radii */
  --border-radius-card: 12px;
  --border-radius-btn: 4px;

  /* Transitions */
  --transition-smooth: all 0.3s ease-in-out;
}

/* 
--------------------------------------------------------------------------
Base Styles
-------------------------------------------------------------------------- 
*/

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: var(--color-primary-dark);
}

h3 {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
}

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

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

/* Typography Helpers */
.italic-emphasis {
  font-style: italic;
  font-weight: 400;
  /* Usually italic looks better in Garamond non-bold */
}

/* 
--------------------------------------------------------------------------
Layout & Containers
-------------------------------------------------------------------------- 
*/

.container {
  width: 100%;
  max-width: calc(var(--max-content-width) + (var(--container-padding-desktop) * 2));
  margin: 0 auto;
  padding: 0 var(--container-padding-desktop);
}

section {
  padding: var(--section-padding);
}

.bg-alt {
  background-color: var(--color-bg-alt);
}

.bg-dark {
  background-color: var(--color-primary-dark);
  color: white;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark p {
  color: white;
}

/* 
--------------------------------------------------------------------------
Navigation (.site-header)
-------------------------------------------------------------------------- 
*/

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.site-header.scrolled {
  background: var(--color-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header.scrolled .logo,
.site-header.inner-page .logo {
  color: var(--color-primary-dark);
}

.logo-icon {
  color: var(--color-gold);
  font-size: 28px;
}

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

.nav-links a {
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.site-header.scrolled .nav-links a,
.site-header.inner-page .nav-links a {
  color: var(--color-primary-dark);
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--color-gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.site-header.scrolled .mobile-menu-btn,
.site-header.inner-page .mobile-menu-btn {
  color: var(--color-primary-dark);
}

/* 
--------------------------------------------------------------------------
Buttons (.btn)
-------------------------------------------------------------------------- 
*/

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--border-radius-btn);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-gold);
  color: white;
}

.btn-primary:hover {
  background-color: #b38234;
  color: white;
}

.btn-dark {
  background-color: var(--color-primary-dark);
  color: white;
}

.btn-dark:hover {
  background-color: #381830;
  color: white;
}

.btn-outline {
  background-color: transparent;
  border-color: white;
  color: white;
}

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

/* 
--------------------------------------------------------------------------
Hero Components (.hero)
-------------------------------------------------------------------------- 
*/

.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 32, 64, 0.55);
  /* Charcoal overlay at 55% */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  color: white;
  font-size: clamp(56px, 6vw, 72px);
  margin-bottom: 10px;
}

.hero .hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Inner Page Header (.page-header) */
.page-header {
  padding: 180px 0 100px;
  background-color: var(--color-bg-alt);
  text-align: center;
}

.breadcrumb {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  display: block;
}

.page-header h1 {
  margin-bottom: 20px;
}

.page-header .intro {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* 
--------------------------------------------------------------------------
Section Components
-------------------------------------------------------------------------- 
*/

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
}

.section-title {
  /* H2 styles apply */
}

.section-intro {
  font-size: 18px;
  color: var(--color-text-muted);
}

/* Quote Band (.quote-band) */
.quote-band {
  background-color: var(--color-bg-alt);
  border-left: 8px solid var(--color-gold);
  padding: 60px var(--container-padding-desktop);
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.quote-band blockquote {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 auto 30px;
  max-width: 900px;
  color: var(--color-primary-dark);
}

.quote-band cite {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA Band (.cta-band) */
.cta-band {
  background-color: var(--color-primary-dark);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta-band h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* 
--------------------------------------------------------------------------
Layout Components
-------------------------------------------------------------------------- 
*/

/* Split Layout (.split) */
.split {
  display: flex;
  align-items: center;
  gap: var(--grid-gap-large);
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image-container {
  flex: 1;
}

.split-image {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-card);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap-large);
}

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

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

/* ================================================================
   Dual Model — Full-Bleed Image Cards with Bottom Gradient
   These overrides MUST cancel out all base .card / .card-img / 
   .card-body flex-column layout so the image fills the entire card.
   ================================================================ */
.dual-model {
  gap: 28px;
}

/* Reset base .card flex layout → use block positioning instead */
.dual-model .card {
  display: block !important;
  flex-direction: unset !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  height: 380px !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0;
  border: none !important;
  box-shadow: 0 20px 60px rgba(74, 32, 64, 0.18);
  cursor: pointer;
}

/* Cancel base .card:hover translateY so both cards stay equal */
.dual-model .card:hover {
  transform: none !important;
}

/* Image fills 100% of the card — override base height: 240px */
.dual-model .card-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center center !important;
  transition: transform 0.6s ease;
  z-index: 0;
  transform: scale(1.06);
}

/* Bottom-only gradient overlay for text readability */
.dual-model .card::after {
  content: '';
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto !important;
  height: 50%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.50) 50%,
      transparent 100%) !important;
  z-index: 1;
  pointer-events: none;
}

/* Image zoom on hover */
.dual-model .card:hover .card-img {
  transform: scale(1.09);
}

/* Text block at bottom — override base .card-body flex-grow layout */
.dual-model .card-body {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  padding: 28px 30px !important;
  z-index: 2;
  color: white;
  background: none !important;
  flex-grow: unset !important;
  display: block !important;
  flex-direction: unset !important;
}

/* Gold accent bar above text */
.dual-model .card-body::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: var(--color-gold);
  border-radius: 2px;
  margin-bottom: 12px;
}

.dual-model .card-body h3 {
  color: white !important;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.dual-model .card-body p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: clamp(14px, 3vw, 17px);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Pillar (Icon + H3 + P) */
.pillar {
  text-align: center;
  padding: 20px;
}

.pillar-icon {
  font-family: sans-serif;
  font-size: 40px;
  color: var(--color-gold);
  margin-bottom: 20px;
}

/* Standard Card */
.card {
  background: white;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-img {
  height: 340px;
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.card-body h3 {
  margin-bottom: 15px;
}

.card-body p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-date {
  font-size: 13px;
  color: #999;
  margin-top: auto;
}

/* Featured Grantee Card */
.featured-grantee {
  background: white;
  border-left: 6px solid var(--color-secondary);
  border-radius: var(--border-radius-card);
  padding: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.grantee-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.grantee-stat-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* Person Card */
.person-card {
  text-align: center;
  padding: 30px 20px;
}

.person-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: var(--font-heading);
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
}

.person-card h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 5px;
}

.person-role {
  color: var(--color-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.person-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Stats Strip (.stats-grid) */
.stats-strip {
  background-color: var(--color-primary-dark);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Info Box */
.info-box {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: var(--border-radius-card);
  padding: 30px;
  margin-bottom: 20px;
}

.info-box h3 {
  font-family: var(--font-body);
  font-size: 18px;
  margin-bottom: 10px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* Step Flow */
.step-flow {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.step-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  bottom: 0;
  width: 2px;
  background: #eaeaea;
}

.step-item {
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 10px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 58, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.site-footer {
  background-color: var(--color-primary-dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

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

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

/* 
--------------------------------------------------------------------------
Contact Page Styles
-------------------------------------------------------------------------- 
*/

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
}

.contact-details-wrapper {
  padding: 40px;
}

.contact-note {
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}

.contact-note p {
  font-size: 15px;
  font-style: italic;
  color: var(--color-text-muted);
}

.btn-block {
  display: block;
  width: 100%;
  margin-top: 10px;
}

/* 
--------------------------------------------------------------------------
Responsive Design
-------------------------------------------------------------------------- 
*/

@media (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(48px, 6vw, 64px);
  }

  .site-header {
    padding: 15px 0;
  }
}

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

  .split {
    display: block;
  }

  .split>div {
    margin-bottom: 20px;
  }

  .split.reverse {
    flex-direction: column-reverse;
  }

  .split-image {
    height: 550px;
    width: 100%;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .container {
    padding: 0 var(--container-padding-mobile);
  }

  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 1001;
    transition: color 0.3s ease;
  }

  .mobile-menu-btn.active {
    color: var(--color-primary-dark) !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 40px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--color-primary-dark);
    font-size: 20px;
    font-weight: 600;
    border: none;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a.active {
    color: var(--color-gold) !important;
    border-bottom-color: var(--color-gold);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Specific Components Adjustments */
  .hero p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .featured-grantee {
    padding: 40px 25px;
  }

  .grantee-stats {
    flex-direction: column;
    gap: 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .contact-details-wrapper {
    padding: 20px 0;
  }

  /* Fix for section headers with flex-between layouts */
  .section-header[style*="display: flex"] {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }

  .page-header {
    padding: 140px 0 80px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 40px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 48px);
  }

  .quote-band {
    padding: 40px var(--container-padding-mobile);
    border-left-width: 4px;
  }

  .quote-band blockquote {
    font-size: clamp(24px, 6vw, 28px);
  }

  .split-image {
    height: 350px;
  }

  .logo {
    font-size: 18px;
  }

  .logo-icon-svg {
    width: 28px;
    height: 28px;
  }

  .dual-model .card {
    height: 300px;
  }
}

.logo-icon-svg {
  width: 36px;
  height: 36px;
  color: var(--color-gold);
  display: inline-block;
  flex-shrink: 0;
}