/*
Theme Name: Liên Hoa
Theme URI: https://dtdp.99a.fun/
Description: Theme thanh tịnh phương Đông — Pháp Luân Đại Pháp
Version: 2.8
Author: Mun
Text Domain: lien-hoa
*/

/* ══════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════ */
:root {
  /* Core palette */
  --lh-gold:        #a17c32;
  --lh-gold-light:  #d4a843;
  --lh-gold-soft:   #f0e6cc;
  --lh-jade:        #3a7d5c;
  --lh-jade-dark:   #2a5e44;
  --lh-jade-soft:   #e8f2ec;
  --lh-lotus:       #c87d9e;
  --lh-lotus-soft:  #f5e5ed;
  --lh-ivory:       #faf7f0;
  --lh-cream:       #f5f0e4;
  --lh-warm-gray:   #8a8278;
  --lh-dark:        #2c2418;
  --lh-text:        #3d3528;
  --lh-text-light:  #7a7062;
  --lh-border:      #e8e2d6;
  --lh-white:       #ffffff;

  /* Typography */
  --lh-serif:   'Noto Serif', 'Georgia', serif;
  --lh-sans:    'Source Sans 3', 'Segoe UI', sans-serif;

  /* Spacing */
  --lh-gap:     2rem;
  --lh-radius:  8px;
  --lh-radius-lg: 16px;

  /* Shadows */
  --lh-shadow-sm: 0 1px 3px rgba(44,36,24,.06);
  --lh-shadow:    0 4px 20px rgba(44,36,24,.08);
  --lh-shadow-lg: 0 8px 40px rgba(44,36,24,.12);
  --lh-shadow-hover: 0 8px 30px rgba(44,36,24,.15);

  /* Transitions */
  --lh-ease:    cubic-bezier(.4,0,.2,1);
  --lh-dur:     .35s;
}

/* ══════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--lh-sans);
  color: var(--lh-text);
  background: var(--lh-ivory);
  line-height: 1.7;
}

a { color: var(--lh-jade); text-decoration: none; transition: color var(--lh-dur) var(--lh-ease); }
a:hover { color: var(--lh-gold); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--lh-serif);
  color: var(--lh-dark);
  line-height: 1.3;
  font-weight: 600;
}

/* ══════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════ */
.lh-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lh-wrap--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,240,.95);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--lh-border);
  transition: box-shadow var(--lh-dur) var(--lh-ease);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(44,36,24,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

/* Brand */
.header-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform var(--lh-dur) var(--lh-ease);
}

.header-brand:hover .header-logo-img {
  transform: scale(1.05);
}

.header-brand-text {
  display: flex;
  flex-direction: column;
}

.header-brand-name {
  font-family: var(--lh-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lh-dark);
  line-height: 1.2;
}

.header-brand-tagline {
  font-size: .65rem;
  color: var(--lh-gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Right side actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .25rem;
}

/* Inline nav (desktop only, 2-3 items) */
.header-nav-primary {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav-primary a {
  display: block;
  padding: .45rem .9rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--lh-text);
  letter-spacing: .03em;
  white-space: nowrap;
  position: relative;
  transition: color var(--lh-dur) var(--lh-ease);
}

.header-nav-primary a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--lh-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--lh-dur) var(--lh-ease);
  border-radius: 1px;
}

.header-nav-primary a:hover { color: var(--lh-jade); }
.header-nav-primary a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Dropdown button */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--lh-white);
  background: var(--lh-jade);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--lh-dur) var(--lh-ease);
  font-family: var(--lh-sans);
}

.nav-dropdown__btn:hover { background: var(--lh-jade-dark); }

/* Dropdown panel */
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 260px;
  background: var(--lh-white);
  border: 1px solid var(--lh-border);
  border-radius: var(--lh-radius);
  box-shadow: 0 10px 40px rgba(44,36,24,.08), 0 2px 10px rgba(44,36,24,.03);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s cubic-bezier(0.16, 1, 0.3, 1), transform .3s cubic-bezier(0.16, 1, 0.3, 1), visibility .3s;
  z-index: 200;
}

