/**
 * LOVE BLOOM THEME CSS - v1.3.2
 * 
 * Premium romance & mystery theme for LoudYell
 * 
 * @changelog
 *   1.3.2 - UPDATED: Added production Loud Yell horizontal logo styling in the shared navigation.
 *         - ADDED: Responsive logo sizing for desktop, tablet, and mobile headers.
 *         - REMOVED: Obsolete text-only brand mark/name/subtitle styling from the navigation.
 *         - IMPROVED: Navigation spacing so the production logo, links, and actions remain balanced.
 *         - PRESERVED: Existing mobile menu, search overlay, homepage spacing, and all theme components.
 *
 *   1.3.1 - FIXED: Reduced excessive vertical gap between the homepage hero and Featured section.
 *         - UPDATED: Tightened hero bottom margin and homepage main-content top padding.
 *         - UPDATED: Removed the first section heading's redundant top margin.
 *         - PRESERVED: Spacing between all later homepage sections.
 *
 *   1.2.0 - ADDED: Tonight's Reading, curated collections, pull quote, and author spotlight.
 *         - ADDED: Cinematic motion and richer story metadata.
 *         - PRESERVED: Partner Spotlight, ads, video, and responsive fixes.
 *
 *   1.1.8 - ADDED: Premium Site Manager-powered Partner Spotlight presentation
 *         - ADDED: Desktop parallax treatment with mobile-safe fallback
 *         - IMPROVED: Sidebar advertisements are larger, clearer, and CTA-driven
 *         - IMPROVED: Sponsored placements now provide stronger commercial visibility
 *         - PRESERVED: Love Bloom typography, palette, responsive layout, and video fixes
 *   1.1.7 - FIXED: Added guaranteed CSS play glyphs inside featured and mini video buttons
 *         - FIXED: No longer depends on Font Awesome rendering for visible play icons
 *         - PRESERVED: Existing white circular button treatment and hover states
 *   1.1.6 - IMPROVED: Replaced dark red video overlays with high-contrast white play buttons
 *         - IMPROVED: Added dark centered play icons for featured and mini video thumbnails
 *         - PRESERVED: Existing video layouts, sizing, and responsive behavior
 *   1.1.5 - FIXED: Matched the proven shared Latest Videos overlay structure exactly
 *         - FIXED: Play overlay now fills the thumbnail and centers its circular button
 *         - FIXED: Removed wrapper-dependent selector that prevented the rule from matching
 *         - PRESERVED: Love Bloom-only loading through the theme stylesheet
 *   1.1.4 - FIXED: Restored centered play icons on shared latest-video cards
 *         - ADDED: Love Bloom-scoped video thumbnail overlay styling
 *         - PRESERVED: Shared latest videos partial and other theme behavior
 *   1.1.3 - FIXED: Unified mobile hamburger button with shared nav.php markup
 *         - FIXED: Hamburger glyph is now visible and clickable on mobile
 *         - FIXED: Mobile menu opens above page content with reliable pointer events
 *         - PRESERVED: Shared navigation partial and theme-specific behavior
 *   1.1.2 - FIXED: Added missing homepage/archive main-content width container
 *         - IMPROVED: Unified Love Bloom content width and responsive gutters
 *         - PRESERVED: Theme-specific styling, layouts, and visual identity
 *   1.1.1 - FIXED: Site width constraint with proper container
 *         - FIXED: Text contrast for better readability
 *         - FIXED: Darker text colors on cream background
 *         - IMPROVED: Lead card text shadows for readability
 *   1.1.0 - ADDED: Navigation, dark footer, mobile support
 *   1.0.0 - Initial Love Bloom theme CSS
 */

/* ============================================================
   1. CSS VARIABLES / ROOT
   ============================================================ */
:root {
    /* ---- Colors - Updated for better contrast ---- */
    --love-bloom-cream: #FDF8F4;
    --love-bloom-stone: #F4ECE6;
    --love-bloom-espresso: #2D1F1C;
    --love-bloom-charcoal: #2D1F1C;
    --love-bloom-warm-charcoal: #3D2C2A;
    --love-bloom-rose: #8B353C;
    --love-bloom-rose-light: rgba(139, 53, 60, 0.08);
    --love-bloom-rose-medium: rgba(139, 53, 60, 0.15);
    --love-bloom-midnight: #1A2F3A;
    --love-bloom-midnight-light: rgba(26, 47, 58, 0.06);
    --love-bloom-gold: #9E7A0B;
    --love-bloom-gold-light: rgba(158, 122, 11, 0.12);
    --love-bloom-white: #FFFFFF;
    --love-bloom-off-white: rgba(255, 255, 255, 0.8);
    --love-bloom-shadow: rgba(45, 31, 28, 0.06);
    --love-bloom-shadow-hover: rgba(45, 31, 28, 0.12);

    /* ---- Typography ---- */
    --love-bloom-font-heading: 'Playfair Display', serif;
    --love-bloom-font-body: 'Lora', serif;
    --love-bloom-font-ui: 'Montserrat', sans-serif;

    /* ---- Spacing ---- */
    --love-bloom-spacing-xs: 0.25rem;
    --love-bloom-spacing-sm: 0.5rem;
    --love-bloom-spacing-md: 1rem;
    --love-bloom-spacing-lg: 2rem;
    --love-bloom-spacing-xl: 3rem;
    --love-bloom-spacing-xxl: 4rem;

    /* ---- Border Radius ---- */
    --love-bloom-radius-sm: 8px;
    --love-bloom-radius-md: 16px;
    --love-bloom-radius-lg: 24px;
    --love-bloom-radius-xl: 32px;
    --love-bloom-radius-full: 9999px;

    /* ---- Transitions ---- */
    --love-bloom-transition-fast: 0.2s ease;
    --love-bloom-transition-med: 0.3s ease;
    --love-bloom-transition-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* ---- Layout ---- */
    --love-bloom-content-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--love-bloom-cream);
    background-image:
        radial-gradient(ellipse at 10% 20%, rgba(139, 53, 60, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 80%, rgba(26, 47, 58, 0.03) 0%, transparent 60%);
    color: var(--love-bloom-charcoal);
    font-family: var(--love-bloom-font-body);
    font-weight: 400;
    line-height: 1.8;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle paper texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233d2c2a' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

a {
    color: var(--love-bloom-espresso);
    text-decoration: none;
    transition: color var(--love-bloom-transition-fast);
}

a:hover {
    color: var(--love-bloom-rose);
}

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

/* ============================================================
   3. PAGE SHELL & CONTAINER
   ============================================================ */
.love_bloom_page-shell {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: rgba(253, 248, 244, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: var(--love-bloom-radius-xl);
    box-shadow:
        0 20px 60px rgba(61, 44, 42, 0.06),
        0 8px 24px rgba(61, 44, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.love_bloom_container,
.love_bloom_main-content {
    width: min(var(--love-bloom-content-width), calc(100% - 3rem));
    margin-left: auto;
    margin-right: auto;
}

.love_bloom_container {
    padding: 0;
}

.love_bloom_main-content {
    padding-top: 1rem;
}

/* Prevent compounded spacing directly below the homepage hero. */
.love_bloom_main-content>section:first-child>.love_bloom_section-head {
    margin-top: 0;
}

/* ============================================================
   4. TYPOGRAPHY - UPDATED FOR BETTER CONTRAST
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--love-bloom-font-heading);
    color: var(--love-bloom-espresso);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.2rem;
}

p,
li,
span,
.excerpt,
.love_bloom_hero-copy {
    color: var(--love-bloom-charcoal);
}

.love_bloom_section-kicker {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--love-bloom-rose);
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.love_bloom_section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0;
    color: var(--love-bloom-espresso);
}

.love_bloom_section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 3.2rem 0 1.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(61, 44, 42, 0.04);
}

.love_bloom_section-link {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--love-bloom-rose);
    font-weight: 500;
    border-bottom: 1px solid rgba(139, 53, 60, 0.2);
    padding-bottom: 2px;
    transition: all var(--love-bloom-transition-fast);
}

.love_bloom_section-link:hover {
    color: var(--love-bloom-espresso);
    border-bottom-color: var(--love-bloom-espresso);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.love_bloom_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--love-bloom-font-ui);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.75rem 2rem;
    border-radius: var(--love-bloom-radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--love-bloom-transition-med);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.love_bloom_btn-primary {
    background: var(--love-bloom-espresso);
    color: var(--love-bloom-cream);
    box-shadow: 0 4px 16px rgba(61, 44, 42, 0.1);
}

.love_bloom_btn-primary:hover {
    background: var(--love-bloom-rose);
    color: var(--love-bloom-cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(139, 53, 60, 0.2);
}

.love_bloom_btn-ghost {
    background: transparent;
    color: var(--love-bloom-espresso);
    border: 1px solid rgba(61, 44, 42, 0.15);
}

.love_bloom_btn-ghost:hover {
    background: var(--love-bloom-espresso);
    color: var(--love-bloom-cream);
    border-color: var(--love-bloom-espresso);
    transform: translateY(-2px);
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.love_bloom_nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 44, 42, 0.06);
    padding: 0 1.5rem;
    font-family: var(--love-bloom-font-ui);
}

.love_bloom_nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: clamp(1rem, 2vw, 2rem);
}

/* Brand */
.love_bloom_nav-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: clamp(190px, 22vw, 280px);
    min-width: 0;
    text-decoration: none;
}

.love_bloom_nav-logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    object-position: left center;
}

/* Navigation Links */
.love_bloom_nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.love_bloom_nav-links li {
    margin: 0;
}

.love_bloom_nav-links a {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--love-bloom-charcoal);
    text-decoration: none;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    transition: all var(--love-bloom-transition-fast);
}

.love_bloom_nav-links a:hover {
    color: var(--love-bloom-rose);
    border-bottom-color: var(--love-bloom-rose);
}

.love_bloom_nav-links a[aria-current="page"] {
    color: var(--love-bloom-rose);
    border-bottom-color: var(--love-bloom-rose);
}

/* Navigation Actions */
.love_bloom_nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.love_bloom_nav-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(61, 44, 42, 0.08);
    color: var(--love-bloom-charcoal);
    cursor: pointer;
    transition: all var(--love-bloom-transition-fast);
    font-size: 0.9rem;
}

