/* ============================================================
   LIVEA RECIPES — recipes.css
   Namespace: rc-*  (listing page, matches blog design)
   ============================================================ */


/* ============================================================
   1. HERO
   ============================================================ */

.rc-hero {
  background: var(--off-white);
  margin-top: 120px;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--sand-deep);
  position: relative;
  overflow: hidden;
}

.rc-hero-watermark {
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: var(--font-serif);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 600;
  line-height: 1;
  color: var(--text-dark);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.rc-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.rc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 400;
  color: var(--subtle);
  margin-bottom: 22px;
  text-decoration: none;
}
.rc-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.rc-breadcrumb a:hover { color: var(--teal); }
.rc-breadcrumb-sep { color: var(--subtle); }

.rc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: var(--type-caption);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.rc-eyebrow-line {
  display: inline-block;
  width: 26px;
  height: 1.5px;
  background: var(--teal);
  opacity: 0.6;
  flex-shrink: 0;
}

.rc-hero-h1 {
  font-family: var(--font-serif);
  font-size: var(--type-display);
  font-weight: 400;
  line-height: 1.06;
  color: var(--text-dark);
  margin: 0 0 20px;
}
.rc-hero-h1 em {
  font-style: italic;
  color: var(--teal);
}

.rc-hero-p {
  font-family: var(--font-sans);
  font-size: var(--type-body-lg);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--text-medium);
  max-width: 560px;
  margin: 0;
}

.rc-stat-box {
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,36,32,0.07);
  box-shadow: var(--shadow-sm);
  padding: 22px 28px;
  text-align: center;
  flex-shrink: 0;
  min-width: 160px;
}
.rc-stat-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--teal-dim);
  line-height: 1;
  margin-bottom: 6px;
}
.rc-stat-label {
  font-family: var(--font-sans);
  font-size: var(--type-caption);
  font-weight: 400;
  color: var(--text-medium);
  letter-spacing: 0.04em;
  white-space: nowrap;
}


/* ============================================================
   2. FILTER BAR
   ============================================================ */

.rc-filter-bar {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: var(--off-white);
  border-bottom: 1px solid var(--sand-deep);
}

.rc-filter-scroll {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rc-filter-scroll::-webkit-scrollbar { display: none; }

.rc-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px 12px;
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 400;
  color: var(--text-medium);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
  outline-offset: 2px;
}
.rc-tab:hover { color: var(--text-dark); }
.rc-tab.active {
  color: var(--text-dark);
  font-weight: 500;
  border-bottom-color: var(--teal);
}

.rc-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rc-dot-teal        { background: var(--teal); }
.rc-dot-rose        { background: var(--rose-gold); }
.rc-dot-muted       { background: var(--muted); }
.rc-dot-teal-light  { background: var(--teal-light); }
.rc-dot-purple      { background: var(--violet); }
.rc-dot-forest      { background: var(--forest); }


/* ============================================================
   3. RECIPE LAYOUT
   ============================================================ */

.rc-layout {
  padding: 96px 0;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.rc-main {
  min-width: 0;
}


/* ─── Article list ───────────────────────────────────────────────────────── */

.rc-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rc-article-row {
  border-bottom: 1px solid var(--sand-deep);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.rc-article-row--first { border-top: 1px solid var(--sand-deep); }
.rc-article-row.rc-reveal { opacity: 0; transform: translateY(26px); }
.rc-article-row.rc-revealed {
  opacity: 1;
  transform: none;
}

.rc-article-link {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
}
.rc-article-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.rc-thumb {
  width: 120px;
  height: 90px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--sand-mid);
}

.rc-article-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.rc-article-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rc-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: var(--type-caption);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rc-article-meta-detail {
  font-family: var(--font-sans);
  font-size: var(--type-caption);
  font-weight: 400;
  color: var(--muted);
}

.rc-article-title {
  font-family: var(--font-serif);
  font-size: var(--type-h3);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.2s;
  overflow-wrap: break-word;
}
.rc-article-link:hover .rc-article-title { color: var(--teal); }

.rc-article-excerpt {
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-medium);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rc-article-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.rc-article-arrow {
  margin-left: auto;
  font-size: var(--type-body);
  color: var(--teal);
  transition: transform 0.2s;
}
.rc-article-link:hover .rc-article-arrow { transform: translateX(4px); }


/* ─── Empty state ────────────────────────────────────────────────────────── */

.rc-empty {
  text-align: center;
  padding: 72px 24px;
  font-family: var(--font-serif);
  font-size: var(--type-h3);
  font-weight: 400;
  font-style: italic;
  color: var(--subtle);
}


/* ─── Sidebar ─────────────────────────────────────────────────────────────── */

.rc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 116px;
}

