/* ================================================================
   ProcessOne — Team page
   assets/p1/css/team.css
   ================================================================ */

/* Reuse home.css for shared components (hero, proof, ejabberd,
   entries, conviction-band, contact). This file only contains
   layout and styles unique to the team page.                      */

@import url("home.css");


/* ----------------------------------------------------------------
   Founder
   ---------------------------------------------------------------- */

.p1-founder {
  padding: 5rem 0;
}

.p1-founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .p1-founder__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.p1-founder__photo-wrap {
  position: sticky;
  top: 6rem;
}

@media (max-width: 860px) {
  .p1-founder__photo-wrap {
    position: static;
    max-width: 320px;
  }
}

.p1-founder__photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  filter: grayscale(15%);
}

.p1-founder__name {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0.25rem 0 1.75rem;
  color: var(--title-color);
}

.p1-founder__body {
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1.1rem;
}

.p1-founder__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.p1-founder__link {
  font-size: 0.875rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.p1-founder__link:hover {
  background: var(--accent);
  color: #fff;
}
