/* Blog listing + post pages */
.blog-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.blog-card--link:hover {
  border-color: var(--brass);
  color: inherit;
}

.blog-card--link:hover .blog-card__title {
  color: var(--brass-dark);
}

.blog-card__date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: -0.35rem 0 0.65rem;
  letter-spacing: 0.04em;
}

.blog-card__more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  border-bottom: 1px solid rgba(184, 148, 90, 0.45);
  padding-bottom: 0.15rem;
}

.blog-card--link:hover .blog-card__more {
  color: var(--brass);
  border-color: var(--brass);
}

.blog-card__media {
  margin-bottom: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--stone);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.blog-card--link:hover .blog-card__media img {
  transform: scale(1.04);
}

/* Single post */
.post-hero {
  background: var(--ink);
  color: var(--white);
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
}

.post-hero .page-hero__breadcrumb,
.post-hero .page-hero__breadcrumb a {
  color: rgba(236, 232, 226, 0.55);
}

.post-hero .page-hero__breadcrumb a:hover { color: var(--brass-light); }

.post-hero__meta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin: 1.25rem 0 0.85rem;
}

.post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  max-width: 18ch;
}

.post-cover {
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}

.post-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.post-body {
  max-width: 760px;
  padding-bottom: 4rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-body h2,
.post-body h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 2rem 0 0.85rem;
  line-height: 1.25;
}

.post-body p { margin-bottom: 1.15rem; }

.post-body ul,
.post-body ol {
  margin: 0 0 1.25rem 1.25rem;
  list-style: disc;
}

.post-body li { margin-bottom: 0.4rem; }

.post-body img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

.post-body a { color: var(--brass-dark); text-decoration: underline; }

.post-back { margin-top: 3rem; }