.love_bloom_nav-search:hover {
    background: var(--love-bloom-rose-light);
    border-color: var(--love-bloom-rose);
    color: var(--love-bloom-rose);
}

.love_bloom_nav-login {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--love-bloom-charcoal);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    transition: color var(--love-bloom-transition-fast);
}

.love_bloom_nav-login:hover {
    color: var(--love-bloom-rose);
}

.love_bloom_nav-cta {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--love-bloom-cream);
    background: var(--love-bloom-espresso);
    padding: 0.5rem 1.4rem;
    border-radius: var(--love-bloom-radius-full);
    text-decoration: none;
    transition: all var(--love-bloom-transition-med);
    box-shadow: 0 4px 12px rgba(61, 44, 42, 0.08);
}

.love_bloom_nav-cta:hover {
    background: var(--love-bloom-rose);
    color: var(--love-bloom-cream);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(139, 53, 60, 0.2);
}

/* Hamburger (Mobile) */
.love_bloom_hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background var(--love-bloom-transition-fast);
}

.love_bloom_hamburger:hover {
    background: var(--love-bloom-rose-light);
}

.love_bloom_hamburger span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    color: var(--love-bloom-espresso);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    transition: color var(--love-bloom-transition-fast);
}

/* Search Overlay */
.love_bloom_search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 31, 28, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--love-bloom-transition-med);
}

.love_bloom_search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.love_bloom_search-overlay-inner {
    max-width: 600px;
    width: 90%;
    padding: 2rem;
    position: relative;
}

.love_bloom_search-overlay input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--love-bloom-radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--love-bloom-cream);
    font-size: 1.2rem;
    font-family: var(--love-bloom-font-body);
    transition: border-color var(--love-bloom-transition-fast);
}

.love_bloom_search-overlay input:focus {
    outline: none;
    border-color: var(--love-bloom-rose);
}

.love_bloom_search-overlay input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.love_bloom_search-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: var(--love-bloom-cream);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--love-bloom-transition-fast);
    padding: 0.5rem;
    line-height: 1;
}

.love_bloom_search-close:hover {
    opacity: 1;
}

/* ============================================================
   7. HERO
   ============================================================ */
.love_bloom_hero {
    background: linear-gradient(135deg, rgba(244, 236, 230, 0.6) 0%, rgba(253, 248, 244, 0.8) 100%);
    padding: 3.2rem 3.5rem;
    border-radius: var(--love-bloom-radius-xl);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 20px 50px rgba(61, 44, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    width: min(var(--love-bloom-content-width), calc(100% - 3rem));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.love_bloom_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(139, 53, 60, 0.04), transparent 60%);
    pointer-events: none;
}

.love_bloom_hero-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.love_bloom_hero-content {
    flex: 1.6;
    min-width: 280px;
}

.love_bloom_eyebrow {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--love-bloom-rose);
    font-weight: 500;
    margin-bottom: 0.6rem;
    opacity: 0.8;
}

.love_bloom_hero-title {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.love_bloom_hero-title a {
    color: var(--love-bloom-espresso);
}

.love_bloom_hero-title a:hover {
    color: var(--love-bloom-rose);
}

.love_bloom_hero-copy {
    font-size: 1.2rem;
    color: var(--love-bloom-charcoal);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.8;
}

.love_bloom_hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.love_bloom_hero-panel {
    flex: 1;
    min-width: 200px;
    background: rgba(253, 248, 244, 0.6);
    border-radius: var(--love-bloom-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(61, 44, 42, 0.04);
}

.love_bloom_hero-panel-image {
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.love_bloom_hero-panel-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--love-bloom-font-ui);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--love-bloom-rose);
    color: var(--love-bloom-cream);
    padding: 0.25rem 1rem;
    border-radius: var(--love-bloom-radius-full);
}

.love_bloom_hero-panel-body {
    padding: 1.5rem;
}

.love_bloom_hero-panel-body h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.love_bloom_hero-panel-body h2 a {
    color: var(--love-bloom-espresso);
}

.love_bloom_hero-panel-body h2 a:hover {
    color: var(--love-bloom-rose);
}

.love_bloom_hero-panel-body p {
    font-size: 0.95rem;
    color: var(--love-bloom-charcoal);
    margin-bottom: 0.75rem;
}

.love_bloom_hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--love-bloom-font-ui);
    font-size: 0.7rem;
    color: #5F4E47;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.love_bloom_hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ============================================================
   8. TAGS
   ============================================================ */
.love_bloom_tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--love-bloom-font-ui);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    border-radius: var(--love-bloom-radius-full);
    border: 1px solid transparent;
    margin-bottom: 0.5rem;
}

.love_bloom_tag-romance {
    background: var(--love-bloom-rose-light);
    color: var(--love-bloom-rose);
    border-color: rgba(139, 53, 60, 0.1);
}

.love_bloom_tag-mystery {
    background: var(--love-bloom-midnight-light);
    color: var(--love-bloom-midnight);
    border-color: rgba(26, 47, 58, 0.08);
}

/* ============================================================
   9. BLOG CARDS
   ============================================================ */
