@import url("./editorial-pages.css");

.hero {
  margin-top: var(--page-top-space);
}

.astro-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.astro-list li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-soft) 94%, transparent);
  color: var(--ink-soft);
  line-height: 1.6;
}

.astro-actions {
  margin-top: 1.1rem;
}

.team-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.05rem;
  align-items: stretch;
}

.team-photo {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.team-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .team-showcase {
    grid-template-columns: 1fr;
  }

  .team-photo img {
    min-height: 320px;
  }
}
