/* Mawu APS — CSS */
:root {
    --primary: #4686D9;
    --primary-dark: #345ea8;
    --text: #333;
    --text-light: #666;
    --bg: #EEEEEE;
    --white: #fff;
    --border: #e0e0e0;
    --radius: 8px;
    --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Merriweather Sans', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    text-decoration: none;
}

/* Header */
#header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}
.logo img { display: block; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

#nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
}
#nav li { position: relative; }
#nav a {
    display: block;
    padding: 8px 14px;
    color: var(--text);
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}
#nav a:hover,
#nav li.active > a {
    color: var(--primary);
    background: transparent;
    text-decoration: none;
}
#nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: var(--radius);
    min-width: 200px;
    padding: 8px 0;
    z-index: 200;
}
#nav li:hover > ul { display: block; }
#nav li ul li { display: block; }
#nav li ul a { padding: 8px 18px; white-space: nowrap; }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    #nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 16px;
    }
    #nav.open { display: block; }
    #nav ul { flex-direction: column; }
    #nav li ul {
        position: static;
        box-shadow: none;
        padding-left: 16px;
    }
    #nav li:hover > ul { display: block; }
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}
.hero h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.2rem;
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.3;
}
.hero .btn {
    background: var(--white);
    color: var(--primary);
}
.hero .btn:hover {
    background: rgba(255,255,255,0.9);
}

/* Content */
.content { padding: 40px 0; }
.content h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 8px;
}
.content h2 {
    font-family: 'Merriweather', Georgia, serif;
    margin: 24px 0 16px;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.article-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.article-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-card-body { padding: 16px; }
.article-card-body h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.15rem;
    margin: 8px 0;
}
.article-card-body h3 a { color: var(--text); }
.article-card-body h3 a:hover { color: var(--primary); text-decoration: none; }

.article-card-meta {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    text-transform: capitalize;
}

/* Article Single */
.article-single { padding: 40px 0; background: var(--white); }
.article-header { margin-bottom: 24px; }
.article-header h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.2rem;
    line-height: 1.3;
    margin: 12px 0;
}
.article-header time {
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-cover {
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}
.article-cover img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.article-body {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}
.article-body p { margin-bottom: 18px; }
.article-body h2 { margin: 32px 0 16px; }
.article-body h3 { margin: 24px 0 12px; }
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 16px 0;
}
.article-body ul, .article-body ol {
    margin: 16px 0;
    padding-left: 24px;
}
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
    border-left: 4px solid var(--primary);
    margin: 20px 0;
    padding: 12px 20px;
    background: #f7f9fc;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body a { text-decoration: underline; }

.article-footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); }
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 8px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.category-filter a {
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.category-filter a:hover,
.category-filter a.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    text-decoration: none;
}

/* Error Page */
.error-page {
    text-align: center;
    padding: 80px 20px;
}
.error-page h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

/* Footer */
#footer {
    background: #222;
    color: #bbb;
    padding: 32px 0;
    margin-top: 60px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a { color: #999; }
.footer-social a:hover { color: var(--primary); }

.empty-message {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}
.cookie-modal-content {
    position: relative;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    animation: cookieFadeIn 0.3s ease;
}
.cookie-modal-content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text);
}
.cookie-modal-content p:first-child {
    font-weight: 600;
}
.cookie-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}
.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-size: 0.9rem;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

@keyframes cookieFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* Page-specific: Sostienici */
.page-slug-sostienici .article-header {
    display: none;
}
.page-slug-sostienici .article-body {
    max-width: 680px;
    margin: 0 auto;
}
.page-slug-sostienici .article-body > p:first-child {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 28px;
}
.page-slug-sostienici .article-body blockquote:first-of-type {
    border-left: 4px solid #E97A5D;
    background: #fef6f3;
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 0 0 32px 0;
    font-style: normal;
}
.page-slug-sostienici .article-body blockquote:first-of-type p {
    margin-bottom: 6px;
    font-size: 1rem;
}
.page-slug-sostienici .article-body blockquote:first-of-type h3 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    font-family: 'Merriweather', Georgia, serif;
}
.page-slug-sostienici .article-body blockquote:first-of-type strong {
    color: var(--text);
}
.page-slug-sostienici .article-body hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid var(--border);
}
.page-slug-sostienici .article-body h2 {
    font-family: 'Merriweather', Georgia, serif;
    margin: 40px 0 16px;
    font-size: 1.4rem;
}
.page-slug-sostienici .article-body ul {
    padding-left: 20px;
}
.page-slug-sostienici .article-body ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.page-slug-sostienici .article-body > p:last-child {
    text-align: center;
    margin-top: 32px;
}

