.archive-hero {
  padding-top: var(--space-8);
}

.archive-hero__title {
  font-size: var(--step-h1);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  max-width: 34rem;
}

.archive-hero__intro {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--step-lead);
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.6;
  max-width: 36rem;
}

.archive-list {
  max-width: 52rem;
  margin: 0 auto;
}

.archive-entry {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--ink-08);
  color: inherit;
}

.archive-list > .archive-entry:first-child {
  padding-top: 0;
}

.archive-entry--reverse {
  flex-direction: row-reverse;
}

.archive-entry__cover {
  position: relative;
  flex: 0 0 clamp(12rem, 28vw, 19rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 1.5rem 3rem -1.75rem rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease-editorial), box-shadow 0.5s var(--ease-editorial);
}

.archive-entry--reverse .archive-entry__cover {
  transform: rotate(2deg);
}

.archive-entry__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.archive-entry__cover--sage { background: radial-gradient(140% 130% at 20% 15%, rgba(255,255,255,.12), transparent 55%), linear-gradient(155deg, var(--sage) 0%, var(--sage-dark) 100%); }
.archive-entry__cover--plum { background: radial-gradient(140% 130% at 80% 10%, rgba(255,255,255,.12), transparent 55%), linear-gradient(155deg, var(--plum) 0%, var(--plum-dark) 100%); }
.archive-entry__cover--ink { background: radial-gradient(140% 130% at 50% 0%, rgba(255,255,255,.08), transparent 55%), linear-gradient(155deg, #262626 0%, #0a0a0a 100%); }

.archive-entry__cover-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 6.5rem;
  color: rgba(255, 255, 255, 0.16);
}

.archive-entry:hover .archive-entry__cover {
  transform: rotate(0deg) translateY(-0.4rem);
  box-shadow: 0 2.25rem 4rem -1.75rem rgba(0, 0, 0, 0.5);
}

.archive-entry__info {
  flex: 1;
  min-width: 0;
}

.archive-entry__month {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--plum);
  margin-bottom: 0.6rem;
}

.archive-entry__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-h3);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.archive-entry__author {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--step-small);
  color: var(--ink-50);
  margin-bottom: var(--space-4);
}

.archive-entry__excerpt {
  display: block;
  font-size: var(--step-body);
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  max-width: 32rem;
  margin-bottom: var(--space-4);
}

.archive-entry__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--step-caption);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 0.1rem;
  transition: border-color var(--dur-fast) var(--ease-editorial);
}

.archive-entry__link i {
  font-style: normal;
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-editorial);
}

.archive-entry:hover .archive-entry__link {
  border-color: var(--ink);
}

.archive-entry:hover .archive-entry__link i {
  transform: translateX(0.25rem);
}

@media (max-width: 42rem) {
  .archive-entry,
  .archive-entry--reverse {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-5);
  }
  .archive-entry__cover {
    flex-basis: auto;
    width: 9rem;
  }
}
