/* ── Page header ── */
.page-header {
  padding: 6rem 2rem 3rem;
  border-bottom: 1px solid rgba(212,136,58,0.15);
  max-width: 1100px;
  margin: 0 auto;
}
.page-eyebrow {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.page-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(122,155,173,0.2);
}
.page-h1 {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text);
}
.page-h1 .gold { color: var(--gold); }

/* ── Post list ── */
.post-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

article.post-item {
  border-bottom: 1px solid rgba(212,136,58,0.1);
  padding: 2.5rem 2rem 2.5rem 0;
}
article.post-item:nth-child(odd) {
  border-right: 1px solid rgba(212,136,58,0.1);
  padding-right: 2.5rem;
}
article.post-item:nth-child(even) {
  padding-left: 2.5rem;
  padding-right: 0;
}
article.post-item:nth-last-child(-n+2) {
  border-bottom: none;
}

/* ── Post content ── */
.post-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.post-excerpt {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.1rem;
  max-width: 580px;
}
.post-read-link {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.3rem 0;
}
.post-read-link:hover { color: var(--gold); }

/* ── Footer spacing ── */
footer { margin-top: 2rem; }

/* ── Responsive (page-specific) ── */
@media (max-width: 700px) {
  .page-header { padding: 4rem 1.2rem 2rem; }
  .post-list {
    grid-template-columns: 1fr;
    padding: 0 1.2rem;
  }
  article.post-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(212,136,58,0.1) !important;
    padding: 2rem 0 !important;
  }
  article.post-item:last-child { border-bottom: none !important; }
}
