/* ── Post cards (archive, query loop) ──────────────────────────────────────── */
.tih-post-card {
  background: var(--tih-surface);
  border: 1px solid var(--tih-border);
  border-radius: var(--tih-radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.tih-post-card:hover {
  box-shadow: var(--tih-shadow-md);
  transform: translateY(-2px);
}

.tih-post-card .wp-block-post-title a {
  color: var(--tih-text);
  text-decoration: none;
}

.tih-post-card .wp-block-post-title a:hover {
  color: var(--tih-primary);
}

/* ── Provider header on single-provider template ────────────────────────────── */
.tih-provider-header {
  gap: 24px;
  margin-bottom: 40px;
  align-items: center;
}

.tih-provider-single__logo {
  border: 1px solid var(--tih-border);
  border-radius: var(--tih-radius-md);
  padding: 8px;
  background: var(--tih-surface);
}

/* ── Comparison section wrapper ─────────────────────────────────────────────── */
.tih-comparison-section {
  scroll-margin-top: calc(var(--tih-header-h) + 24px);
}

/* ── Provider strip ─────────────────────────────────────────────────────────── */
.tih-provider-strip {
  text-align: center;
}

/* ── Top picks section header ───────────────────────────────────────────────── */
.tih-top-picks-section .tih-eyebrow {
  margin-bottom: 4px;
}

/* ── Editorial content area ─────────────────────────────────────────────────── */
.tih-editorial {
  max-width: var(--tih-max-wide);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
}

.tih-editorial h2 {
  margin-top: 2.5rem;
}

.tih-editorial h3 {
  margin-top: 2rem;
}

/* ── Single post meta ───────────────────────────────────────────────────────── */
.tih-single-meta {
  gap: 16px;
  flex-wrap: wrap;
}

.tih-single-meta .wp-block-post-author-name::after {
  content: "·";
  margin-left: 16px;
  color: var(--tih-border);
}

/* ── Author bio box ─────────────────────────────────────────────────────────── */
.tih-author-bio {
  background: var(--tih-surface);
  border: 1px solid var(--tih-border);
  border-radius: var(--tih-radius-md);
  padding: 24px;
}

/* ── Page hero band ─────────────────────────────────────────────────────────── */
.tih-page-hero {
  padding-block: 48px;
  background: var(--tih-surface-alt);
}

.tih-page-hero h1 {
  margin: 0;
}

/* ── Archive hero ───────────────────────────────────────────────────────────── */
.tih-archive-hero {
  padding-block: 48px;
  background: var(--tih-surface-alt);
}

/* ── is-style-tih-card (registered block style) ────────────────────────────── */
.wp-block-group.is-style-tih-card {
  background: var(--tih-surface);
  border: 1px solid var(--tih-border);
  border-radius: var(--tih-radius-md);
  box-shadow: var(--tih-shadow-sm);
  padding: 24px;
}

/* ── Separator: tih-light style ─────────────────────────────────────────────── */
.wp-block-separator.is-style-tih-light {
  border: none;
  height: 1px;
  background: var(--tih-border);
  margin-block: 32px;
}