.nav-dropdown__panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__panel a,
.nav-dropdown__panel li a {
  display: block;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  font-weight: 400;
  color: var(--lh-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  transition: all .2s var(--lh-ease);
  border-left: 3px solid transparent;
}

.nav-dropdown__panel li {
	list-style: none;
	margin: 0;
}

.nav-dropdown__panel li:not(:last-child) {
	border-bottom: 1px solid rgba(44, 36, 24, 0.05);
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel li a:hover {
  background: var(--lh-jade-soft);
  color: var(--lh-jade);
  border-left-color: var(--lh-jade);
  padding-left: 1.8rem;
}

/* Nav Search */
.nav-search-wrap {
  padding: .75rem 1.5rem;
  border-bottom: 1px solid rgba(44,36,24,.05);
}

.search-form { width: 100%; }
.search-form__inner {
  position: relative;
  display: flex;
  align-items: center;
}
.search-form__input {
  width: 100%;
  padding: .6rem 2.5rem .6rem 1rem;
  border: 1px solid var(--lh-border);
  border-radius: 100px;
  background: var(--lh-ivory);
  font-family: var(--lh-sans);
  font-size: .85rem;
  color: var(--lh-text);
  transition: all var(--lh-dur) var(--lh-ease);
  outline: none;
}
.search-form__input:focus {
  border-color: var(--lh-gold);
  background: var(--lh-white);
  box-shadow: 0 0 0 3px rgba(161,124,50,.1);
}
.search-form__btn {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--lh-text-light);
  cursor: pointer;
  padding: .25rem;
  display: flex;
  transition: color var(--lh-dur) var(--lh-ease);
}
.search-form__btn:hover { color: var(--lh-gold); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--lh-border);
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--lh-dark);
  padding: .35rem .6rem;
  line-height: 1;
  margin-left: .25rem;
}

/* Mobile nav panel */
.header-nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--lh-border);
  background: var(--lh-ivory);
  max-height: 60vh;
  overflow-y: auto;
}

.header-nav-mobile a,
.header-nav-mobile li a {
  display: block;
  padding: .85rem 1.5rem;
  font-size: .9rem;
  color: var(--lh-text);
  border-bottom: 1px solid var(--lh-border);
  transition: background var(--lh-dur) var(--lh-ease);
}

.header-nav-mobile a:hover,
.header-nav-mobile li a:hover { background: var(--lh-jade-soft); }

.header-nav-mobile li { list-style: none; }

/* ══════════════════════════════════════
   HERO — Split layout (text + image)
   ══════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lh-dark) 0%, #1a2e22 40%, var(--lh-jade-dark) 100%);
}

/* Decorative lotus watermark */
.hero::before {
  content: '蓮';
  position: absolute;
  right: -3%;
  top: -8%;
  font-size: 28rem;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3rem;
  color: var(--lh-white);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .35rem 1rem;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--lh-gold-light);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-label .pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--lh-gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--lh-white);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero-excerpt {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-meta {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero:hover .hero-image img { transform: scale(1.04); }

/* Gradient overlay on image left edge for seamless blend */
.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--lh-dark), transparent);
  z-index: 1;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1rem 0;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero-stat {
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-stat strong {
  display: block;
  font-family: var(--lh-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lh-gold-light);
  margin-bottom: .15rem;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.8rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--lh-dark);
  background: var(--lh-gold-light);
  border-radius: 6px;
  letter-spacing: .03em;
  transition: all var(--lh-dur) var(--lh-ease);
  border: none;
  cursor: pointer;
}

.btn-read:hover {
  background: var(--lh-white);
  color: var(--lh-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,168,67,.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  transition: all var(--lh-dur) var(--lh-ease);
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--lh-gold-light);
  color: var(--lh-gold-light);
}

