/* ================================================
   NUUKO BLOG STYLES
   Cozy, warm blog design
   ================================================ */

/* === BLOG HERO === */

/* Lighter, cleaner canvas for blog pages */
body.blog-page {
    background: linear-gradient(180deg, #fdfcf9 0%, #f7f4ec 35%, #f3efe5 100%);
}

.blog-hero {
    padding: calc(72px + 4rem) 0 3rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 100%);
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(107, 143, 113, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(154, 107, 81, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-content {
    text-align: center;
    position: relative;
}

.blog-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.15) 0%, rgba(154, 107, 81, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 25px rgba(61, 52, 44, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.blog-hero-icon img {
    opacity: 0.85;
}

.blog-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--nuuko-espresso);
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--nuuko-stone);
    max-width: 600px;
    margin: 0 auto;
}

/* === BLOG SECTION === */
.blog-section {
    padding: 4rem 0;
}

/* === BLOG GRID === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* === BLOG CARD === */
.blog-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(141, 135, 126, 0.15);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--ease-gentle);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(107, 143, 113, 0.3);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.08) 0%, rgba(154, 107, 81, 0.08) 100%);
}

.blog-illustration {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--nuuko-stone);
}

.blog-card-category {
    padding: 0.25rem 0.75rem;
    background: rgba(107, 143, 113, 0.12);
    color: var(--nuuko-green);
    border-radius: var(--radius-pill);
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.blog-card-reading-time {
    color: var(--nuuko-stone);
    font-style: italic;
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--nuuko-espresso);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--nuuko-stone);
    margin: 0;
    flex: 1;
}

/* === BLOG CTA SECTION === */
.blog-cta-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.blog-cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 239, 229, 0.98) 100%);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(141, 135, 126, 0.15);
    box-shadow:
        var(--shadow-large),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.blog-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(107, 143, 113, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(154, 107, 81, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.blog-cta-feather {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.15) 0%, rgba(154, 107, 81, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 4s ease-in-out infinite;
}

.blog-cta-feather img {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-4px) rotate(1deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-4px) rotate(-1deg);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(107, 143, 113, 0.2);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(107, 143, 113, 0);
    }
}

.blog-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: 0.75rem;
    position: relative;
}

.blog-cta-text {
    font-size: 1.125rem;
    color: var(--nuuko-stone);
    margin-bottom: 2rem;
    position: relative;
}

.blog-cta-card .landing-btn {
    position: relative;
}

/* === ARTICLE PAGE STYLES === */
.article-header {
    padding: calc(72px + 3rem) 0 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
    position: relative;
}

.article-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(107, 143, 113, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(154, 107, 81, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--nuuko-stone);
}

.article-breadcrumb a {
    color: var(--nuuko-green);
    transition: opacity 0.2s;
}

.article-breadcrumb a:hover {
    opacity: 0.7;
}

.article-category {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(107, 143, 113, 0.12);
    color: var(--nuuko-green);
    border-radius: var(--radius-pill);
    font-weight: 500;
    text-transform: lowercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.article-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--nuuko-espresso);
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--nuuko-stone);
    margin-bottom: 2rem;
}

.article-reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-illustration {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem auto;
    display: block;
}

.article-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 3.25rem 2.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 246, 240, 0.95) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 16px 40px rgba(61, 52, 44, 0.08);
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--nuuko-espresso);
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.01em;
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin: 2rem 0 0.75rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--nuuko-espresso);
    margin-bottom: 0.75rem;
}

.article-content strong {
    font-weight: 600;
    color: var(--nuuko-green);
}

.article-content em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--nuuko-clay);
}

.article-content blockquote {
    border-left: 4px solid rgba(107, 143, 113, 0.4);
    padding: 1.5rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.08) 0%, rgba(154, 107, 81, 0.08) 100%);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.article-content blockquote p {
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 0;
}

.article-tip {
    background: rgba(166, 195, 167, 0.15);
    border: 1px solid rgba(107, 143, 113, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
}

.article-tip-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--nuuko-green);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-tip p {
    margin-bottom: 0;
}

.article-footer {
    max-width: 920px;
    margin: 3rem auto 0;
    padding: 2.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 246, 240, 0.95) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(141, 135, 126, 0.12);
    box-shadow: 0 12px 30px rgba(61, 52, 44, 0.08);
    text-align: center;
}

