/* =============================================================
   VIKKI SKY — BLOG.CSS
   Blog archive, single post, inline CTAs, end-of-post products,
   reading progress, sidebar, related posts.
   Loaded only on blog/archive/single via functions.php.
   ============================================================= */

/* ── READING PROGRESS BAR ────────────────────────────────────── */

#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── BLOG ARCHIVE HEADER ─────────────────────────────────────── */

.blog-header {
  padding-top: calc(var(--nav-h) + var(--sp-2xl));
  padding-bottom: var(--sp-xl);
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.blog-header .section-title {
  margin-bottom: var(--sp-sm);
}

/* ── CATEGORY FILTER STRIP ───────────────────────────────────── */

.blog-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  padding-block: var(--sp-lg);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.blog-filter-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  border-color: var(--gold);
  color: var(--gold-dk);
  background: rgba(201, 169, 110, 0.06);
}

/* ── FEATURED HERO POST ──────────────────────────────────────── */

.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--sp-xl);
  transition: box-shadow 0.3s;
}

.blog-featured:hover {
  box-shadow: var(--shadow-lg);
}

.blog-featured-img {
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4/3;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.blog-featured:hover .blog-featured-img img {
  transform: scale(1.03);
}

.blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-2xl) var(--sp-xl);
  gap: var(--sp-md);
}

.blog-featured-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.blog-featured-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.blog-featured-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.blog-featured-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.blog-featured-title a {
  color: inherit;
  transition: color 0.2s;
}

.blog-featured-title a:hover {
  color: var(--gold-dk);
}

.blog-featured-excerpt {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 420px;
}

.blog-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dk);
  transition: gap 0.2s, color 0.2s;
  margin-top: var(--sp-sm);
}

.blog-featured-link:hover {
  gap: 10px;
  color: var(--gold);
}

.blog-featured-link svg {
  transition: transform 0.2s;
}

@media (max-width: 860px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-img {
    aspect-ratio: 16/9;
  }

  .blog-featured-body {
    padding: var(--sp-xl) var(--sp-lg);
  }
}

/* ── BLOG GRID (secondary cards) ─────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover {
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

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

/* Placeholder when no image */
.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(201,169,110,0.08) 100%);
}

.blog-card-img-placeholder span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--border);
}

.blog-card-body {
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.blog-card-meta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-meta::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  flex: 1;
}

.blog-card-title a {
  color: inherit;
  transition: color 0.18s;
}

.blog-card-title a:hover {
  color: var(--gold-dk);
}

.blog-card-excerpt {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--border);
}

.blog-card-link {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, gap 0.2s;
}

.blog-card-link:hover {
  color: var(--gold);
  gap: 8px;
}

.blog-card-reading-time {
  font-size: 0.68rem;
  color: var(--ink-soft);
  opacity: 0.6;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ARCHIVE INLINE BANNER ───────────────────────────────────── */

.blog-inline-banner {
  grid-column: 1 / -1;
  background: var(--ink);
  border-radius: var(--radius);
  padding: var(--sp-xl) var(--sp-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  border: 1.5px solid rgba(201,169,110,0.15);
}

.blog-inline-banner-text {
  flex: 1;
}

.blog-inline-banner .eyebrow {
  color: var(--gold);
  margin-bottom: 6px;
}

.blog-inline-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bg);
  line-height: 1.25;
  margin-bottom: 6px;
}

.blog-inline-banner p {
  font-size: 0.84rem;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.65;
  max-width: 440px;
}

.blog-inline-banner .btn {
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .blog-inline-banner {
    flex-direction: column;
    padding: var(--sp-xl) var(--sp-lg);
    text-align: center;
  }

  .blog-inline-banner p {
    max-width: none;
  }
}

/* ── SINGLE POST HEADER ──────────────────────────────────────── */

.post-header {
  padding-top: calc(var(--nav-h) + var(--sp-2xl));
  padding-bottom: var(--sp-2xl);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.post-header-inner {
  max-width: 800px;
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: var(--sp-lg);
}

.post-breadcrumb a {
  color: var(--ink-soft);
  transition: color 0.18s;
}

.post-breadcrumb a:hover {
  color: var(--gold);
}

.post-breadcrumb span {
  opacity: 0.4;
}

.post-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.post-meta-sep {
  color: var(--border);
  font-weight: 300;
}

.post-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  max-width: 760px;
  margin-bottom: var(--sp-lg);
  letter-spacing: -0.01em;
}

.post-excerpt {
  font-family: var(--font-thin);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.75;
}

/* ── SINGLE POST LAYOUT ──────────────────────────────────────── */

.post-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-2xl);
  align-items: start;
  padding-block: var(--sp-2xl);
}

.post-content {
  min-width: 0;
}

/* Hero image inside content */
.post-hero-image {
  margin-bottom: var(--sp-xl);
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}

.post-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── ARTICLE TYPOGRAPHY ENHANCEMENTS ─────────────────────────── */

.entry-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.entry-content > p:first-child {
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.8;
}

.entry-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
  font-weight: 500;
  color: var(--ink);
  margin-top: 2.5em;
  margin-bottom: 0.7em;
  line-height: 1.2;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
}

