/* ============================================
   ARTICLES PAGE-SPECIFIC
   ============================================ */

.timeline-filters {
  padding: clamp(40px, 5vw, 64px) 0 clamp(32px, 4vw, 48px);
  border-bottom: 0.5px solid var(--rule-strong);
}
.timeline-filters .filter-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.timeline-filters .filter-label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 8px;
}
.timeline-filters .filter {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.timeline-filters .filter:hover,
.timeline-filters .filter.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.timeline-filters .filter.active {
  background: var(--red);
  border-color: var(--red);
}

/* Featured (latest) */
.featured-article {
  padding: clamp(64px, 8vw, 100px) 0;
}
.featured-article .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.featured-article .plate {
  aspect-ratio: 4 / 5;
  background: #14100B;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.featured-article .plate::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(229, 210, 166, 0.18);
  pointer-events: none;
}
.featured-article .plate .plate-head {
  border-bottom: 1px solid rgba(229, 210, 166, 0.25);
  padding-bottom: 14px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.featured-article .plate .plate-head .label { color: var(--red-light); }
.featured-article .plate .plate-head .ref { color: var(--cream); }
.featured-article .plate .plate-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-article .plate .plate-art svg {
  width: 100%; height: 100%; max-height: 280px;
}
.featured-article .plate .plate-foot {
  border-top: 1px solid rgba(229, 210, 166, 0.25);
  padding-top: 14px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
}

.featured-article .content { display: flex; flex-direction: column; gap: 24px; }
.featured-article .kicker { align-self: flex-start; }
.featured-article h2 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.featured-article h2 em { font-style: italic; font-weight: 800; color: var(--red); }
.featured-article .excerpt {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
}
.featured-article .byline {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.featured-article .byline .author { color: var(--ink); font-weight: 700; }
.featured-article .byline .sep { color: var(--red); }

/* Timeline articles */
.timeline {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--paper-deep);
}
.timeline-period {
  margin-bottom: 64px;
}
.timeline-period:last-child { margin-bottom: 0; }
.timeline-period-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.timeline-period-head::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  border-top: 0.5px solid var(--ink);
}
.timeline-period-head .period {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  color: var(--red);
  text-transform: uppercase;
}
.timeline-period-head .label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.timeline-period-head .count {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.article-row {
  display: grid;
  grid-template-columns: 100px 1.5fr 2fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 0.5px solid var(--rule);
  transition: padding 0.25s, background 0.25s;
  cursor: pointer;
}
.article-row:hover {
  padding-left: 14px;
  padding-right: 14px;
  background: var(--paper-warm);
}
.article-row .when {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.3;
}
.article-row .when .day {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  display: block;
  margin-top: 2px;
}
.article-row .topic .cat {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.article-row .topic .title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.article-row .topic .title em { font-style: italic; color: var(--red); }
.article-row .author-block {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.article-row .author-block .author { color: var(--ink); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; }
.article-row .author-block .read { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
.article-row .chev {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  color: var(--ink-mute);
  font-size: 22px;
  transition: color 0.25s, transform 0.25s;
}
.article-row:hover .chev { color: var(--red); transform: translateX(6px); }

/* Load more */
.load-more {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

@media (max-width: 880px) {
  .featured-article .container { grid-template-columns: 1fr; }
  .article-row { grid-template-columns: 70px 1fr auto; gap: 16px; }
  .article-row .author-block { display: none; }
  .timeline-period-head { grid-template-columns: 1fr; }
  .timeline-period-head .count { text-align: left; }
}