.love_bloom_blog-card {
    background: rgba(253, 248, 244, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: var(--love-bloom-radius-lg);
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(61, 44, 42, 0.04),
        0 2px 8px rgba(61, 44, 42, 0.02);
    transition: all var(--love-bloom-transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.love_bloom_blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 53, 60, 0.02), transparent 50%);
    opacity: 0;
    transition: opacity var(--love-bloom-transition-slow);
    pointer-events: none;
    border-radius: var(--love-bloom-radius-lg);
}

.love_bloom_blog-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 64px rgba(61, 44, 42, 0.08),
        0 8px 24px rgba(61, 44, 42, 0.04);
    border-color: rgba(139, 53, 60, 0.08);
    background: rgba(253, 248, 244, 0.9);
}

.love_bloom_blog-card:hover::before {
    opacity: 1;
}

.love_bloom_blog-image {
    display: block;
    overflow: hidden;
    height: 200px;
}

.love_bloom_blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--love-bloom-transition-slow);
}

.love_bloom_blog-card:hover .love_bloom_blog-image img {
    transform: scale(1.03);
}

.love_bloom_blog-body {
    padding: 1.4rem 1.8rem 1.2rem;
}

.love_bloom_blog-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.love_bloom_blog-body h3 a {
    color: var(--love-bloom-espresso);
}

.love_bloom_blog-body h3 a:hover {
    color: var(--love-bloom-rose);
}

.love_bloom_blog-body .excerpt {
    font-size: 0.95rem;
    color: var(--love-bloom-charcoal);
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-weight: 400;
}

.love_bloom_card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(61, 44, 42, 0.04);
    padding-top: 0.8rem;
    margin-top: 0.2rem;
}

.love_bloom_author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.love_bloom_author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--love-bloom-stone);
    color: var(--love-bloom-warm-charcoal);
    font-size: 0.7rem;
}

.love_bloom_author-name {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--love-bloom-warm-charcoal);
}

.love_bloom_author-name:hover {
    color: var(--love-bloom-rose);
}

.love_bloom_read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--love-bloom-rose-light);
    color: var(--love-bloom-rose);
    transition: all var(--love-bloom-transition-med);
}

.love_bloom_read-more:hover {
    background: var(--love-bloom-rose);
    color: var(--love-bloom-cream);
    transform: translateX(2px);
}

/* ============================================================
   10. ARTICLE GRID
   ============================================================ */
.love_bloom_article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.love_bloom_content-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.love_bloom_content-primary {
    flex: 2;
    min-width: 0;
}

/* ============================================================
   11. EDITORIAL GRID (Lead + Side Stack)
   ============================================================ */
.love_bloom_editorial-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.love_bloom_lead-card {
    border-radius: var(--love-bloom-radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    position: relative;
    transition: all var(--love-bloom-transition-slow);
}

.love_bloom_lead-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(61, 44, 42, 0.08);
}

.love_bloom_lead-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    height: 100%;
    min-height: 400px;
    color: var(--love-bloom-cream);
    text-decoration: none;
}

.love_bloom_lead-content .love_bloom_tag {
    background: var(--love-bloom-rose);
    color: var(--love-bloom-cream);
    border-color: transparent;
    align-self: flex-start;
}

.love_bloom_lead-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--love-bloom-cream);
    margin: 0.5rem 0;
    max-width: 80%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.love_bloom_lead-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 70%;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.love_bloom_article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--love-bloom-font-ui);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.love_bloom_article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.love_bloom_side-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.love_bloom_side-card {
    display: flex;
    gap: 1rem;
    background: rgba(253, 248, 244, 0.6);
    border-radius: var(--love-bloom-radius-md);
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--love-bloom-transition-slow);
}

.love_bloom_side-card:hover {
    transform: translateX(4px);
    background: rgba(253, 248, 244, 0.9);
    box-shadow: 0 8px 24px rgba(61, 44, 42, 0.04);
}

.love_bloom_side-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--love-bloom-radius-sm);
    background-size: cover;
    background-position: center;
}

.love_bloom_side-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.love_bloom_side-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0.25rem 0;
}

.love_bloom_side-content h3 a {
    color: var(--love-bloom-espresso);
}

.love_bloom_side-content h3 a:hover {
    color: var(--love-bloom-rose);
}

.love_bloom_side-content p {
    font-size: 0.85rem;
    color: var(--love-bloom-charcoal);
    margin-bottom: 0.25rem;
}

.love_bloom_side-meta {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.65rem;
    color: #5F4E47;
    display: flex;
    gap: 0.75rem;
    font-weight: 400;
}

/* ============================================================
   12. SIDEBAR
   ============================================================ */
.love_bloom_sidebar {
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.love_bloom_sidebar-card {
    background: rgba(253, 248, 244, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: var(--love-bloom-radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(61, 44, 42, 0.02);
}

.love_bloom_sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(61, 44, 42, 0.04);
    padding-bottom: 0.5rem;
    color: var(--love-bloom-espresso);
}

.love_bloom_sidebar-card .newsletter-description {
    font-size: 0.9rem;
    color: var(--love-bloom-charcoal);
    margin-bottom: 0.75rem;
}

/* ============================================================
   13. TRENDING LIST
   ============================================================ */
.love_bloom_trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: trending-counter;
}

.love_bloom_trending-list li {
    counter-increment: trending-counter;
    padding: 0.5rem 0 0.5rem 2.2rem;
    position: relative;
    border-bottom: 1px solid rgba(61, 44, 42, 0.03);
    font-size: 0.9rem;
    line-height: 1.5;
}

.love_bloom_trending-list li:last-child {
    border-bottom: none;
}

.love_bloom_trending-list li::before {
    content: counter(trending-counter);
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-family: var(--love-bloom-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--love-bloom-rose);
    opacity: 0.5;
    width: 1.5rem;
    text-align: center;
}

.love_bloom_trending-list li a {
    color: var(--love-bloom-charcoal);
}

.love_bloom_trending-list li a:hover {
    color: var(--love-bloom-rose);
}

.love_bloom_trending-list li span {
    color: var(--love-bloom-warm-charcoal);
}

/* ============================================================
   14. ADS
   ============================================================ */
.love_bloom_ad-slot {
    background: rgba(244, 236, 230, 0.3);
    border-radius: var(--love-bloom-radius-lg);
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--love-bloom-transition-fast);
}

.love_bloom_ad-slot:hover {
    background: rgba(244, 236, 230, 0.5);
}

.love_bloom_ad-label {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5F4E47;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.love_bloom_ad-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.love_bloom_ad-content strong {
    font-family: var(--love-bloom-font-heading);
    font-size: 1rem;
    color: var(--love-bloom-espresso);
}

.love_bloom_ad-content span {
    font-size: 0.85rem;
    color: var(--love-bloom-charcoal);
}

.love_bloom_ad-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--love-bloom-font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--love-bloom-rose);
    margin-top: 0.3rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all var(--love-bloom-transition-fast);
}

.love_bloom_ad-button:hover {
    color: var(--love-bloom-espresso);
    border-bottom-color: var(--love-bloom-espresso);
}

.love_bloom_sidebar-ad-image-link {
    display: block;
    margin-bottom: 0.75rem;
    border-radius: var(--love-bloom-radius-sm);
    overflow: hidden;
}

.love_bloom_sidebar-ad-image-link img {
    width: 100%;
    height: auto;
}