.rc-sidebar-card {
  background: var(--off-white);
  border: 1px solid rgba(26,36,32,0.07);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.rc-sidebar-card.rc-revealed {
  opacity: 1;
  transform: none;
}

.rc-sidebar-h {
  font-family: var(--font-serif);
  font-size: var(--type-body-lg);
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 16px;
}

/* Newsletter card */
.rc-newsletter {
  background: var(--forest);
  border-radius: var(--radius-md);
  padding: 24px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.rc-newsletter.rc-revealed {
  opacity: 1;
  transform: none;
}

.rc-newsletter-h {
  font-family: var(--font-serif);
  font-size: var(--type-h3);
  font-weight: 400;
  color: var(--off-white);
  margin: 0 0 10px;
  line-height: 1.2;
}
.rc-newsletter-h em {
  font-style: italic;
  color: var(--teal-light);
}

.rc-newsletter-p {
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 400;
  color: white;
  margin: 0 0 18px;
  line-height: 1.6;
}

.rc-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rc-newsletter-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
}
.rc-newsletter-input::placeholder { color: rgba(255,255,255,0.42); }
.rc-newsletter-input:focus { border-color: var(--teal-light); }

.rc-newsletter-btn {
  width: 100%;
  padding: 12px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.03em;
}
.rc-newsletter-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(47,185,152,0.35); }
.rc-newsletter-btn:disabled { opacity: 0.6; cursor: default; transform: none; box-shadow: none; }

.rc-newsletter-note {
  font-family: var(--font-sans);
  font-size: var(--type-caption);
  margin-top: 6px;
}
.rc-newsletter-note--ok  { color: var(--teal-light); }
.rc-newsletter-note--err { color: #F4A49A; }

/* Browse by Category */
.rc-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-cat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  transition: background 0.18s;
}
.rc-cat-row:hover { background: var(--sand-mid); }
.rc-cat-row--active {
  background: var(--teal-mist);
  border-radius: 8px;
}
.rc-cat-row--active .rc-cat-name {
  color: var(--teal-dim);
  font-weight: 500;
}

.rc-cat-name {
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 400;
  color: var(--text-dark);
  flex: 1;
}

.rc-cat-count {
  font-family: var(--font-sans);
  font-size: var(--type-caption);
  font-weight: 500;
  background: var(--sand-mid);
  color: var(--text-medium);
  padding: 2px 8px;
  border-radius: 100px;
}

/* Popular Recipes */
.rc-most-read {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: mr;
}

.rc-mr-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rc-mr-num {
  font-family: var(--font-serif);
  font-size: var(--type-body-lg);
  font-weight: 400;
  color: var(--subtle);
  line-height: 1.2;
  flex-shrink: 0;
  width: 26px;
}

.rc-mr-title {
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.18s;
}
.rc-mr-title:hover { color: var(--teal); }


/* ============================================================
   4. CTA BAND
   ============================================================ */

.rc-cta {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.rc-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(49,184,152,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.rc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.rc-cta-inner.rc-revealed {
  opacity: 1;
  transform: none;
}

.rc-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: var(--type-caption);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.rc-cta-eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1.5px;
  background: var(--teal-light);
  opacity: 0.6;
  flex-shrink: 0;
}

.rc-cta-h {
  font-family: var(--font-serif);
  font-size: var(--type-h1);
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.1;
  margin: 0 0 14px;
}
.rc-cta-h em {
  font-style: italic;
  color: var(--teal-light);
}

.rc-cta-p {
  font-family: var(--font-sans);
  font-size: var(--type-body);
  font-weight: 400;
  color: white;
  line-height: var(--lh-body);
  max-width: 420px;
  margin: 0;
}

.rc-cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.rc-btn-outline {
  display: inline-block;
  padding: 15px 32px;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: var(--type-body);
  font-weight: 500;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.rc-btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}


/* ============================================================
   5. SKELETON LOADING ROWS
   ============================================================ */

.rc-skeleton-row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  pointer-events: none;
}
.rc-sk-thumb {
  width: 120px;
  height: 90px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--sand-mid) 25%, var(--sand-deep) 50%, var(--sand-mid) 75%);
  background-size: 200% 100%;
  animation: rcSkShimmer 1.4s infinite;
}
.rc-sk-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.rc-sk-line {
  height: 13px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--sand-mid) 25%, var(--sand-deep) 50%, var(--sand-mid) 75%);
  background-size: 200% 100%;
  animation: rcSkShimmer 1.4s infinite;
}
.rc-sk-short { width: 40%; }
@keyframes rcSkShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


