/* Editorial team — About + profile pages */
.team-about { max-width: 1080px; }
.team-intro {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0 0 2rem;
}
.team-section-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.team-section-deck {
  color: var(--ink-3);
  margin: 0 0 1.5rem;
  max-width: 48ch;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0 0 2.5rem;
}
.team-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--bg-elevated);
  border-radius: calc(var(--r) + 2px);
  box-shadow: 0 0 0 1px var(--line);
  color: inherit;
  text-decoration: none;
  transition: box-shadow .15s ease, transform .15s ease;
}
.team-card:hover {
  box-shadow: 0 0 0 1px var(--forest), 0 8px 24px rgba(13,63,48,.08);
  transform: translateY(-1px);
}
.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  background: #d9d4c8;
}
.team-card-body h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.team-card-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 0.5rem;
}
.team-card-bio {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0 0 0.65rem;
}
.team-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.team-about-foot {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.team-about-foot h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}
.team-about-foot p {
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.55;
}

/* Profile */
.team-profile { padding-bottom: 3rem; }
.team-profile .label a { color: var(--ink-3); text-decoration: none; }
.team-profile .label a:hover { color: var(--forest); }
.team-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin: 0 0 1.75rem;
}
.team-profile-photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--r) + 4px);
  display: block;
  background: #d9d4c8;
  box-shadow: 0 0 0 1px var(--line);
}
.team-profile-meta h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  line-height: 1.15;
}
.team-role {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 1.25rem;
}
.team-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.team-facts li {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
}
.team-facts span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.15rem;
}
.team-bio {
  max-width: 68ch;
  margin: 0 0 2.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.team-contact {
  max-width: 560px;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-radius: calc(var(--r) + 4px);
  box-shadow: 0 0 0 1px var(--line);
}
.team-contact h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0 0 0.4rem;
}
.team-contact-lead {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 1.15rem;
}
.team-flash {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 1rem;
}
.team-flash-ok { background: rgba(13,63,48,.08); color: var(--forest); }
.team-flash-err { background: rgba(180,35,24,.08); color: var(--danger, #b42318); }
.team-contact-form .field { margin-bottom: 0.9rem; }
.team-contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.team-contact-form input,
.team-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  background: #fff;
}
.team-contact-form input:focus,
.team-contact-form textarea:focus {
  outline: 2px solid rgba(13,63,48,.25);
  border-color: var(--forest);
}
.team-back {
  margin: 2rem 0 0;
  font-size: 14px;
  font-weight: 600;
}
.team-back a { color: var(--forest); }

@media (max-width: 800px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 100px minmax(0, 1fr); }
  .team-card img { width: 100px; height: 100px; }
  .team-profile-grid { grid-template-columns: 1fr; }
  .team-profile-photo { max-width: 220px; }
}


/* Article byline → journalist */
.article-author { font-weight: 600; }
.article-author-link {
  color: var(--forest) !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 63, 48, 0.25);
}
.article-author-link:hover {
  color: var(--accent, var(--forest)) !important;
  border-bottom-color: currentColor;
}


/* Footer collaboration CTA */
.foot-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin: 1.75rem 0 1.25rem;
  padding: 1.25rem 1.35rem;
  background: rgba(13, 63, 48, 0.08);
  border: 1px solid rgba(13, 63, 48, 0.12);
  border-radius: calc(var(--r, 12px) + 2px);
}
.foot-cta-copy h4 {
  margin: 0 0 0.25rem;
  font-family: var(--display, inherit);
  font-size: 1.1rem;
  color: var(--forest, #0d3f30);
}
.foot-cta-copy p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2, #4a5248);
  max-width: 42ch;
  line-height: 1.45;
}
.foot-cta-btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 560px) {
  .foot-cta { flex-direction: column; align-items: stretch; }
  .foot-cta-btn { text-align: center; }
}


.team-index { padding-bottom: 3rem; }
.team-index .page-head { margin-bottom: 1.5rem; }
.team-index .page-head .label a { color: var(--ink-3); text-decoration: none; }
.team-index .page-head .label a:hover { color: var(--forest); }
.team-index .deck { color: var(--ink-2); line-height: 1.5; margin: 0.5rem 0 0; }