.love_bloom_ad-sponsored {
    background: rgba(244, 236, 230, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: var(--love-bloom-radius-lg);
    padding: 1.8rem 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(61, 44, 42, 0.02);
}

.love_bloom_ad-sponsored .love_bloom_ad-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.love_bloom_ad-sponsored .love_bloom_ad-content strong {
    font-size: 1.2rem;
}

.love_bloom_ad-footer {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.65rem;
    color: #5F4E47;
    margin-top: 0.3rem;
}


/* ============================================================
   14A. PREMIUM PARTNER SPOTLIGHT
   Shared partial: views/partials/partner_spotlight.php
   ============================================================ */
.partner-spotlight-section {
    width: 100%;
    margin: 3.5rem 0 4rem;
}

.partner-spotlight {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    border-radius: var(--love-bloom-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.32);
    background:
        linear-gradient(90deg,
            rgba(32, 20, 19, 0.94) 0%,
            rgba(45, 31, 28, 0.80) 44%,
            rgba(45, 31, 28, 0.22) 78%,
            rgba(45, 31, 28, 0.08) 100%),
        var(--partner-bg) center / cover no-repeat fixed;
    box-shadow:
        0 30px 70px rgba(45, 31, 28, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition:
        transform var(--love-bloom-transition-slow),
        box-shadow var(--love-bloom-transition-slow);
}

.partner-spotlight::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 82% 18%, rgba(158, 122, 11, 0.26), transparent 28%),
        radial-gradient(circle at 92% 86%, rgba(139, 53, 60, 0.26), transparent 26%);
    pointer-events: none;
}

.partner-spotlight:hover {
    transform: translateY(-4px);
    box-shadow:
        0 38px 90px rgba(45, 31, 28, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.partner-content {
    position: relative;
    z-index: 2;
    width: min(100%, 670px);
    padding: clamp(2rem, 5vw, 4rem);
    color: var(--love-bloom-cream);
}

.partner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
    padding: 0.48rem 0.85rem;
    border-radius: var(--love-bloom-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    color: var(--love-bloom-cream);
    font-family: var(--love-bloom-font-ui);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.partner-eyebrow span {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #d8aa61;
    box-shadow: 0 0 0 4px rgba(216, 170, 97, 0.14);
}

.partner-title {
    max-width: 650px;
    margin: 0 0 1rem;
    color: var(--love-bloom-white);
    font-family: var(--love-bloom-font-heading);
    font-size: clamp(2.25rem, 5vw, 4.35rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.34);
}

.partner-text {
    max-width: 590px;
    margin-bottom: 1.6rem;
    color: rgba(255, 255, 255, 0.84);
    font-family: var(--love-bloom-font-ui);
    font-size: 0.96rem;
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.partner-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 1.35rem;
    border-radius: var(--love-bloom-radius-full);
    background: var(--love-bloom-white);
    color: var(--love-bloom-espresso);
    font-family: var(--love-bloom-font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    transition:
        transform var(--love-bloom-transition-med),
        background var(--love-bloom-transition-med),
        color var(--love-bloom-transition-med),
        box-shadow var(--love-bloom-transition-med);
}

.partner-btn:hover {
    transform: translateY(-3px);
    background: var(--love-bloom-rose);
    color: var(--love-bloom-white);
    box-shadow: 0 20px 42px rgba(139, 53, 60, 0.32);
}

.partner-note {
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--love-bloom-font-ui);
    font-size: 0.72rem;
    font-weight: 500;
}

/* ============================================================
   14B. HIGH-VISIBILITY AD PLACEMENTS
   ============================================================ */
.love_bloom_sidebar-ad {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    padding: 0;
    border: 1px solid rgba(139, 53, 60, 0.18);
    background:
        radial-gradient(circle at 92% 10%, rgba(158, 122, 11, 0.12), transparent 9rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 236, 230, 0.88));
    box-shadow:
        0 18px 42px rgba(45, 31, 28, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.love_bloom_sidebar-ad:hover {
    background:
        radial-gradient(circle at 92% 10%, rgba(158, 122, 11, 0.16), transparent 9rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 236, 230, 0.94));
    border-color: rgba(139, 53, 60, 0.30);
    box-shadow:
        0 24px 56px rgba(45, 31, 28, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: translateY(-3px);
}

.love_bloom_sidebar-ad .love_bloom_sidebar-ad-image-link {
    height: 155px;
    margin: 0;
    border-radius: 0;
}

.love_bloom_sidebar-ad .love_bloom_sidebar-ad-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.love_bloom_sidebar-ad .love_bloom_ad-content {
    min-height: 245px;
    padding: 1.5rem;
    justify-content: center;
}

.love_bloom_sidebar-ad:has(.love_bloom_sidebar-ad-image-link) .love_bloom_ad-content {
    min-height: 0;
}

.love_bloom_sidebar-ad .love_bloom_ad-label {
    width: fit-content;
    margin-bottom: 0.85rem;
    padding: 0.36rem 0.7rem;
    border-radius: var(--love-bloom-radius-full);
    background: var(--love-bloom-rose);
    color: var(--love-bloom-white);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.love_bloom_sidebar-ad .love_bloom_ad-content strong {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--love-bloom-espresso);
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    line-height: 1.04;
}

.love_bloom_sidebar-ad .love_bloom_ad-content span:not(.love_bloom_ad-label) {
    display: block;
    color: var(--love-bloom-warm-charcoal);
    font-size: 0.9rem;
    line-height: 1.65;
}

.love_bloom_sidebar-ad .love_bloom_ad-button {
    width: fit-content;
    min-height: 42px;
    margin-top: 1.15rem;
    padding: 0 1rem;
    border: 0;
    border-radius: var(--love-bloom-radius-full);
    background: var(--love-bloom-espresso);
    color: var(--love-bloom-white);
    font-size: 0.68rem;
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(45, 31, 28, 0.18);
}

.love_bloom_sidebar-ad .love_bloom_ad-button:hover {
    background: var(--love-bloom-rose);
    color: var(--love-bloom-white);
    transform: translateX(3px);
}

/* Retained inline sponsored card, if used elsewhere */
.love_bloom_ad-sponsored {
    position: relative;
    overflow: hidden;
    padding: clamp(1.8rem, 4vw, 3rem);
    border: 1px solid rgba(139, 53, 60, 0.18);
    background:
        radial-gradient(circle at 88% 12%, rgba(158, 122, 11, 0.14), transparent 16rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 236, 230, 0.92));
    box-shadow: 0 20px 50px rgba(45, 31, 28, 0.10);
}

.love_bloom_ad-sponsored .love_bloom_ad-label {
    width: fit-content;
    padding: 0.36rem 0.75rem;
    border-radius: var(--love-bloom-radius-full);
    background: var(--love-bloom-rose);
    color: var(--love-bloom-white);
}

.love_bloom_ad-sponsored .love_bloom_ad-content strong {
    margin-top: 0.65rem;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.02;
}

.love_bloom_ad-sponsored .love_bloom_ad-button {
    width: fit-content;
    min-height: 44px;
    margin-top: 1rem;
    padding: 0 1.1rem;
    border: 0;
    border-radius: var(--love-bloom-radius-full);
    background: var(--love-bloom-espresso);
    color: var(--love-bloom-white);
}

@media (max-width: 800px) {
    .partner-spotlight {
        min-height: 360px;
        background:
            linear-gradient(180deg,
                rgba(32, 20, 19, 0.58) 0%,
                rgba(45, 31, 28, 0.92) 100%),
            var(--partner-bg) center / cover no-repeat;
        background-attachment: scroll;
    }

    .partner-content {
        align-self: flex-end;
        padding: 2rem 1.5rem;
    }

    .partner-title {
        font-size: clamp(2rem, 9vw, 3.25rem);
    }
}

@media (max-width: 480px) {
    .partner-spotlight-section {
        margin: 2.5rem 0 3rem;
    }

    .partner-spotlight {
        min-height: 420px;
        border-radius: var(--love-bloom-radius-lg);
    }

    .partner-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .partner-btn {
        width: 100%;
    }

    .partner-note {
        line-height: 1.5;
    }
}


/* ============================================================
   14C. PREMIUM EDITORIAL FEATURES
   ============================================================ */
.love_bloom_tonight {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    min-height: 420px;
    margin: 4rem 0;
    overflow: hidden;
    border-radius: var(--love-bloom-radius-xl);
    background: var(--love-bloom-espresso);
    box-shadow: 0 28px 70px rgba(45, 31, 28, .18)
}

.love_bloom_tonight-image {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease
}

.love_bloom_tonight:hover .love_bloom_tonight-image {
    transform: scale(1.035)
}

.love_bloom_tonight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem);
    background: radial-gradient(circle at 90% 12%, rgba(158, 122, 11, .16), transparent 13rem), var(--love-bloom-espresso)
}

.love_bloom_tonight-content .love_bloom_section-kicker {
    color: #d8aa61
}

.love_bloom_tonight-content h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: .98
}

