/* ==========================================================================
   pages/about.css — About page (template-aligned)
   Fixes requested:
   1) Hero image NOT cropped on widescreen (always contain)
   2) More space between paragraphs
   3) Team leader cards include images + containers
   Overlay removed
   ========================================================================== */



.about-lede{
  margin: 0;
  max-width: 72ch;
  color: rgba(232,237,245,.90);
  line-height: 1.7;
}

/* BODY LAYOUT */
.about-body{
  padding-top: 18px;
  padding-bottom: 62px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
}

/* Prose rhythm 
.about-prose{
  max-width: auto;
}
*/
.about-body h2{
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: .01em;
}

.about-prose p{
  margin: 0 0 18px;                 /* <-- more space between paragraphs */
  color: rgba(232,237,245,.90);
  line-height: 1.72;
}

.about-prose p:last-child{
  margin-bottom: 0;
}

/* TEAM */
.about-team h2{
  margin-bottom: 14px;
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* Card */
.team-card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17,21,27,.72);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Top row: avatar + name/role */
.team-top{
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 16px 16px 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.team-avatar{
  width: 86px;
  height: 86px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
}

.team-avatar img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* headshot crop is okay */
  object-position: center;
  filter: contrast(1.02) brightness(.98);
}

.team-head{
  padding: 0;                 /* now controlled by .team-top */
  border-bottom: none;
  min-width: 0;
}

.team-name{
  font-size: 16px;
  font-weight: 750;
  letter-spacing: .01em;
  color: rgba(232,237,245,.98);
}

.team-role{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(170,180,195,.92);
}

.team-body{
  padding: 14px 16px 10px;
}

.team-body p{
  margin: 0;
  color: rgba(232,237,245,.88);
  line-height: 1.62;
}

.team-actions{
  padding: 12px 16px 16px;
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.team-note{
  color: rgba(170,180,195,.72);
  font-size: 13px;
}

/* CONTACT */
.about-contact{
  padding-top: 6px;
  padding-bottom: 80px;
}

.about-contact h2{
  margin-bottom: 10px;
}

.contact-lede{
  margin: 0 0 18px;
  max-width: 72ch;
  color: rgba(232,237,245,.88);
  line-height: 1.65;
}

.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17,21,27,.72);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  padding: 16px;
  min-width: 0;
}

.contact-title{
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: .01em;
}

.contact-text{
  margin: 0 0 14px;
  color: rgba(232,237,245,.84);
  line-height: 1.55;
  max-width: 60ch;
}

.contact-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-note{
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(170,180,195,.92);
  width: fit-content;
  max-width: 100%;
}

.contact-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(215,188,161,.85);
  box-shadow: 0 0 14px rgba(215,188,161,.25);
}

/* About hero now uses hub hero container/media from components/hero.css
   These rules only style the About text elements. */

.about .about-kicker{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(215,188,161,.95);
  margin-bottom: 8px;
}

.about .about-title{
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: .01em;
}

.about .about-lede{
  margin: 10px 0 0;
  max-width: 70ch;
  color: rgba(170,180,195,.92);
  line-height: 1.55;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .about-hero-media{
    aspect-ratio: 16 / 7;
    min-height: 320px;
  }
}

@media (max-width: 900px){
  .team-grid{
    grid-template-columns: 1fr;
  }

  .contact-grid{
    grid-template-columns: 1fr;
  }

  .contact-note{
    border-radius: var(--radius);
    width: 100%;
  }
}

@media (max-width: 640px){
  .about-hero-media{
    aspect-ratio: 16 / 9;
    min-height: 220px;
    max-height: none;
  }

  .team-top{
    grid-template-columns: 72px 1fr;
  }

  .team-avatar{
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }
}
