:root {
  --ink: #3f3a34;
  --muted: #77736c;
  --line: #4a433b;
  --soft-line: #d8d1c7;
  --paper: #f7f3ed;
  --card: #fffdf9;
  --accent: #e9e0d3;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "halyard-display", sans-serif;
	font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .72; }

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.banner {
  height: 18rem;
  background-position: center;
  background-size: cover;
}

.profile {
  max-width: 920px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 2.5rem;
}

.portrait img {
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

h1 {
  line-height: 1.12;
font-family: "lemonde-journal", serif;
font-weight: 600;
font-style: normal;
}

h2, h3 {
  line-height: 1.12;
font-family: "lemonde-journal", serif;
font-weight: 400;
font-style: normal;
}


h1 {
  margin: .25rem 0 .65rem;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.role-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.role-line p { margin: 0; color: var(--ink); }
.bio { max-width: 68ch; margin: 0 0 1.25rem; }
.social, .footer a {
  border-bottom: 1px solid currentColor;
  font-size: .95rem;
}

.section-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.section-heading h2 {
  display: inline-block;
  margin: 0;
  padding: 1rem 2rem;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--accent);
  font-size: 1.55rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.25rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: .93rem;
}

.filter {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.filter:hover,
.filter.is-active {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: .18em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 5%;
  align-items: start;
  margin-bottom: 4rem;
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
}

.thumb {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--accent);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.card:hover .thumb img { transform: scale(1.025); }
.card-body { padding: 1rem; }

.meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.3;
}

.meta strong {
  color: var(--ink);
  font-weight: 500;
}

.meta time { white-space: nowrap; }

.card h3 {
  margin: 1rem 0 .85rem;
  font-size: 1.35rem;
}

.card p {
  margin: 0 0 .5rem;
  color: #5f5a53;
  font-size: .9rem;
  line-height: 1.5;
}

.card[hidden] { display: none; }

.footer {
  padding: 0 0 3rem;
  text-align: center;
}

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 6%; }
  .profile { grid-template-columns: 150px 1fr; gap: 2rem; }
  .portrait img { width: 150px; }
}

@media (max-width: 620px) {
  .banner { height: 12rem; }
  .profile { display: block; text-align: center; padding-top: 2rem; }
  .portrait img { margin: 0 auto 1.5rem; }
  .role-line { display: block; }
  .grid { grid-template-columns: 1fr; }
  .section-heading h2 { padding-inline: 1.25rem; }
}

    .group-label {
      grid-column: 1 / -1;
      font-size: 0.78rem;
      font-weight: 300;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.55;
      margin: 0;
    }
    .group-label--divider {
      border-top: 1px solid currentColor;
      padding-top: 1.5rem;
      margin-top: 1rem;
      border-color: rgba(0, 0, 0, 0.15);
    }
    body.view-social .filters {
      display: none;
    }