.love_bloom_tonight-content p {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, .76);
    line-height: 1.75
}

.love_bloom_story-atmosphere {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 1.5rem
}

.love_bloom_story-atmosphere span {
    padding: .42rem .72rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .78);
    font-family: var(--love-bloom-font-ui);
    font-size: .62rem
}

.love_bloom_tonight .love_bloom_btn-primary {
    width: fit-content;
    background: #fff;
    color: var(--love-bloom-espresso)
}

.love_bloom_collections {
    margin: 4rem 0
}

.love_bloom_collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem
}

.love_bloom_collection-card {
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--love-bloom-radius-lg);
    background: linear-gradient(180deg, rgba(45, 31, 28, .06), rgba(45, 31, 28, .9)), var(--collection-image) center/cover no-repeat;
    box-shadow: 0 16px 40px rgba(45, 31, 28, .12);
    transition: .35s ease
}

.love_bloom_collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(45, 31, 28, .18)
}

.love_bloom_collection-link {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: #fff
}

.love_bloom_collection-number {
    color: rgba(255, 255, 255, .62);
    font-family: var(--love-bloom-font-ui);
    font-size: .72rem;
    letter-spacing: .16em
}

.love_bloom_collection-label {
    display: block;
    margin-bottom: .5rem;
    color: #e4bc78;
    font-family: var(--love-bloom-font-ui);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .12em
}

.love_bloom_collection-copy h3 {
    margin-bottom: .4rem;
    color: #fff;
    font-size: 2rem;
    line-height: 1.02
}

.love_bloom_collection-copy p {
    color: rgba(255, 255, 255, .72);
    font-family: var(--love-bloom-font-ui);
    font-size: .72rem
}

.love_bloom_pull-quote {
    max-width: 900px;
    margin: 4.5rem auto;
    padding: 1rem 4rem;
    text-align: center
}

.love_bloom_pull-quote>span {
    display: block;
    height: 2.8rem;
    color: var(--love-bloom-rose);
    font-family: var(--love-bloom-font-heading);
    font-size: 5rem;
    line-height: 1;
    opacity: .3
}

.love_bloom_pull-quote p {
    font-family: var(--love-bloom-font-heading);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-style: italic;
    line-height: 1.25
}

.love_bloom_pull-quote cite {
    display: block;
    margin-top: 1rem;
    color: #6b564f;
    font-family: var(--love-bloom-font-ui);
    font-size: .65rem;
    font-style: normal;
    letter-spacing: .12em;
    text-transform: uppercase
}

.love_bloom_author-spotlight {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
    margin: 4rem 0;
    overflow: hidden;
    border: 1px solid rgba(139, 53, 60, .12);
    border-radius: var(--love-bloom-radius-xl);
    background: radial-gradient(circle at 86% 12%, rgba(158, 122, 11, .1), transparent 15rem), rgba(255, 255, 255, .72);
    box-shadow: 0 24px 60px rgba(45, 31, 28, .1)
}

.love_bloom_author-spotlight-image {
    min-height: 430px;
    overflow: hidden
}

.love_bloom_author-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease
}

.love_bloom_author-spotlight:hover .love_bloom_author-spotlight-image img {
    transform: scale(1.03)
}

.love_bloom_author-spotlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem)
}

.love_bloom_author-spotlight-content h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: .98
}

.love_bloom_author-signature {
    margin: 1.25rem 0 1.5rem;
    color: var(--love-bloom-rose);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(2rem, 4vw, 3.2rem);
    transform: rotate(-3deg);
    transform-origin: left center
}

.love_bloom_author-spotlight-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.love_bloom_author-socials {
    display: flex;
    gap: .55rem
}

.love_bloom_author-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(45, 31, 28, .1);
    border-radius: 50%;
    background: #fff
}

.love_bloom_author-socials a:hover {
    background: var(--love-bloom-rose);
    color: #fff;
    transform: translateY(-2px)
}

@media(max-width:900px) {

    .love_bloom_tonight,
    .love_bloom_author-spotlight {
        grid-template-columns: 1fr
    }

    .love_bloom_collection-grid {
        grid-template-columns: 1fr 1fr
    }

    .love_bloom_tonight-image {
        min-height: 300px
    }
}

@media(max-width:620px) {
    .love_bloom_collection-grid {
        grid-template-columns: 1fr
    }

    .love_bloom_pull-quote {
        padding: 1rem .75rem
    }

    .love_bloom_author-spotlight-actions {
        align-items: flex-start;
        flex-direction: column
    }

    .love_bloom_author-spotlight-actions .love_bloom_btn {
        width: 100%;
        justify-content: center
    }
}

/* ============================================================
   15. NEWSLETTER
   ============================================================ */
.love_bloom_newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    position: relative;
}

.love_bloom_newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(61, 44, 42, 0.1);
    border-radius: var(--love-bloom-radius-full);
    font-family: var(--love-bloom-font-body);
    font-size: 0.9rem;
    background: var(--love-bloom-cream);
    color: var(--love-bloom-espresso);
    transition: all var(--love-bloom-transition-fast);
}

.love_bloom_newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--love-bloom-rose);
    box-shadow: 0 0 0 3px rgba(139, 53, 60, 0.1);
}

.love_bloom_newsletter-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    background: var(--love-bloom-espresso);
    color: var(--love-bloom-cream);
    border: none;
    border-radius: var(--love-bloom-radius-full);
    cursor: pointer;
    transition: all var(--love-bloom-transition-med);
    font-size: 1rem;
}

.love_bloom_newsletter-form button:hover {
    background: var(--love-bloom-rose);
    transform: translateX(2px);
}

.love_bloom_privacy-note {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.6rem;
    color: #5F4E47;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}

/* Newsletter panel in homepage */
.love_bloom_journal-note {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin: 4rem 0 2rem;
    padding: 2.5rem;
    background: rgba(244, 236, 230, 0.3);
    border-radius: var(--love-bloom-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.love_bloom_quote-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
    border-right: 1px solid rgba(61, 44, 42, 0.06);
}

.love_bloom_quote-mark {
    font-family: var(--love-bloom-font-heading);
    font-size: 4rem;
    color: var(--love-bloom-rose);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -0.5rem;
}

.love_bloom_quote-panel p {
    font-family: var(--love-bloom-font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--love-bloom-espresso);
}

.love_bloom_quote-panel span {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5F4E47;
    margin-top: 0.5rem;
}

.love_bloom_newsletter-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.love_bloom_newsletter-panel .love_bloom_section-kicker {
    margin-bottom: 0.25rem;
}

.love_bloom_newsletter-panel h2 {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    color: var(--love-bloom-espresso);
}

.love_bloom_newsletter-panel p {
    color: var(--love-bloom-charcoal);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.love_bloom_newsletter-panel .love_bloom_newsletter-form {
    max-width: 400px;
}

/* ============================================================
   16. FOOTER - Dark Version for Contrast
   ============================================================ */
.love_bloom_footer {
    margin-top: 4rem;
    padding: 3rem 2.5rem 1.5rem;
    background: var(--love-bloom-espresso);
    border-radius: var(--love-bloom-radius-lg);
    color: rgba(255, 255, 255, 0.8);
    border-top: none;
}

.love_bloom_footer-inner {
    width: min(var(--love-bloom-content-width), 100%);
    margin: 0 auto;
}

.love_bloom_footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.love_bloom_footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--love-bloom-cream);
}

.love_bloom_footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.love_bloom_footer-col ul li {
    margin-bottom: 0.4rem;
}

.love_bloom_footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--love-bloom-transition-fast);
}

