/* ── About Hero Slideshow ────────────────────────────────── */
#about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }
  
  .about-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .about-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }
  
  .about-slide.active {
    opacity: 1;
  }
  
  .about-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
  }
  
  .about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: var(--space-md);
  }
  
  .about-hero-content h1 {
    color: #fff;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }
  
  .about-hero-content .hero-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
  }
  
  /* ── About Content ───────────────────────────────────────── */
  .about-content-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-lg);
    align-items: start;
  }
  
  .about-content-text .eyebrow { margin-bottom: var(--space-xs); }
  .about-content-text h2       { margin-bottom: var(--space-sm); }
  .about-content-text p        { color: var(--color-text-light); }
  
  /* Stats row */
  .about-stats {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
  }
  
  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
  }
  
  .stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    margin-top: 0.3rem;
  }
  
  /* Feature cards sidebar */
  .about-content-aside {
    display: flex;
    flex-direction: column;
    gap: var(--space-md); /* Gap between the four cards — increase for more breathing room */
  }
  
  .about-feature-card {
    background-color: var(--color-bg-tint);
    border-radius: 10px;
    padding: var(--space-md) var(--space-md); /* Padding inside each card — increase for more internal breathing room */
    display: flex;
    align-items: flex-start;
    gap: var(--space-md); /* Space between the icon and the text */
    transition: box-shadow 0.2s;
  }
  
  .about-feature-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  
  .feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  
  .about-feature-card h4 {
    font-size: 0.95rem; /* Icon size — make it bigger for more visual weight */
    color: var(--color-primary);
    margin-bottom: 0.2rem;
  }
  
  .about-feature-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
  }
  
  /* ── Video ───────────────────────────────────────────────── */
  
  .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
  }
  
  /* ── Location ────────────────────────────────────────────── */
  .about-location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-lg);
    align-items: start;
  }
  
  .about-map iframe {
    border-radius: 10px;
    display: block;
    width: 100%;
  }
  
  .about-address h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
  }
  
  .address-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }
  
  .address-list li {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
  }
  
  .address-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  
  .address-list a {
    color: var(--color-primary);
    transition: color 0.2s;
  }
  
  .address-list a:hover {
    color: var(--color-secondary);
  }
  
  /* ── Shared utilities (mirror home.css) ──────────────────── */
  
  .section-heading.centered { text-align: center; }
  
  /* ── Responsive ──────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .about-content-grid   { grid-template-columns: 1fr; }
    .about-location-grid  { grid-template-columns: 1fr; }
  }
  
  @media (max-width: 768px) {
    #about-hero    { min-height: 50vh; }
    .about-stats   { flex-wrap: wrap; }
    .stat          { min-width: 120px; }
  }