/* ============================================================
   6. RESPONSIVE
   ============================================================ */

@media (max-width: 720px) {
  .rc-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rc-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .rc-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .rc-cta-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .rc-hero {
    margin-top: 108px;
    padding: 64px 0;
  }

  .rc-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rc-hero-right {
    display: flex;
    justify-content: flex-start;
  }

  .rc-layout { padding: 64px 0; }

  .rc-article-link {
    grid-template-columns: 1fr;
  }

  .rc-thumb { display: none; }

  .rc-sidebar {
    grid-template-columns: 1fr;
  }

  .rc-cta {
    padding: 64px 0;
  }

  .rc-cta-right {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .rc-btn-outline {
    width: 100%;
    text-align: center;
  }
}


/* ============================================================
   RECIPE DETAIL PAGE STYLES (preserved)
   ============================================================ */

/* ─── Breadcrumb Bar ───────────────────────────────────────── */

.breadcrumb-bar {
    background: var(--surface);
    border-bottom: 1px solid rgba(26, 36, 32, 0.07);
    padding: 12px 0;
}

.breadcrumb-bar nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    font-size: var(--type-small);
    color: var(--text-medium);
}

.breadcrumb-bar a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-bar a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 6px;
    color: var(--text-light);
    user-select: none;
}

/* ─── Recipe Meta Pills ────────────────────────────────────── */

.recipe-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 28px;
}

.recipe-meta-pills .pill {
    background: var(--sand-mid);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: var(--type-caption);
    color: var(--text-medium);
    font-family: var(--font-sans);
    white-space: nowrap;
    font-weight: 400;
}

/* ─── Nutritional Info Badges ──────────────────────────────── */

.nutrition-badge,
.content-card-badge {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 100px;
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--teal);
    color: var(--white);
    margin-right: 4px;
    margin-bottom: 4px;
}

.nutrition-badge-secondary {
    background: var(--teal-pale);
    color: var(--teal-dim);
}

/* ─── Recipe Detail Image ──────────────────────────────────── */

.recipe-detail-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 32px;
    display: block;
}

/* ─── Recipe Detail Section ────────────────────────────────── */

.recipe-detail-section {
    padding: 96px 0 96px;
    background: var(--background);
}

/* ─── Recipe Body (rendered HTML from Airtable) ────────────── */

.recipe-body {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--font-sans);
    font-size: var(--type-body);
    line-height: var(--lh-body);
    color: var(--text-dark);
}

.recipe-body h3 {
    font-family: var(--font-serif);
    font-size: var(--type-h3);
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.recipe-body ul,
.recipe-body ol {
    padding-left: 24px;
    line-height: 2;
    margin: 0 0 24px;
}

.recipe-body li {
    margin-bottom: 4px;
    color: var(--text-dark);
}

.recipe-body p {
    margin: 0 0 16px;
}

/* ─── Recipe Detail Header ─────────────────────────────────── */

.recipe-detail-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(26, 36, 32, 0.08);
}

.recipe-detail-title {
    font-family: var(--font-serif);
    font-size: var(--type-h1);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 8px 0 16px;
}

.recipe-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

/* ─── Recipe Detail Body (Prose) ───────────────────────────── */

.recipe-detail-body {
    font-family: var(--font-sans);
    font-size: var(--type-body-lg);
    line-height: var(--lh-body);
    color: var(--text-dark);
}

.recipe-detail-body h1 {
    font-family: var(--font-serif);
    font-size: var(--type-h2);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 2rem 0 1rem;
}