.love_bloom_footer-col ul li a:hover {
    color: var(--love-bloom-rose);
}

.love_bloom_footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.love_bloom_footer-brand .brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--love-bloom-rose);
    color: var(--love-bloom-cream);
    font-size: 1.2rem;
}

.love_bloom_footer-brand .brand-name {
    font-family: var(--love-bloom-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--love-bloom-cream);
}

.love_bloom_footer-brand .brand-subtitle {
    display: block;
    font-family: var(--love-bloom-font-ui);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.love_bloom_footer-about {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
    margin-bottom: 1rem;
}

.love_bloom_footer-social {
    display: flex;
    gap: 1rem;
}

.love_bloom_footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--love-bloom-transition-med);
}

.love_bloom_footer-social a:hover {
    background: var(--love-bloom-rose);
    color: var(--love-bloom-cream);
    transform: translateY(-2px);
}

.love_bloom_mini-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.love_bloom_mini-form input[type="email"] {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--love-bloom-radius-full);
    font-family: var(--love-bloom-font-body);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--love-bloom-cream);
}

.love_bloom_mini-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.love_bloom_mini-form input[type="email"]:focus {
    outline: none;
    border-color: var(--love-bloom-rose);
}

.love_bloom_mini-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--love-bloom-rose);
    color: var(--love-bloom-cream);
    border: none;
    border-radius: var(--love-bloom-radius-full);
    cursor: pointer;
    transition: all var(--love-bloom-transition-med);
}

.love_bloom_mini-form button:hover {
    background: var(--love-bloom-cream);
    color: var(--love-bloom-espresso);
}

.love_bloom_footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--love-bloom-font-ui);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.love_bloom_footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.love_bloom_footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--love-bloom-transition-fast);
}

.love_bloom_footer-bottom-links a:hover {
    color: var(--love-bloom-rose);
}

.love_bloom_layout-toggle {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.love_bloom_layout-toggle a {
    color: rgba(255, 255, 255, 0.6);
}

.love_bloom_layout-toggle a:hover {
    color: var(--love-bloom-rose);
}

/* ============================================================
   17. VIDEO SECTION
   ============================================================ */
.love_bloom_video-section {
    margin: 3rem 0 2rem;
}

.love_bloom_video-section-compact {
    margin: 2rem 0;
}

.love_bloom_video-shell {
    background: rgba(244, 236, 230, 0.2);
    border-radius: var(--love-bloom-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.love_bloom_video-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
}

.love_bloom_video-player {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.love_bloom_video-player .love_bloom_play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--love-bloom-espresso);
    border: 1px solid rgba(255, 255, 255, 0.72);
    font-size: 1.45rem;
    cursor: pointer;
    transition: all var(--love-bloom-transition-med);
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 32px rgba(45, 31, 28, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.love_bloom_video-player .love_bloom_play-button i,
.love_bloom_video-player .love_bloom_play-button svg {
    display: none;
}

.love_bloom_video-player .love_bloom_play-button::before {
    content: "▶";
    display: block;
    margin-left: 4px;
    color: var(--love-bloom-espresso);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}

.love_bloom_video-player .love_bloom_play-button:hover {
    background: var(--love-bloom-white);
    color: var(--love-bloom-rose);
    transform: scale(1.07);
    box-shadow: 0 16px 38px rgba(45, 31, 28, 0.34);
}

.love_bloom_video-player .love_bloom_play-button:hover::before {
    color: var(--love-bloom-rose);
}

.love_bloom_video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(180deg, transparent, rgba(45, 31, 28, 0.7));
    color: var(--love-bloom-cream);
}

.love_bloom_video-caption .love_bloom_tag {
    background: var(--love-bloom-rose);
    color: var(--love-bloom-cream);
    border-color: transparent;
}

.love_bloom_video-caption h2 {
    font-size: 1.3rem;
    color: var(--love-bloom-cream);
    margin: 0.25rem 0;
}

.love_bloom_video-caption p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 80%;
}

.love_bloom_video-side {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(253, 248, 244, 0.3);
}

.love_bloom_video-mini {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--love-bloom-radius-sm);
    cursor: pointer;
    transition: all var(--love-bloom-transition-fast);
}

.love_bloom_video-mini:hover {
    background: rgba(253, 248, 244, 0.5);
}

.love_bloom_video-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 68px;
    border-radius: var(--love-bloom-radius-sm);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.love_bloom_video-thumb span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--love-bloom-espresso);
    font-size: 0.65rem;
    box-shadow: 0 6px 18px rgba(45, 31, 28, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.love_bloom_video-thumb span i,
.love_bloom_video-thumb span svg {
    display: none;
}

.love_bloom_video-thumb span::before {
    content: "▶";
    display: block;
    margin-left: 2px;
    color: var(--love-bloom-espresso);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.love_bloom_video-mini-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.love_bloom_video-mini-content h3 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.love_bloom_video-mini-content span {
    font-family: var(--love-bloom-font-ui);
    font-size: 0.6rem;
    color: #5F4E47;
}


/* Shared Latest Videos Partial - proven overlay structure */
.video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--love-bloom-stone);
}

.video-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
    transition: transform var(--love-bloom-transition-med);
}

.video-card:hover .video-thumb img {
    transform: scale(1.035);
}

.video-play-button {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid !important;
    place-items: center;
    pointer-events: none;
}

.video-play-button span {
    display: grid !important;
    place-items: center;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px;
    min-height: 58px;
    padding-left: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92) !important;
    color: var(--love-bloom-espresso) !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3rem !important;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(45, 31, 28, 0.22);
    opacity: 1 !important;
    visibility: visible !important;
    transition:
        transform var(--love-bloom-transition-med),
        background var(--love-bloom-transition-med),
        color var(--love-bloom-transition-med);
}

.video-thumb:hover .video-play-button span,
.video-thumb:focus-visible .video-play-button span {
    transform: scale(1.08);
    background: var(--love-bloom-rose) !important;
    color: var(--love-bloom-cream) !important;
}

@media (max-width: 480px) {
    .video-play-button span {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px;
        min-height: 50px;
        font-size: 1.1rem !important;
    }
}

/* ============================================================
   18. READING PROGRESS BAR
   ============================================================ */
.love_bloom_reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--love-bloom-rose);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 12px rgba(139, 53, 60, 0.2);
}

/* ============================================================
   19. PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    font-family: var(--love-bloom-font-ui);
    font-size: 0.85rem;
}

.pagination a {
    padding: 0.5rem 1.2rem;
    border-radius: var(--love-bloom-radius-full);
    transition: all var(--love-bloom-transition-fast);
}

.pagination .love_bloom_btn-ghost {
    border: 1px solid rgba(61, 44, 42, 0.1);
}

.pagination .love_bloom_btn-ghost:hover {
    background: var(--love-bloom-espresso);
    color: var(--love-bloom-cream);
}

.pagination span {
    color: var(--love-bloom-warm-charcoal);
}

/* ============================================================
   20. ARTICLE PAGE
   ============================================================ */
.love_bloom_article-page {
    width: min(var(--love-bloom-content-width), calc(100% - 3rem));
    margin: 0 auto;
}