/* ══════════════════════════════════════
   SECTION
   ══════════════════════════════════════ */
.section {
  padding: 4rem 0;
}

.section--alt { background: var(--lh-cream); }
.section--dark {
  background: var(--lh-dark);
  color: rgba(255,255,255,.85);
}

.section-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.section-label::before {
  content: '';
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--lh-gold), var(--lh-jade));
  border-radius: 2px;
}

.section-label h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.section-label p {
  font-size: .85rem;
  color: var(--lh-text-light);
  margin-left: auto;
}

/* ══════════════════════════════════════
   POST CARDS — Grid
   ══════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.post-card {
  background: var(--lh-white);
  border-radius: var(--lh-radius);
  overflow: hidden;
  box-shadow: var(--lh-shadow-sm);
  transition: transform var(--lh-dur) var(--lh-ease), box-shadow var(--lh-dur) var(--lh-ease);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lh-shadow-hover);
}

.post-card__thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: block;
  background: var(--lh-cream);
}

.post-card__thumb img,
.post-card__thumb svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--lh-ease);
}

.post-card:hover .post-card__thumb img,
.post-card:hover .post-card__thumb svg {
  transform: scale(1.05);
}

.post-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  padding: .2rem .6rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--lh-white);
  background: var(--lh-jade);
  border-radius: 3px;
}

.post-card__badge--audio { background: var(--lh-gold); }

.post-card__body {
  padding: 1.25rem;
}

.post-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__title a { color: var(--lh-dark); }
.post-card__title a:hover { color: var(--lh-jade); }

.post-card__excerpt {
  font-size: .88rem;
  color: var(--lh-text-light);
  line-height: 1.6;
  margin-bottom: .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--lh-warm-gray);
}

.post-card__meta .audio-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: var(--lh-gold);
  font-weight: 600;
}

/* ══════════════════════════════════════
   FEATURED POST — Large horizontal
   ══════════════════════════════════════ */
.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--lh-white);
  border-radius: var(--lh-radius-lg);
  overflow: hidden;
  box-shadow: var(--lh-shadow);
  margin-bottom: 2rem;
}

.featured-post__thumb {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.featured-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--lh-ease);
}

.featured-post:hover .featured-post__thumb img {
  transform: scale(1.04);
}

.featured-post__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

.featured-post__cat {
  display: inline-block;
  width: fit-content;
  padding: .25rem .7rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lh-jade);
  border: 1.5px solid var(--lh-jade);
  border-radius: 3px;
  margin-bottom: 1rem;
}

.featured-post__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .75rem;
}

.featured-post__title a { color: var(--lh-dark); }
.featured-post__title a:hover { color: var(--lh-jade); }

.featured-post__excerpt {
  color: var(--lh-text-light);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-post__meta {
  font-size: .8rem;
  color: var(--lh-warm-gray);
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* ══════════════════════════════════════
   POPULAR LIST
   ══════════════════════════════════════ */
.popular-list {
  list-style: none;
}

.popular-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--lh-border);
  transition: padding-left var(--lh-dur) var(--lh-ease);
}

.popular-item:last-child { border-bottom: none; }
.popular-item:hover { padding-left: .5rem; }

.popular-num {
  font-family: var(--lh-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lh-gold-soft);
  min-width: 3rem;
  line-height: 1;
}

.popular-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .3rem;
}

.popular-info h3 a { color: var(--lh-dark); }
.popular-info h3 a:hover { color: var(--lh-jade); }

.popular-info span {
  font-size: .75rem;
  color: var(--lh-text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ══════════════════════════════════════
   CATEGORY CHIPS
   ══════════════════════════════════════ */
.cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  padding: 2rem 0;
}

.cat-chip {
  display: inline-block;
  padding: .5rem 1.2rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--lh-text);
  background: var(--lh-white);
  border: 1px solid var(--lh-border);
  border-radius: 100px;
  transition: all var(--lh-dur) var(--lh-ease);
}