.article-footer-text {
    font-size: 1rem;
    color: var(--nuuko-stone);
    margin-bottom: 1.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .blog-hero {
        padding: calc(72px + 2rem) 0 2rem;
    }

    .article-header {
        padding: calc(72px + 2rem) 0 1.5rem;
    }

    .article-content {
        padding: 2rem 1.5rem;
    }

    .article-content p,
    .article-content li {
        font-size: 1.05rem;
    }

    .article-footer {
        padding: 1.5rem;
    }
}

/* ============================================
   DARK MODE STYLES FOR BLOG
   Warm, cozy dark theme
   ============================================ */

/* Dark mode body for blog pages */
html.dark body.blog-page {
    background: linear-gradient(180deg, #1C1917 0%, #181614 50%, #141211 100%);
}

/* Blog Hero - Dark Mode */
html.dark .blog-hero {
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.95) 0%, rgba(28, 25, 23, 0.7) 100%);
}

html.dark .blog-hero::before {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(143, 184, 150, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 160, 136, 0.06) 0%, transparent 50%);
}

html.dark .blog-hero-icon {
    background: linear-gradient(135deg, rgba(143, 184, 150, 0.2) 0%, rgba(212, 160, 136, 0.15) 100%);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

html.dark .blog-hero-icon img {
    filter: brightness(0) saturate(100%) invert(80%) sepia(15%) saturate(400%) hue-rotate(80deg) brightness(95%) contrast(90%);
}

html.dark .blog-hero-title {
    color: #F5F0E8;
}

html.dark .blog-hero-subtitle {
    color: #C4BCB0;
}

/* Blog Cards - Dark Mode */
html.dark .blog-card {
    background: #2A2523;
    border: 1px solid rgba(245, 240, 232, 0.08);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

html.dark .blog-card:hover {
    border-color: rgba(143, 184, 150, 0.3);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(143, 184, 150, 0.08);
}

html.dark .blog-card-image {
    background: linear-gradient(135deg, rgba(143, 184, 150, 0.1) 0%, rgba(212, 160, 136, 0.08) 100%);
}

html.dark .blog-card-meta {
    color: #918A80;
}

html.dark .blog-card-category {
    background: rgba(143, 184, 150, 0.2);
    color: #A8CBA8;
}

html.dark .blog-card-reading-time {
    color: #918A80;
}

html.dark .blog-card-title {
    color: #F5F0E8;
}

html.dark .blog-card-excerpt {
    color: #C4BCB0;
}

/* Blog CTA Section - Dark Mode */
html.dark .blog-cta-section {
    background: linear-gradient(180deg, transparent 0%, rgba(42, 37, 35, 0.3) 50%, transparent 100%);
}

html.dark .blog-cta-card {
    background: linear-gradient(135deg, #2A2523 0%, #252120 100%);
    border: 1px solid rgba(245, 240, 232, 0.1);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

html.dark .blog-cta-card::before {
    background:
        radial-gradient(circle at 30% 20%, rgba(143, 184, 150, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 160, 136, 0.06) 0%, transparent 50%);
}

html.dark .blog-cta-feather {
    background: linear-gradient(135deg, rgba(143, 184, 150, 0.2) 0%, rgba(212, 160, 136, 0.15) 100%);
}

html.dark .blog-cta-title {
    color: #F5F0E8;
}

html.dark .blog-cta-text {
    color: #C4BCB0;
}

/* Article Page - Dark Mode */
html.dark .article-header {
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.95) 0%, rgba(28, 25, 23, 0.7) 100%);
}

html.dark .article-header::before {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(143, 184, 150, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 160, 136, 0.06) 0%, transparent 50%);
}

html.dark .article-breadcrumb {
    color: #918A80;
}

html.dark .article-breadcrumb a {
    color: #8FB896;
}

html.dark .article-breadcrumb a:hover {
    color: #A8CBA8;
}

html.dark .article-category {
    background: rgba(143, 184, 150, 0.2);
    color: #A8CBA8;
}

html.dark .article-title {
    color: #F5F0E8;
}

html.dark .article-meta {
    color: #918A80;
}

/* Article Content - Dark Mode */
html.dark .article-content {
    background: linear-gradient(180deg, #2A2523 0%, #252120 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

html.dark .article-content p {
    color: #D4CFC6;
}

html.dark .article-content h2,
html.dark .article-content h3 {
    color: #F5F0E8;
}

html.dark .article-content li {
    color: #D4CFC6;
}

html.dark .article-content strong {
    color: #A8CBA8;
}

html.dark .article-content em {
    color: #D4A088;
}

html.dark .article-content blockquote {
    border-left-color: rgba(143, 184, 150, 0.5);
    background: linear-gradient(135deg, rgba(143, 184, 150, 0.1) 0%, rgba(212, 160, 136, 0.08) 100%);
}

html.dark .article-content blockquote p {
    color: #C4BCB0;
}

html.dark .article-tip {
    background: rgba(143, 184, 150, 0.12);
    border-color: rgba(143, 184, 150, 0.25);
}

html.dark .article-tip-label {
    color: #A8CBA8;
}

html.dark .article-tip p {
    color: #C4BCB0;
}

/* Article Footer - Dark Mode */
html.dark .article-footer {
    background: linear-gradient(135deg, #2A2523 0%, #252120 100%);
    border-color: rgba(245, 240, 232, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

html.dark .article-footer-text {
    color: #C4BCB0;
}

/* SVG illustrations in blog cards - adjust for dark mode */
html.dark .blog-illustration rect[fill="url(#cozy1)"],
html.dark .blog-illustration rect[fill="url(#cozy2)"],
html.dark .blog-illustration rect[fill="url(#cozy3)"],
html.dark .blog-illustration rect[fill="url(#cozy4)"],
html.dark .blog-illustration rect[fill="url(#cozy5)"] {
    opacity: 0.7;
}

/* Blog Section background */
html.dark .blog-section {
    background: transparent;
}

/* === RELATED ARTICLES SECTION === */
.related-articles {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(141, 135, 126, 0.2);
}

.related-articles-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: 1.5rem;
    text-transform: lowercase;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.related-article-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    background: rgba(107, 143, 113, 0.06);
    border: 1px solid rgba(107, 143, 113, 0.15);
    border-radius: var(--radius-lg);
    transition: all 0.25s var(--ease-gentle);
    text-decoration: none;
}

.related-article-card:hover {
    background: rgba(107, 143, 113, 0.12);
    border-color: rgba(107, 143, 113, 0.3);
    transform: translateY(-2px);
}

.related-article-category {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: lowercase;
    color: var(--nuuko-green);
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.related-article-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    line-height: 1.4;
    margin: 0;
}

.related-article-card:hover .related-article-title {
    color: var(--nuuko-green);
}

/* Related Articles - Dark Mode */
html.dark .related-articles {
    border-top-color: rgba(245, 240, 232, 0.1);
}

html.dark .related-articles-title {
    color: #F5F0E8;
}

html.dark .related-article-card {
    background: rgba(143, 184, 150, 0.08);
    border-color: rgba(143, 184, 150, 0.15);
}

html.dark .related-article-card:hover {
    background: rgba(143, 184, 150, 0.15);
    border-color: rgba(143, 184, 150, 0.3);
}

html.dark .related-article-category {
    color: #A8CBA8;
}

html.dark .related-article-title {
    color: #F5F0E8;
}

html.dark .related-article-card:hover .related-article-title {
    color: #A8CBA8;
}

/* Responsive */
@media (max-width: 768px) {
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* === ARTICLE RELATED / EXPLORE MORE SECTION === */
.article-related {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(141, 135, 126, 0.15);
}

.article-related h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: 1.5rem;
    text-transform: lowercase;
}

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

.article-related-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.08) 0%, rgba(154, 107, 81, 0.06) 100%);
    border: 1px solid rgba(107, 143, 113, 0.15);
    border-radius: var(--radius-xl);
    transition: all 0.3s var(--ease-gentle);
    text-decoration: none;
    min-height: 120px;
}

.article-related-card:hover {
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.15) 0%, rgba(154, 107, 81, 0.1) 100%);
    border-color: rgba(107, 143, 113, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 52, 44, 0.12);
}

