.archive-page,
.article-page {
  background: var(--paper);
  min-height: 100vh;
}

.archive-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.archive-hero-inner {
  align-items: center;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
}

.archive-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  margin: 0 0 10px;
}

.archive-hero p:last-child {
  color: var(--muted);
  margin: 0;
  max-width: 720px;
}

.team-logo-large {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  height: 96px;
  padding: 8px;
  width: 96px;
}

.team-chip {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 12px;
}

.team-chip img {
  border-radius: 6px;
  height: 26px;
  width: 26px;
}

.article-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 42px auto;
  max-width: 820px;
  padding: 34px;
}

.article-team {
  margin-bottom: 22px;
}

.article-shell h1 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 0;
}

.article-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 24px;
}

.article-image {
  border-radius: 8px;
  display: block;
  margin: 0 0 26px;
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}

.article-image-logo {
  background: linear-gradient(135deg, #fff, #f4efe6);
  border: 1px solid var(--line);
  max-height: 360px;
  object-fit: contain;
  padding: 44px;
}

.article-summary {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.58;
}

.article-summary a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 28px;
  padding: 20px;
}

.source-box p {
  color: var(--muted);
  margin: 0 0 14px;
}

.source-button.primary {
  background: var(--brand);
  color: #fff;
}

@media (max-width: 640px) {
  .archive-hero {
    padding: 28px 0;
  }

  .archive-hero-inner {
    grid-template-columns: 1fr;
  }

  .team-logo-large {
    height: 74px;
    width: 74px;
  }

  .article-shell {
    border-inline: 0;
    border-radius: 0;
    margin: 0;
    padding: 22px 16px 34px;
  }
}
