/* Styles for the bio landing page. Intentionally independent of the rest of the site's CSS. */

:root {
  --bio-paper: #faf7f2;
  --bio-ink: #2b2620;
  --bio-ink-muted: #6b6257;
  --bio-accent: #7a5c3e;
  --bio-rule: #e4ddd2;
}

* {
  box-sizing: border-box;
}

html {
  background-color: var(--bio-paper);
}

body {
  margin: 0;
  color: var(--bio-ink);
  font-family: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.bio {
  max-width: 42rem;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
}

.bio-name {
  margin: 0 0 2.25rem;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
}

.bio-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.bio-photos:empty {
  display: none;
}

.bio-photos img {
  height: 13rem;
  max-width: 100%;
  object-fit: cover;
  border-radius: 4px;
  flex: 0 1 auto;
}

.bio-text p {
  margin: 0 0 1.4rem;
}

.bio-text ul {
  margin: 2.5rem 0 0;
  padding: 2rem 0 0;
  list-style: none;
  border-top: 1px solid var(--bio-rule);
  color: var(--bio-ink-muted);
  font-size: 1.02rem;
}

.bio-text li {
  margin-bottom: 0.5rem;
}

.bio-contact {
  margin: 0.5rem 0 0;
  color: var(--bio-ink-muted);
  font-size: 1.02rem;
}

.bio-text a,
.bio-contact a {
  color: var(--bio-accent);
  text-decoration: underline;
  text-decoration-color: var(--bio-rule);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease;
}

.bio-text a:hover,
.bio-contact a:hover {
  text-decoration-color: var(--bio-accent);
}

@media (max-width: 600px) {
  body {
    font-size: 1.05rem;
  }

  .bio {
    padding: 3rem 1.25rem 3.5rem;
  }

  .bio-name {
    font-size: 2.1rem;
    margin-bottom: 1.75rem;
  }

  .bio-photos img {
    height: 9rem;
  }
}