.entry-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 500;
  color: var(--ink);
  margin-top: 2em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.entry-content p {
  margin-bottom: 1.3em;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.3em;
  padding-left: 1.6em;
}

.entry-content li {
  margin-bottom: 0.45em;
  line-height: 1.7;
}

/* Callout blockquote — pull quote style */
.entry-content blockquote {
  border-left: 2px solid var(--gold);
  margin: var(--sp-xl) 0;
  padding: var(--sp-md) 0 var(--sp-md) var(--sp-xl);
  font-family: var(--font-thin);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.65;
  position: relative;
}

.entry-content blockquote::before {
  content: '"';
  position: absolute;
  left: var(--sp-sm);
  top: 0;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-family: var(--font-serif);
}

/* ── INLINE CTA (mid-article) ────────────────────────────────── */

.post-inline-cta {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-xl) var(--sp-xl);
  margin-block: var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.post-inline-cta-text {
  flex: 1;
}

.post-inline-cta .eyebrow {
  margin-bottom: 6px;
}

.post-inline-cta h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 6px;
}

.post-inline-cta p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

.post-inline-cta .btn {
  flex-shrink: 0;
  font-size: 0.78rem;
  padding: 11px 22px;
}

@media (max-width: 640px) {
  .post-inline-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-md);
  }

  .post-inline-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── TAGS SECTION ────────────────────────────────────────────── */

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-top: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--border);
}

/* ── POST NAVIGATION ─────────────────────────────────────────── */

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--border);
}

.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-lg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.post-nav-item:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.04);
}

.post-nav-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.post-nav-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.post-nav-item:last-child {
  text-align: right;
}

@media (max-width: 600px) {
  .post-nav {
    grid-template-columns: 1fr;
  }
  .post-nav-item:last-child {
    text-align: left;
  }
}

/* ── END-OF-POST PRODUCT SECTION ─────────────────────────────── */

.post-end-cta {
  background: var(--ink);
  padding-block: var(--sp-2xl);
}

.post-end-cta-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.post-end-cta-header .eyebrow {
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}

.post-end-cta-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--bg);
  line-height: 1.2;
  margin-bottom: var(--sp-sm);
}

.post-end-cta-header p {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.45);
  max-width: 460px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Three product cards on dark bg */
.post-end-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.end-product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.14);
  border-radius: var(--radius);
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition: background 0.25s, border-color 0.25s;
  text-decoration: none;
}

.end-product-card:hover {
  background: rgba(201, 169, 110, 0.06);
  border-color: rgba(201, 169, 110, 0.35);
}

.end-product-card.featured {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.06);
  position: relative;
}

.end-product-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.end-product-tier {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.end-product-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bg);
  line-height: 1.25;
}

.end-product-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.end-product-desc {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.4);
  line-height: 1.65;
  flex: 1;
}

.end-product-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.end-product-features li {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.55);
  padding-left: var(--sp-md);
  position: relative;
  line-height: 1.5;
}

.end-product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.end-product-cta {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(201, 169, 110, 0.3);
  color: var(--gold-lt);
  transition: all 0.22s;
  margin-top: auto;
}

.end-product-card:hover .end-product-cta,
.end-product-card.featured .end-product-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

@media (max-width: 860px) {
  .post-end-products {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* ── SIDEBAR ─────────────────────────────────────────────────── */

.post-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-lg));
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

/* Playbook CTA card */
.sidebar-cta {
  background: var(--ink);
  border-radius: var(--radius);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
}

.sidebar-cta .eyebrow {
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}

.sidebar-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: var(--sp-sm);
  line-height: 1.25;
}

.sidebar-cta p {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.45);
  margin-bottom: var(--sp-lg);
  line-height: 1.65;
}

.sidebar-cta .btn {
  width: 100%;
  text-align: center;
}

/* Secondary product card in sidebar */
.sidebar-product {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.sidebar-product-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  display: inline-block;
  width: fit-content;
}

.sidebar-product h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}

.sidebar-product-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.sidebar-product p {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.sidebar-product .btn {
  font-size: 0.76rem;
  padding: 10px 18px;
  text-align: center;
}

/* Recent posts in sidebar */
.sidebar-recent {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-lg);
}

.sidebar-recent-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-md);
}

.sidebar-recent-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-recent-item {
  display: block;
  padding-block: var(--sp-sm);
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.18s;
}

.sidebar-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-recent-item:hover {
  color: var(--gold-dk);
}

@media (max-width: 960px) {
  .post-body {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
    order: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
  }

  .sidebar-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .post-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ── RELATED POSTS ───────────────────────────────────────────── */

.related-posts {
  padding-block: var(--sp-2xl);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.related-posts-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-xl);
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.related-posts-header h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
}

.related-posts-header a {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-dk);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.related-posts-header a:hover {
  color: var(--gold);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.related-post-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: var(--sp-lg);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.related-post-item:hover {
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow: var(--shadow);
}

.related-post-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.related-post-title {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  flex: 1;
}

.related-post-meta {
  font-size: 0.7rem;
  color: var(--ink-soft);
  opacity: 0.6;
}

@media (max-width: 760px) {
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}
