/* Billboard-style editorial — light, clean, readable */

/* —— Post cards (news grid) —— */
.post-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.post-card:hover {
  transform: none;
  box-shadow: none;
}

.post-card-image-wrap {
  aspect-ratio: 3 / 2;
  border-radius: 2px;
  overflow: hidden;
  background: #eee;
}

.post-card-image-wrap .post-card-image {
  transition: opacity 0.2s ease;
}

.post-card:hover .post-card-image-wrap .post-card-image {
  transform: none;
  opacity: 0.92;
}

.post-card-body {
  padding: 0.85rem 0 0;
}

.post-card .post-meta {
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-category a {
  color: var(--color-text);
  font-weight: 700;
}

.post-category a:hover {
  color: var(--color-accent);
}

.post-card h2 {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.post-card-body > p {
  display: none;
}

.post-card-read {
  display: none;
}

.post-card--lead {
  grid-column: 1 / -1;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
}

.post-card--lead .post-card-body > p {
  display: block;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.post-card--lead h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-family: var(--font-serif);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .post-card--lead {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* —— Single article (Billboard editorial) —— */
.single-article {
  background: var(--color-surface);
  border: none;
  padding-bottom: 0;
}

.article-header {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 1.25rem;
  text-align: left;
}

.article-header h1 {
  max-width: none;
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.article-header .lead {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.article-header .post-meta {
  justify-content: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-byline {
  justify-content: flex-start;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.article-byline img {
  width: 2rem;
  height: 2rem;
}

.article-hero-image {
  max-width: var(--article-width);
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.article-hero-image img {
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  box-shadow: none;
}

/* Share — minimal top bar */
.article-share {
  max-width: var(--article-width);
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
  justify-content: flex-start;
  gap: 0.5rem;
}

.article-share span {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.share-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 2px;
  background: transparent;
}

/* Body copy — sans-serif, tight editorial rhythm */
.article-content {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
}

.article-content p {
  margin-bottom: 1.125rem;
}

.article-content h2 {
  font-family: var(--font-sans);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2.25rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.article-content h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
}

/* Lists — Billboard-style: simple lines, no boxes */
.article-content ol,
.article-content ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.article-content ol > li,
.article-content ul > li,
.article-content .wp-block-list li {
  padding: 0.65rem 0;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
  background: none;
  border-radius: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
}

.article-content ol > li::before,
.article-content ul > li::before {
  display: none;
}

.article-content ol {
  counter-reset: bb-list;
}

.article-content ol > li {
  counter-increment: bb-list;
  padding-left: 2rem;
  position: relative;
}

.article-content ol > li::before {
  display: block;
  content: counter(bb-list) ".";
  position: absolute;
  left: 0;
  top: 0.65rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

.article-content strong {
  font-weight: 700;
}

.article-content a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content .wp-block-separator {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0;
}

.article-content .wp-block-quote {
  border-left: 3px solid var(--color-text);
  padding: 0.25rem 0 0.25rem 1rem;
  margin: 1.5rem 0;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
}

/* Tags & nav — subtle */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.625rem;
  align-items: center;
  max-width: var(--article-width);
  margin-left: auto;
  margin-right: auto;
  justify-content: flex-start;
  padding: 1.25rem 1.5rem 0;
  border-top: 1px solid var(--color-border);
  margin-top: 2rem;
}

.article-tags > span:first-child {
  flex: 0 0 100%;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.tag-pill {
  display: inline-block;
  border-radius: 2px;
  background: transparent;
  font-size: 0.8125rem;
  text-transform: none;
  letter-spacing: normal;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--color-border);
  margin: 0;
}

.post-nav {
  max-width: var(--article-width);
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.post-nav a {
  display: block;
  padding: 1rem 0;
  border: none;
  border-top: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--color-text);
}

.post-nav a:hover .nav-post-title {
  color: var(--color-accent);
}

.post-nav .nav-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.post-nav .nav-post-title {
  display: block;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.post-nav .nav-next {
  text-align: right;
}

/* Meta — normal case like Billboard */
.single-article .post-meta,
.single-article .post-category,
.single-article .post-category a {
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.8125rem;
}

.single-article .post-category a {
  font-weight: 700;
  color: var(--color-accent);
}

.related-posts {
  border-top: 1px solid var(--color-border);
  margin-top: 0;
  padding-top: 2.5rem;
}

.related-posts h2 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.02em;
  text-align: left;
}

.related-posts .post-card h2 {
  text-transform: none;
  font-size: 1rem;
  line-height: 1.35;
}

.related-posts .post-meta,
.related-posts .post-category,
.related-posts .post-category a {
  text-transform: none;
  letter-spacing: normal;
}

.blog-intro {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.page-header h1 {
  font-family: var(--font-sans);
  font-weight: 800;
}