.recipe-detail-body h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h3);
    font-weight: 400;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
    line-height: 1.35;
    margin: 2rem 0 0.875rem;
}

.recipe-detail-body h3 {
    font-family: var(--font-serif);
    font-size: var(--type-body-lg);
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    line-height: 1.4;
    margin: 1.75rem 0 0.75rem;
}

.recipe-detail-body h4,
.recipe-detail-body h5,
.recipe-detail-body h6 {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 500;
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem;
}

.recipe-detail-body p {
    margin: 0 0 1.25rem;
}

.recipe-detail-body p:last-child {
    margin-bottom: 0;
}

.recipe-detail-body ul,
.recipe-detail-body ol {
    padding-left: 1.75rem;
    margin: 0 0 1.25rem;
    line-height: 2;
}

.recipe-detail-body ul {
    list-style-type: disc;
}

.recipe-detail-body ol {
    list-style-type: decimal;
}

.recipe-detail-body li {
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.recipe-detail-body li:last-child {
    margin-bottom: 0;
}

.recipe-detail-body strong {
    font-weight: 600;
    color: var(--text-dark);
}

.recipe-detail-body em {
    font-style: italic;
}

.recipe-detail-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.recipe-detail-body a:hover {
    color: var(--secondary);
}

.recipe-detail-body hr {
    border: none;
    border-top: 1px solid rgba(26, 36, 32, 0.1);
    margin: 2rem 0;
}

.recipe-detail-body blockquote {
    border-left: 4px solid var(--primary);
    margin: 1.5rem 0;
    padding: 0.75rem 1.25rem;
    background: var(--surface);
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: var(--text-medium);
}

.recipe-detail-body blockquote p {
    margin: 0;
}

.recipe-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5rem auto;
    display: block;
}

/* ─── Related Recipes Section ──────────────────────────────── */

#related-recipes-section {
    padding: 96px 0 96px;
    background: var(--surface);
}

#related-recipes-section h3 {
    font-family: var(--font-serif);
    font-size: var(--type-h2);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 32px;
}

/* ─── Skeleton loaders (detail page) ───────────────────────── */

@keyframes shimmer {
    0% { background-position: -600px 0; }
    100% { background-position: 600px 0; }
}

.skeleton-line,
.skeleton-image,
.skeleton-pill,
.skeleton-filter {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 600px 100%;
    animation: shimmer 1.4s infinite linear;
    border-radius: 4px;
}

.skeleton-filter {
    height: 36px;
    width: 90px;
    border-radius: 999px;
    display: inline-block;
}

.skeleton-image {
    height: 0;
    padding-top: 56.25%;
    border-radius: 0;
}

.skeleton-line {
    height: 14px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 4px;
}

.skeleton-line-short {
    width: 55%;
}

.skeleton-line-title {
    height: 28px;
    width: 75%;
    margin-bottom: 16px;
}

.skeleton-pills {
    display: flex;
    gap: 8px;
    margin: 16px 0 28px;
}

.skeleton-pill {
    height: 28px;
    width: 80px;
    border-radius: 20px;
}

.recipe-skeleton-image {
    height: 320px;
    padding-top: 0 !important;
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

/* Badge colors (shared with blog) */
.cat-glp1-bg       { background: rgba(49,184,152,.12); color: var(--teal-dim); }
.cat-nutrition-bg  { background: rgba(196,145,124,.12); color: #8B5E4E; }
.cat-lifestyle-bg  { background: rgba(74,94,88,.10);   color: var(--text-medium); }
.cat-metabolism-bg { background: rgba(49,184,152,.10); color: var(--teal-dim); }
.cat-mindset-bg    { background: var(--violet-pale); color: var(--violet-deep); }
.cat-story-bg      { background: rgba(28,56,50,.10);   color: var(--forest-mid); }

/* Content card styles (for detail page related recipes) */
.content-card-category {
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--teal);
}

/* ─── Responsive (detail page) ─────────────────────────────── */

@media (max-width: 768px) {
    .recipe-detail-section {
        padding: 64px 0 64px;
    }

    .recipe-body h3 {
        margin-top: 32px;
    }

    #related-recipes-section {
        padding: 64px 0 64px;
    }
}