.cat-chip:hover {
  background: var(--lh-jade);
  color: var(--lh-white);
  border-color: var(--lh-jade);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58,125,92,.2);
}

/* ══════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════ */
.pagination { text-align: center; padding: 2rem 0; }

.pagination .nav-links {
  display: inline-flex;
  gap: .25rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: .85rem;
  border-radius: var(--lh-radius);
  border: 1px solid var(--lh-border);
  background: var(--lh-white);
  color: var(--lh-text);
  transition: all var(--lh-dur) var(--lh-ease);
}

.pagination a:hover {
  background: var(--lh-jade);
  color: var(--lh-white);
  border-color: var(--lh-jade);
}

.pagination .current {
  background: var(--lh-jade);
  color: var(--lh-white);
  border-color: var(--lh-jade);
  font-weight: 600;
}

/* ══════════════════════════════════════
   SINGLE POST
   ══════════════════════════════════════ */
.single-header {
  padding: 3rem 0 2rem;
  text-align: center;
}

.single-header__cat {
  display: inline-block;
  padding: .3rem .8rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lh-jade);
  border: 1.5px solid var(--lh-jade);
  border-radius: 3px;
  margin-bottom: 1rem;
}

.single-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.3;
}

.single-header__meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: .85rem;
  color: var(--lh-text-light);
}

.single-cover {
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: var(--lh-radius-lg);
  overflow: hidden;
  box-shadow: var(--lh-shadow-lg);
}

.single-cover img {
  width: 100%;
  display: block;
}

.single-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  font-size: 1.08rem;
  line-height: 1.85;
}

.single-content p { margin-bottom: 1.5rem; }

.single-content p:first-of-type::first-letter {
  font-family: var(--lh-serif);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  margin: .05em .15em 0 0;
  color: var(--lh-gold);
  font-weight: 700;
}

.single-content h2, .single-content h3 {
  margin: 2rem 0 1rem;
}

.single-content blockquote {
  border-left: 4px solid var(--lh-gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--lh-cream);
  border-radius: 0 var(--lh-radius) var(--lh-radius) 0;
  font-style: italic;
  color: var(--lh-text-light);
}

.single-content audio,
.single-content iframe {
  width: 100%;
  margin: 1.5rem 0;
  border-radius: var(--lh-radius);
}

.single-content .wp-block-audio {
  margin: 1.5rem 0;
}

/* Post nav */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.post-nav a {
  padding: 1.25rem;
  background: var(--lh-white);
  border-radius: var(--lh-radius);
  border: 1px solid var(--lh-border);
  display: flex;
  flex-direction: column;
  gap: .3rem;
  transition: all var(--lh-dur) var(--lh-ease);
}

.post-nav a:hover {
  border-color: var(--lh-jade);
  box-shadow: var(--lh-shadow);
  transform: translateY(-2px);
}

.post-nav__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--lh-text-light);
}

.post-nav__title {
  font-family: var(--lh-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--lh-dark);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

/* ══════════════════════════════════════
   ARCHIVE
   ══════════════════════════════════════ */
.archive-header {
  text-align: center;
  padding: 3rem 0 1rem;
}

.archive-header h1 {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.archive-header p {
  color: var(--lh-text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   COMMENTS
   ══════════════════════════════════════ */
.comments-area {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.comments-title {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.comment-list {
  list-style: none;
  margin-bottom: 2rem;
}

.comment-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--lh-border);
}

.comment-respond {
  background: var(--lh-white);
  padding: 2rem;
  border-radius: var(--lh-radius);
  border: 1px solid var(--lh-border);
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--lh-border);
  border-radius: var(--lh-radius);
  font-family: var(--lh-sans);
  font-size: .9rem;
  background: var(--lh-ivory);
  transition: border-color var(--lh-dur) var(--lh-ease);
  margin-bottom: .75rem;
}

.comment-respond input:focus,
.comment-respond textarea:focus {
  outline: none;
  border-color: var(--lh-jade);
}

.comment-respond .submit {
  padding: .75rem 2rem;
  background: var(--lh-jade);
  color: var(--lh-white);
  border: none;
  border-radius: var(--lh-radius);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--lh-dur) var(--lh-ease);
}

.comment-respond .submit:hover {
  background: var(--lh-gold);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  background: var(--lh-dark);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lh-gold), transparent);
  margin: 0 auto 1.5rem;
}