.love_bloom_article-hero {
    position: relative;
    border-radius: var(--love-bloom-radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    background: var(--love-bloom-stone);
}

.love_bloom_article-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.love_bloom_article-hero .hero-copy {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(45, 31, 28, 0.7));
    color: var(--love-bloom-cream);
}

.love_bloom_article-hero .hero-copy h1 {
    font-size: 2.6rem;
    color: var(--love-bloom-cream);
    max-width: 80%;
}

.love_bloom_article-hero .hero-copy p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 70%;
}

.love_bloom_article-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.love_bloom_article-content {
    flex: 2;
    min-width: 0;
}

.love_bloom_article-content .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--love-bloom-font-ui);
    font-size: 0.8rem;
    color: #5F4E47;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(61, 44, 42, 0.04);
}

.love_bloom_article-content .article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.love_bloom_article-content .article-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--love-bloom-charcoal);
}

.love_bloom_article-content .article-body p {
    margin-bottom: 1.25rem;
}

.love_bloom_article-content .article-body h2,
.love_bloom_article-content .article-body h3 {
    margin: 2rem 0 0.75rem;
}

.love_bloom_article-content .article-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 2rem;
    border-left: 4px solid var(--love-bloom-rose);
    font-family: var(--love-bloom-font-heading);
    font-style: italic;
    font-size: 1.2rem;
    background: rgba(139, 53, 60, 0.04);
    border-radius: 0 var(--love-bloom-radius-sm) var(--love-bloom-radius-sm) 0;
}

.love_bloom_article-content .article-body img {
    border-radius: var(--love-bloom-radius-md);
    margin: 1.5rem 0;
}

/* Related Articles */
.love_bloom_related-articles {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(61, 44, 42, 0.04);
}

.love_bloom_related-articles h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--love-bloom-espresso);
}

.love_bloom_related-articles .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.love_bloom_related-articles .related-card {
    background: rgba(253, 248, 244, 0.5);
    border-radius: var(--love-bloom-radius-md);
    overflow: hidden;
    transition: all var(--love-bloom-transition-slow);
}

.love_bloom_related-articles .related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 44, 42, 0.06);
}

.love_bloom_related-articles .related-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.love_bloom_related-articles .related-card h3 {
    font-size: 1rem;
    padding: 0.75rem 1rem 0.5rem;
    font-weight: 600;
    color: var(--love-bloom-espresso);
}

.love_bloom_related-articles .related-card a {
    display: block;
    color: var(--love-bloom-espresso);
}

.love_bloom_related-articles .related-card a:hover {
    color: var(--love-bloom-rose);
}