.article-related-category {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: lowercase;
    color: var(--nuuko-green);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.article-related-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    line-height: 1.4;
    margin: 0;
}

.article-related-card:hover .article-related-title {
    color: var(--nuuko-green);
}

/* Article Related - Dark Mode */
html.dark .article-related {
    border-top-color: rgba(245, 240, 232, 0.1);
}

html.dark .article-related h3 {
    color: #F5F0E8;
}

html.dark .article-related-card {
    background: linear-gradient(135deg, rgba(143, 184, 150, 0.1) 0%, rgba(212, 160, 136, 0.06) 100%);
    border-color: rgba(143, 184, 150, 0.15);
}

html.dark .article-related-card:hover {
    background: linear-gradient(135deg, rgba(143, 184, 150, 0.18) 0%, rgba(212, 160, 136, 0.1) 100%);
    border-color: rgba(143, 184, 150, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

html.dark .article-related-category {
    color: #A8CBA8;
}

html.dark .article-related-title {
    color: #F5F0E8;
}

html.dark .article-related-card:hover .article-related-title {
    color: #A8CBA8;
}

@media (max-width: 768px) {
    .article-related-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .article-related-card {
        min-height: auto;
        padding: 1.25rem;
    }
}

/* === ARTICLE CTA SECTION === */
.article-cta {
    padding: 3rem 0 4rem;
}

.article-cta-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 239, 229, 0.98) 100%);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(141, 135, 126, 0.12);
    box-shadow: 0 16px 40px rgba(61, 52, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.article-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(107, 143, 113, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(154, 107, 81, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.article-cta-card img {
    position: relative;
    margin-bottom: 1rem;
}

.article-cta-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: 0.75rem;
    position: relative;
}

.article-cta-card p {
    font-size: 1.05rem;
    color: var(--nuuko-stone);
    margin-bottom: 1.5rem;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta-card .landing-btn {
    position: relative;
}

/* Article CTA - Dark Mode */
html.dark .article-cta-card {
    background: linear-gradient(135deg, #2A2523 0%, #252120 100%);
    border-color: rgba(245, 240, 232, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

html.dark .article-cta-card::before {
    background:
        radial-gradient(circle at 30% 20%, rgba(143, 184, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 160, 136, 0.08) 0%, transparent 50%);
}

html.dark .article-cta-card h3 {
    color: #F5F0E8;
}

html.dark .article-cta-card p {
    color: #C4BCB0;
}

/* === VIDEO SECTION === */
.blog-video-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, rgba(107, 143, 113, 0.04) 0%, transparent 50%, rgba(154, 107, 81, 0.04) 100%);
}

.blog-video-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.blog-video-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.15) 0%, rgba(154, 107, 81, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-video-icon svg {
    width: 28px;
    height: 28px;
    color: var(--nuuko-green);
}

.blog-video-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: 0.5rem;
}

.blog-video-subtitle {
    font-size: 1.05rem;
    color: var(--nuuko-stone);
    max-width: 500px;
    margin: 0 auto;
}

.blog-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-video-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(141, 135, 126, 0.15);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--ease-gentle);
}

.blog-video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(107, 143, 113, 0.3);
}

