body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
  padding: 2rem;
  max-width: 820px;
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: "InterDisplay", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 2rem;
}

.portrait {
  max-width: 160px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.bio {
  margin-bottom: 3rem;
}

.callouts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.callout {
  padding: 1rem;
  background: #fff;
  transition: box-shadow 0.2s;
}

a {
  color: #3d3f3d;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #1a281b;
}

/* Header layout */
.responsive-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.responsive-header .header-text {
  flex: 1 1 300px;
}

.responsive-header .portrait {
  flex: 0 0 auto;
  max-width: 160px;
  border-radius: 50%;
}

@media (max-width: 600px) {
  .responsive-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .responsive-header .header-text {
    order: 2;
  }

  .responsive-header .portrait {
    order: 1;
  }
}

/* Callouts grid */
.callouts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.archive-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f5f5f5;
  padding: 1rem;
  transition: transform 0.2s ease;
  /* border-radius: 8px; */
}

.archive-item:hover {
  transform: translateY(-4px);
}

.archive-item img {
  max-width: 100%;
  height: auto;
  /* border-radius: 4px; */
  margin-bottom: 0.75rem;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.archive-item p {
  margin: 0;
  font-weight: 500;
  font-size: 0.95rem;
}