/* Article Newsletter */
.love_bloom_article-newsletter {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(244, 236, 230, 0.3);
    border-radius: var(--love-bloom-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.love_bloom_article-newsletter h2 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    color: var(--love-bloom-espresso);
}

.love_bloom_article-newsletter .love_bloom_newsletter-form {
    max-width: 420px;
    margin: 1rem auto 0;
}

/* ============================================================
   21. RESPONSIVE
   ============================================================ */

/* Navigation logo scaling for narrower desktop and tablet widths. */
@media (max-width: 1080px) and (min-width: 769px) {
    .love_bloom_nav-brand {
        width: 210px;
    }

    .love_bloom_nav-links {
        gap: 1.25rem;
    }

    .love_bloom_nav-actions {
        gap: 0.5rem;
    }

    .love_bloom_nav-login {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .love_bloom_nav-cta {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .love_bloom_nav {
        padding: 0 1rem;
    }

    .love_bloom_nav-inner {
        height: 66px;
        gap: 0.75rem;
    }

    .love_bloom_nav-brand {
        width: min(220px, calc(100vw - 150px));
    }

    .love_bloom_nav-logo {
        max-height: 50px;
    }

    .love_bloom_nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--love-bloom-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem;
        transition: right var(--love-bloom-transition-med);
        box-shadow: -8px 0 32px rgba(61, 44, 42, 0.08);
        z-index: 1500;
        list-style: none;
        margin: 0;
    }

    .love_bloom_nav-links.open {
        right: 0;
    }

    .love_bloom_nav-links li {
        margin: 0;
    }

    .love_bloom_nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: none;
    }

    .love_bloom_nav-actions .love_bloom_nav-login,
    .love_bloom_nav-actions .love_bloom_nav-cta {
        display: none;
    }

    .love_bloom_hamburger {
        display: inline-flex !important;
        position: relative;
        z-index: 1601;
        flex: 0 0 40px;
        color: var(--love-bloom-espresso);
        pointer-events: auto;
    }

    .love_bloom_hamburger:hover span,
    .love_bloom_hamburger:focus-visible span {
        color: var(--love-bloom-rose);
    }

    .love_bloom_nav-links {
        z-index: 1600;
        pointer-events: none;
    }

    .love_bloom_nav-links.open {
        right: 0;
        pointer-events: auto;
    }

    /* Fix for body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .love_bloom_nav-brand {
        width: min(190px, calc(100vw - 136px));
    }

    .love_bloom_nav-logo {
        max-height: 46px;
    }
}

/* Main Responsive */
@media (max-width: 1024px) {

    .love_bloom_container,
    .love_bloom_main-content,
    .love_bloom_hero,
    .love_bloom_article-page {
        width: min(var(--love-bloom-content-width), calc(100% - 2rem));
    }

    .love_bloom_main-content {
        padding-top: 2.5rem;
    }

    .love_bloom_page-shell {
        padding: 1.5rem 1rem;
        border-radius: var(--love-bloom-radius-lg);
    }

    .love_bloom_article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .love_bloom_editorial-grid {
        grid-template-columns: 1fr;
    }

    .love_bloom_video-layout {
        grid-template-columns: 1fr;
    }

    .love_bloom_footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .love_bloom_content-layout {
        flex-direction: column;
    }

    .love_bloom_sidebar {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .love_bloom_sidebar>* {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 800px) {
    .love_bloom_hero {
        padding: 2rem 1.5rem;
    }

    .love_bloom_hero-inner {
        flex-direction: column;
    }

    .love_bloom_hero-title {
        font-size: 2.4rem;
    }

    .love_bloom_hero-panel {
        width: 100%;
    }

    .love_bloom_article-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .love_bloom_editorial-grid {
        grid-template-columns: 1fr;
    }

    .love_bloom_lead-content {
        padding: 1.5rem;
        min-height: 300px;
    }

    .love_bloom_lead-content h3 {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .love_bloom_lead-content p {
        max-width: 100%;
    }

    .love_bloom_side-card {
        flex-direction: column;
    }

    .love_bloom_side-image {
        width: 100%;
        height: 140px;
    }

    .love_bloom_journal-note {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .love_bloom_quote-panel {
        border-right: none;
        border-bottom: 1px solid rgba(61, 44, 42, 0.06);
        padding-right: 0;
        padding-bottom: 1rem;
    }

    .love_bloom_footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .love_bloom_footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .love_bloom_footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .love_bloom_article-hero img {
        height: 250px;
    }

    .love_bloom_article-hero .hero-copy h1 {
        font-size: 1.8rem;
        max-width: 100%;
    }

    .love_bloom_article-hero .hero-copy p {
        max-width: 100%;
    }

    .love_bloom_article-layout {
        flex-direction: column;
    }

    .love_bloom_related-articles .related-grid {
        grid-template-columns: 1fr;
    }

    .love_bloom_sidebar {
        flex-direction: column;
    }

    .love_bloom_sidebar>* {
        flex: 1;
        min-width: 0;
    }

    .love_bloom_article-newsletter {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {

    .love_bloom_container,
    .love_bloom_main-content,
    .love_bloom_hero,
    .love_bloom_article-page {
        width: calc(100% - 1.5rem);
    }

    .love_bloom_main-content {
        padding-top: 1.75rem;
    }

    .love_bloom_page-shell {
        padding: 1rem 0.75rem;
        border-radius: var(--love-bloom-radius-md);
    }

    .love_bloom_hero-title {
        font-size: 1.8rem;
    }

    .love_bloom_hero {
        padding: 1.5rem 1rem;
    }

    .love_bloom_hero-panel-image {
        height: 150px;
    }

    .love_bloom_section-title {
        font-size: 1.6rem;
    }

    .love_bloom_btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }

    .love_bloom_hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .love_bloom_hero-buttons .love_bloom_btn {
        width: 100%;
        justify-content: center;
    }

    .love_bloom_video-player {
        min-height: 220px;
    }

    .love_bloom_video-caption h2 {
        font-size: 1rem;
    }

    .love_bloom_video-caption p {
        max-width: 100%;
        font-size: 0.8rem;
    }

    .love_bloom_video-side {
        padding: 0.75rem;
    }

    .love_bloom_video-mini {
        flex-direction: column;
    }

    .love_bloom_video-thumb {
        width: 100%;
        height: 120px;
    }

    .love_bloom_newsletter-form {
        flex-direction: column;
    }

    .love_bloom_newsletter-form button {
        width: 100%;
    }

    .love_bloom_mini-form {
        flex-direction: column;
    }

    .love_bloom_mini-form button {
        width: 100%;
    }

    .love_bloom_layout-toggle {
        font-size: 0.55rem;
    }
}

/* ============================================================
   22. ANIMATIONS / REVEAL
   ============================================================ */
.love_bloom_reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: loveBloomReveal 0.6s ease forwards;
}

.love_bloom_reveal-left {
    opacity: 0;
    transform: translateX(-20px);
    animation: loveBloomRevealLeft 0.6s ease forwards;
}

.love_bloom_reveal-right {
    opacity: 0;
    transform: translateX(20px);
    animation: loveBloomRevealRight 0.6s ease forwards;
}

.love_bloom_reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    animation: loveBloomRevealScale 0.6s ease forwards;
}

@keyframes loveBloomReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loveBloomRevealLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes loveBloomRevealRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes loveBloomRevealScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.love_bloom_stagger-children>*:nth-child(1) {
    animation-delay: 0.05s;
}

.love_bloom_stagger-children>*:nth-child(2) {
    animation-delay: 0.10s;
}

.love_bloom_stagger-children>*:nth-child(3) {
    animation-delay: 0.15s;
}

.love_bloom_stagger-children>*:nth-child(4) {
    animation-delay: 0.20s;
}

.love_bloom_stagger-children>*:nth-child(5) {
    animation-delay: 0.25s;
}

.love_bloom_stagger-children>*:nth-child(6) {
    animation-delay: 0.30s;
}

/* ============================================================
   SERIALIZED FICTION + MIDNIGHT READING MODE
   ============================================================ */
.love_bloom_reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    z-index: 9999;
    background: var(--love-bloom-rose);
    transition: width .08s linear
}

.love_bloom_article-shell {
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 5rem) 1.25rem
}

.love_bloom_reader-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: .65rem;
    margin-bottom: 1.25rem
}

.love_bloom_reader-toggle {
    padding: .65rem .9rem;
    border: 1px solid rgba(45, 31, 28, .14);
    border-radius: 999px;
    background: #fff;
    color: var(--love-bloom-espresso);
    font: 700 .72rem var(--love-bloom-font-ui);
    cursor: pointer
}

.love_bloom_reader-toggle[aria-pressed="true"] {
    background: var(--love-bloom-espresso);
    color: #fff
}

.love_bloom_series-ribbon {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(139, 53, 60, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .72)
}

.love_bloom_series-ribbon>div {
    display: flex;
    flex-direction: column;
    gap: .2rem
}

.love_bloom_series-ribbon span {
    font: 600 .66rem var(--love-bloom-font-ui);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #806a62
}

.love_bloom_series-ribbon a {
    font-family: var(--love-bloom-font-heading);
    font-size: 1.2rem;
    color: var(--love-bloom-rose)
}

.love_bloom_reading-body {
    max-width: 760px;
    margin: 3rem auto;
    font-size: 1.08rem;
    line-height: 1.9
}

.love_bloom_reading-body p {
    margin: 0 0 1.35rem
}

.love_bloom_reading-body>p:first-child::first-letter {
    float: left;
    margin: .08em .12em 0 0;
    font: 700 4.5rem/.78 var(--love-bloom-font-heading);
    color: var(--love-bloom-rose)
}

.love_bloom_chapter-navigation {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin: 4rem 0 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 31, 28, .12)
}

.love_bloom_chapter-navigation>div:last-child {
    text-align: right
}

.love_bloom_chapter-link {
    display: flex;
    flex-direction: column
}

.love_bloom_chapter-link span,
.love_bloom_series-home {
    font: 700 .66rem var(--love-bloom-font-ui);
    text-transform: uppercase;
    letter-spacing: .08em
}

.love_bloom_chapter-link strong {
    font-family: var(--love-bloom-font-heading);
    font-size: 1.15rem
}

.love_bloom_start-series {
    text-align: center
}

.love_bloom_series-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 5rem) 1.25rem
}

.love_bloom_series-hero {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) 1.2fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    margin-bottom: 4rem
}

.love_bloom_series-cover img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(45, 31, 28, .18)
}

.love_bloom_series-copy h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .95
}

.love_bloom_series-copy p {
    max-width: 650px;
    line-height: 1.8
}

.love_bloom_series-chapters {
    display: grid;
    gap: 1px;
    background: rgba(45, 31, 28, .1)
}

.love_bloom_series-chapter {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--love-bloom-cream, #fffaf6)
}

.love_bloom_series-chapter-number {
    font: 700 1.5rem var(--love-bloom-font-heading);
    color: var(--love-bloom-rose)
}

body.love_bloom_midnight-reading {
    background: #151211;
    color: #e9dfd9
}

.love_bloom_midnight-reading .love_bloom_page-shell,
.love_bloom_midnight-reading .love_bloom_main {
    background: #151211
}

.love_bloom_midnight-reading .love_bloom_article-shell,
.love_bloom_midnight-reading .post-title,
.love_bloom_midnight-reading .post-excerpt,
.love_bloom_midnight-reading .love_bloom_reading-body {
    color: #e9dfd9
}

.love_bloom_midnight-reading .love_bloom_series-ribbon,
.love_bloom_midnight-reading .love_bloom_reader-toggle {
    background: #211c1a;
    border-color: rgba(255, 255, 255, .12);
    color: #e9dfd9
}

.love_bloom_midnight-reading .love_bloom_reading-body a {
    color: #e7a6ad
}

body.love_bloom_focus-reading .love_bloom_header,
body.love_bloom_focus-reading .love_bloom_footer,
body.love_bloom_focus-reading .announcement-bar,
body.love_bloom_focus-reading .article-engagement,
body.love_bloom_focus-reading .article-comments,
body.love_bloom_focus-reading .related {
    display: none !important
}

body.love_bloom_focus-reading .love_bloom_article-shell {
    max-width: 900px
}

@media(max-width:760px) {
    .love_bloom_series-ribbon {
        flex-direction: column
    }

    .love_bloom_chapter-navigation {
        grid-template-columns: 1fr
    }

    .love_bloom_chapter-navigation>div:last-child {
        text-align: left
    }

    .love_bloom_series-hero {
        grid-template-columns: 1fr
    }

    .love_bloom_series-chapter {
        grid-template-columns: 48px 1fr
    }

    .love_bloom_series-chapter>span:last-child {
        display: none
    }
}