/* Page-specific: 5 x mille */
.page-slug-5-x-mille .article-header {
    display: none;
}
.page-slug-5-x-mille .article-body {
    max-width: 680px;
    margin: 0 auto;
}
.page-slug-5-x-mille .article-body > p:first-child {
    font-size: 1.35rem;
    font-weight: 600;
    text-align: center;
    color: var(--text);
    margin-bottom: 16px;
    font-family: 'Merriweather', Georgia, serif;
}
.page-slug-5-x-mille .article-body > p:first-child + p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}
.page-slug-5-x-mille .article-body blockquote:first-of-type {
    border-left: 4px solid #E97A5D;
    background: #fef6f3;
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 0 0 32px 0;
    text-align: center;
}
.page-slug-5-x-mille .article-body blockquote:first-of-type h3 {
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    font-family: 'Merriweather', Georgia, serif;
}
.page-slug-5-x-mille .article-body blockquote:first-of-type p:last-child {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-dark);
    margin: 0;
}
.page-slug-5-x-mille .article-body ol {
    padding-left: 24px;
    counter-reset: steps;
    list-style: none;
}
.page-slug-5-x-mille .article-body ol li {
    position: relative;
    padding-left: 48px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.page-slug-5-x-mille .article-body ol li::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.page-slug-5-x-mille .article-body h2 {
    font-family: 'Merriweather', Georgia, serif;
    margin: 40px 0 16px;
    font-size: 1.4rem;
}
.page-slug-5-x-mille .article-body h3 {
    font-size: 1.1rem;
    margin: 24px 0 8px;
    color: var(--text);
}
.page-slug-5-x-mille .article-body hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid var(--border);
}
.page-slug-5-x-mille .article-body > p:last-child {
    text-align: center;
    margin-top: 32px;
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--white);
}

.hero-slideshow-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.hero-slideshow-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.hero-slideshow-nav.prev { left: 20px; }
.hero-slideshow-nav.next { right: 20px; }

.hero-slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.hero-slideshow-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-slideshow-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.hero-slideshow-dots .dot:hover {
    background: var(--white);
}

@media (max-width: 768px) {
    .hero-slideshow {
        height: 300px;
    }
    
    .hero-slideshow-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Hero CTA Box */
.hero-cta-box {
    background: var(--primary);
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid #e0e0e0;
}

.hero-cta-box h1 {
    font-family: 'Merriweather', Georgia, serif;
    color: var(--white);
    font-size: 2rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 24px;
}

.btn-light {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-light:hover {
    background: rgba(255,255,255,0.9);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-cta-box h1 {
        font-size: 1.5rem;
    }
}

/* Quick Cards */
.quick-cards {
    padding: 60px 0;
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: var(--bg);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--primary);
    text-decoration: none;
    color: var(--primary);
}

.quick-card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.quick-card h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text);
}

.quick-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.quick-card:hover h3 {
    color: var(--primary);
}

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

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

/* CTA Banner */
.cta-banner {
    background: var(--primary);
    padding: 80px 20px 60px;
    text-align: center;
}

/* Social Box */
.social-box {
    background: var(--white);
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-box h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    text-decoration: none;
}

.social-links svg {
    width: 32px;
    height: 32px;
    display: block;
}

@media (max-width: 768px) {
    .social-links a {
        width: 56px;
        height: 56px;
    }
    
    .social-links svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 24px;
    }
    
    .social-links a {
        width: 48px;
        height: 48px;
    }
    
    .social-links svg {
        width: 24px;
        height: 24px;
    }
}

.cta-banner h2 {
    font-family: 'Merriweather', Georgia, serif;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.btn-outline-white {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-image img {
        max-height: 150px;
    }
}

/* Photo Project Section */
.photo-project {
    padding: 80px 0;
    background: var(--primary);
}

.photo-project h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--white);
    text-align: center;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.photo-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius);
    background: #1a1a1a;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-credit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 16px 16px;
    color: var(--white);
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-credit {
    opacity: 1;
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .photo-credit {
        opacity: 1;
        padding: 30px 12px 12px;
        font-size: 0.85rem;
    }
}

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

/* Slideshow - kept for reference but not used in photo project anymore */
.slideshow-container {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.95);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1001;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 16px;
    font-style: italic;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 1002;
}

.lightbox-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

@media (max-width: 768px) {
    .lightbox {
        padding: 20px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
    }
}


/* CTA a fine articolo */
.article-cta {
    max-width: 760px;
    margin: 40px auto 0;
    padding: 28px 24px;
    background: var(--bg);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    text-align: center;
}
.article-cta h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.article-cta p { margin-bottom: 16px; }
.article-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}
