.article-hero {
  background: #1f0810;
  color: white;
  padding: clamp(5rem, 9vw, 9rem) 5vw;
}
.article-hero .eyebrow,
.news-hero .eyebrow {
  color: var(--soft-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}
.article-hero h1,
.news-hero h1 {
  font: 500 clamp(3rem, 7vw, 6.8rem)/1 var(--serif);
  letter-spacing: -0.035em;
  margin: 0.7rem 0 1.5rem;
  max-width: 1100px;
}
.article-hero .deck {
  font-size: 1.1rem;
  color: #d0c3c6;
  max-width: 750px;
}
.article-header-visual {
  margin: 0;
  width: 100%;
  background: var(--black);
  overflow: hidden;
}
.article-header-visual img {
  width: 100%;
  height: clamp(340px, 58vw, 760px);
  object-fit: cover;
}
.article {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 1.5rem;
}
.article .meta {
  display: flex;
  gap: 1.5rem;
  color: #8a8177;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.2rem;
}
.article .lede {
  font: 500 1.55rem/1.5 var(--serif);
  color: #3c3731;
}
.article-visual {
  margin: 3rem 0;
}
.article-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.article-visual + h2 {
  margin-top: 4.5rem;
}
.article h2 {
  font: 500 clamp(2rem, 4vw, 3rem)/1.1 var(--serif);
  margin: 3.5rem 0 1rem;
}
.article h3 {
  font: 500 1.4rem var(--serif);
  margin-top: 2.2rem;
}
.article p,
.article li {
  font-size: 1.02rem;
  color: #48433d;
}
.article ul,
.article ol {
  padding-left: 1.2rem;
}
.article .note {
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 1.4rem;
  margin: 2rem 0;
}
.article-nav {
  max-width: 900px;
  margin: 0 auto 5rem;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.article-nav a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}
.news-hero {
  background: var(--black);
  color: white;
  padding: clamp(5rem, 9vw, 9rem) 5vw;
}
.news-hero p:last-child {
  max-width: 700px;
  color: #c4bdb4;
}
.category-bar {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  padding: 1.2rem 5vw;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 88px;
  background: rgba(251, 250, 247, 0.96);
  z-index: 10;
}
.category-bar a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.64rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
}
.news-section {
  padding: 5rem 5vw;
}
.news-section-head {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.news-section-head h2 {
  font: 500 clamp(2.3rem, 5vw, 4.8rem)/1 var(--serif);
  margin: 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.news-card {
  min-height: 330px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition:
    background 0.2s,
    color 0.2s;
}
.news-card:hover {
  background: var(--black);
  color: white;
}
.news-card small {
  letter-spacing: 0.13em;
  font-size: 0.62rem;
  color: #8c6727;
  margin-top: 1.4rem;
}
.news-card h3 {
  font: 500 1.65rem/1.2 var(--serif);
  margin: 0.7rem 0;
}
.news-card p {
  font-size: 0.84rem;
  color: var(--muted);
}
.news-card:hover p {
  color: #c2bbb1;
}
.news-card b {
  margin-top: auto;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #9b722c;
}
.news-note {
  background: #2a0912;
  color: white;
  padding: 4rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
}
.news-note h2 {
  font: 500 3rem/1.05 var(--serif);
  margin: 0;
}
.news-note p {
  color: #d1c0c5;
}
@media (max-width: 850px) {
  .category-bar {
    top: 74px;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-section-head,
  .news-note {
    grid-template-columns: 1fr;
  }
  .article-hero {
    padding-top: 5rem;
  }
}
@media (max-width: 560px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .article .meta {
    flex-direction: column;
    gap: 0.3rem;
  }
}
