/* ============================================================
   Container — shared responsive layout constraint
   Provides 1024px max content width with responsive side padding.
   Import this in any component that uses the .container class.
   ============================================================ */

.container {
  position:   relative;
  width:      100%;
  max-width:  calc(1024px + 160px); /* 1024px content + 80px × 2 */
  padding:    0 80px;
  margin:     0 auto;
  box-sizing: border-box;
}

/* Tablet (≤991px): 60px sides */
@media (max-width: 991px) {
  .container {
    padding: 0 60px;
  }
}

/* Landscape mobile (≤767px): 2rem sides */
@media (max-width: 767px) {
  .container {
    padding: 0 2rem;
  }
}



/* ============================================================
   Wide container — 1360px content + 48px side padding
   Used for full-bleed section content blocks (slider, big cards)
   that need to be wider than the standard 1024px text container.
   ============================================================ */

.container-wide {
  width:      100%;
  max-width:  calc(1384px + 96px);   /* 1384px content + 48px × 2 */
  padding:    0 3rem;                /* 48px sides */
  margin:     0 auto;
  box-sizing: border-box;
}

/* Tablet (≤991px): 16px less than .container (60px → 44px) */
@media (max-width: 991px) {
  .container-wide {
    padding: 0 44px;
  }
}

/* Landscape mobile (≤767px): 16px less than .container (2rem → 1rem) */
@media (max-width: 767px) {
  .container-wide {
    padding: 0 1rem;
  }
}


/* ============================================================
   VrFeaturesSection — "Built to handle every kind of call"
   Figma node 6237:3314. Section-header (heading only) over a
   2-column grid of 14 icon-inline feature cards.
   ============================================================ */

.vr-features {
  background: var(--background);
}

/* Header + cards group; owns the 64px rhythm between them. */
.vr-features__content {
  display:        flex;
  flex-direction: column;
  gap:            4rem;   /* 64px */
}


/* ---- Cards grid ------------------------------------------- */

.vr-features__cards {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   var(--spacing-4);   /* 16px */
  width:                 100%;
}

/* Card = shared .card-secondary shell + layout. */
.vr-features__card {
  display:        flex;
  flex-direction: column;
  gap:            var(--spacing-4);   /* 16px — title row → body */
  padding:        1.75rem;            /* 28px — Figma p-28 */
  overflow:       hidden;
}

.vr-features__card-head {
  display:     flex;
  align-items: center;
  gap:         10px;                  /* Figma title gap-10 */
}

.vr-features__icon {
  display:     inline-flex;
  flex-shrink: 0;
  color:       var(--foreground);
}

.vr-features__card-title {
  margin:      0;
  font-size:   var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-base);
  color:       var(--foreground);
}

.vr-features__card-body {
  margin:      0;
  font-size:   var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-base);
  color:       var(--muted-foreground);
}


/* ============================================================
   Mobile (≤767px) — single column
   ============================================================ */

@media (max-width: 767px) {
  .vr-features__cards {
    grid-template-columns: 1fr;
  }
}