.blog-video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #1a1a1a;
}

.blog-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.blog-video-content {
    padding: 1.5rem;
}

.blog-video-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(107, 143, 113, 0.12);
    color: var(--nuuko-green);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: lowercase;
    margin-bottom: 0.75rem;
}

.blog-video-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.blog-video-description {
    font-size: 0.95rem;
    color: var(--nuuko-stone);
    line-height: 1.6;
    margin: 0;
}

/* Video Section - Dark Mode */
html.dark .blog-video-section {
    background: linear-gradient(180deg, rgba(143, 184, 150, 0.04) 0%, transparent 50%, rgba(212, 160, 136, 0.04) 100%);
}

html.dark .blog-video-icon {
    background: linear-gradient(135deg, rgba(143, 184, 150, 0.2) 0%, rgba(212, 160, 136, 0.15) 100%);
}

html.dark .blog-video-icon svg {
    color: #A8CBA8;
}

html.dark .blog-video-title {
    color: #F5F0E8;
}

html.dark .blog-video-subtitle {
    color: #C4BCB0;
}

html.dark .blog-video-card {
    background: #2A2523;
    border-color: rgba(245, 240, 232, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

html.dark .blog-video-card:hover {
    border-color: rgba(143, 184, 150, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

html.dark .blog-video-tag {
    background: rgba(143, 184, 150, 0.2);
    color: #A8CBA8;
}

html.dark .blog-video-card-title {
    color: #F5F0E8;
}

html.dark .blog-video-description {
    color: #C4BCB0;
}

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

    .blog-video-section {
        padding: 2rem 0 3rem;
    }
}