.footer-brand {
  font-family: var(--lh-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lh-gold-light);
  margin-bottom: .3rem;
}

.footer-tagline {
  font-size: .82rem;
  margin-bottom: .3rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
}

.footer-motto {
  font-size: .9rem;
  letter-spacing: .2em;
  color: var(--lh-gold-soft);
  margin-bottom: 1rem;
  font-family: var(--lh-serif);
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════
   FADE ANIMATIONS
   ══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--lh-ease), transform .6s var(--lh-ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   AUDIO PLAYER & SERIES GRID
   ══════════════════════════════════════ */
#audio-player-container {
  margin: 1.5rem 0 2rem;
  padding: 1.5rem;
  background: var(--lh-white);
  border-radius: var(--lh-radius-lg);
  box-shadow: var(--lh-shadow-sm);
  border: 1px solid var(--lh-border);
}

#shared-audio-player {
  width: 100%;
  border-radius: 8px;
  outline: none;
}

#audio-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.audio-button {
  padding: 1rem;
  background: var(--lh-ivory);
  border: 1px solid var(--lh-border);
  border-radius: var(--lh-radius);
  color: var(--lh-text);
  font-family: var(--lh-sans);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all var(--lh-dur) var(--lh-ease);
  display: flex;
  align-items: center;
  gap: .5rem;
  line-height: 1.4;
}

.audio-button::before {
  content: '▶';
  font-size: .8rem;
  color: var(--lh-gold);
  transition: transform var(--lh-dur) var(--lh-ease);
}

.audio-button:hover {
  background: var(--lh-jade-soft);
  border-color: var(--lh-jade);
  color: var(--lh-jade-dark);
}

.audio-button:hover::before {
  transform: scale(1.1);
  color: var(--lh-jade);
}

.audio-button.playing {
  background: var(--lh-jade);
  color: var(--lh-white);
  border-color: var(--lh-jade);
  box-shadow: 0 4px 12px rgba(58,125,92,.2);
}

.audio-button.playing::before {
  content: '■';
  color: var(--lh-gold-light);
}

/* ══════════════════════════════════════
   ARTICLE LIST (.art-list)
   ══════════════════════════════════════ */
.art-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 2rem 0;
}

.art-btn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  background: var(--lh-white);
  border: 1px solid var(--lh-border);
  border-radius: var(--lh-radius);
  color: var(--lh-text);
  text-decoration: none;
  transition: all var(--lh-dur) var(--lh-ease);
}

.art-btn:hover {
  background: var(--lh-jade-soft);
  border-color: var(--lh-jade);
  transform: translateX(4px);
  box-shadow: var(--lh-shadow-sm);
  color: var(--lh-jade-dark);
}

.art-num {
  font-family: var(--lh-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lh-gold);
  min-width: 2rem;
}

.art-title {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 960px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post__thumb { min-height: 240px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { min-height: 280px; }
  .hero-title { font-size: 1.8rem; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat strong { font-size: 1.2rem; }
  .hero::before { font-size: 16rem; right: -8%; }

  .header-nav-primary { display: none; }
  .mobile-toggle { display: block; }
  .header-nav-mobile.active { display: flex; }
}

@media (max-width: 640px) {
  .posts-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-stats { gap: 1rem; padding: .8rem 1rem; flex-wrap: wrap; }
  .single-header h1 { font-size: 1.6rem; }
  .header-brand-tagline { display: none; }
  .art-btn { padding: .75rem 1rem; gap: 1rem; }
  #audio-player-container { padding: 1rem; }
}
