/* Features page: open editorial rows, not a wall of cards. Scoped under body.features-page. */

.features-page .feature-list {
  padding-bottom: 10px;
}
.features-page .feature-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  column-gap: 56px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}
.features-page .feature-row:first-child {
  border-top: 0;
  padding-top: 0;
}
.features-page .feature-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.features-page .feature-head svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}
.features-page .feature-head h2 {
  font-size: 26px;
  line-height: 1.3;
  max-width: 320px;
}
.features-page .feature-body p {
  color: var(--ink);
  font-size: 16px;
  max-width: 560px;
}
.features-page .feature-body .feature-mechanism {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}
.features-page .feature-mechanism a {
  color: inherit;
}
.features-page .feature-body .text-link {
  margin-top: 20px;
}

.features-page .teams-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.features-page .teams-heading svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}
.features-page .teams-heading h2 {
  max-width: 620px;
}
.features-page .teams-body {
  margin-top: 32px;
  margin-left: 48px;
  max-width: 700px;
}
.features-page .teams-body p {
  color: var(--muted);
  margin: 18px 0;
}
.features-page .teams-body .note {
  margin-top: 30px;
}
.features-page .teams-body > .text-link {
  margin-top: 24px;
}

@media (max-width: 1120px) {
  .features-page .feature-row {
    grid-template-columns: 260px 1fr;
    column-gap: 40px;
  }
}

@media (max-width: 900px) {
  .features-page .feature-row {
    grid-template-columns: 220px 1fr;
    column-gap: 28px;
  }
  .features-page .feature-head h2 {
    font-size: 23px;
  }
  .features-page .teams-body {
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .features-page .feature-row {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding: 32px 0;
  }
  .features-page .feature-head svg {
    margin-top: 2px;
  }
  .features-page .feature-body p {
    max-width: none;
  }
  .features-page .teams-heading svg {
    width: 26px;
    height: 26px;
  }
  .features-page .teams-body {
    margin-top: 24px;
  }
}

/* Photo mosaic: the offset duo between the intro and the feature list. features-commute and
   features-studio sit as two 4:5 tiles, held to 820px so they read as a pair rather than a band.
   Grid, gap, the 820px cap, the 32px drop on the second tile and the 700px collapse to two even
   tiles all come from the shared .frame-offset primitive (experience.css); this page only adds its
   own vertical rhythm around that shared shape. Each photoSlot carries variant:'offset', which
   supplies the rounded, contained, shadow-free .photo-frame-offset treatment. teams-table is not
   repeated here, it belongs to the Teams section's own bleed band further down. */
.features-page .features-mosaic {
  padding: 6px 0 66px;
}

@media (max-width: 900px) {
  .features-page .features-mosaic {
    padding-bottom: 54px;
  }
}

@media (max-width: 700px) {
  .features-page .features-mosaic {
    padding: 0 0 44px;
  }
}

/* Teams section hero: teams-table as a full-bleed band, breaking out of the page's .wrap the same
   way the how-it-works diptych and download bands do, so it reads as a systemic claim rather than
   a contained tile. variant:'bleed' on the photoSlot call keeps it a flat, unrounded rectangle;
   this page only supplies the positioning context for the pulled line and the section's own
   spacing. The photo's width is pinned explicitly because a real <picture> is a replaced element
   that otherwise sizes to its intrinsic dimensions in normal block flow instead of stretching to
   fill the band (the placeholder <div> has no such issue, so this only matters once the photo
   ships). .photo-pulled-line and .pulled-dot are shared components already styled in
   experience.css; this page supplies only the position:relative anchor. */
.features-page .teams-section {
  border-top: 1px solid var(--line);
  padding: 56px 0 92px;
}
.features-page .teams-hero-photo {
  position: relative;
  margin-bottom: 56px;
}
.features-page .teams-hero-photo .photo {
  width: 100%;
}

@media (max-width: 700px) {
  .features-page .teams-section {
    padding: 44px 0 65px;
  }
  .features-page .teams-hero-photo {
    margin-bottom: 32px;
  }
}
