/* === BLOG PAGE === */

/* Hero Blog */
.blog-hero {
    background: linear-gradient(135deg, #033D37 0%, #80BABA 100%);
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px 0 40px;
    margin: 0;
    position: relative;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero-wave {
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.blog-hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Desktop: mostra onda-desktop, nascondi onda-mobile */
.blog-hero-wave .onda-mobile {
    display: none;
}

.blog-hero-wave .onda-desktop {
    display: block;
}

.blog-hero-content h1 {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.blog-hero-content h1 .letter-hover:hover {
    color: #D9EBEB;
}

.blog-hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Effetto hover lettere */
.hover-letters {
    transition: color 0.3s ease;
}

.letter-hover {
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.letter-hover:hover {
    color: #033D37;
}

/* Container Blog */
.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Filtri Categorie */
.blog-filters-section {
    background-color: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #D9EBEB;
}

.blog-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 30px;
    border: 2px solid #033D37;
    background: transparent;
    color: #033D37;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #033D37;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(3, 61, 55, 0.12);
}

/* Griglia Articoli */
.blog-articles-section {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.blog-articles-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 235, 235, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: 30%;
    left: 5%;
    z-index: 0;
    pointer-events: none;
}

.blog-articles-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(128, 186, 186, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 30%;
    right: 5%;
    z-index: 0;
    pointer-events: none;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.article-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 61, 55, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px 20px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.read-more {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.article-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.article-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #80BABA;
}

.article-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #fff;
    background: #033D37;
    padding: 3px 10px;
    border-radius: 32px;
    font-weight: 500;
}

.article-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #033D37;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #80BABA;
    margin: 0;
}

/* Load More Button */
.blog-load-more {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 40px;
    background: #033D37;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #80BABA;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 61, 55, 0.3);
}

/* Sezione Social TikTok */
.social-section {
    background: linear-gradient(180deg, #D9EBEB 0%, #fff 100%);
    padding: 100px 60px;
}

.social-container {
    max-width: 1400px;
    margin: 0 auto;
}

.social-container h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #033D37;
    text-align: center;
    margin-bottom: 15px;
}

.social-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #80BABA;
    text-align: center;
    margin-bottom: 60px;
}

/* Carousel Social Wrapper */
.social-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation laterali desktop */
.social-nav-btn {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #033D37;
    color: #033D37;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.social-nav-btn:hover {
    background: #033D37;
    color: #fff;
    transform: scale(1.05);
}

/* Nasconde container mobile su desktop */
.social-nav-container {
    display: none;
}

/* Nasconde le frecce desktop su mobile */
@media (max-width: 768px) {
    .social-carousel-wrapper>.social-nav-btn {
        display: none;
    }

}

/* Carousel */
.social-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.social-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 0;
}

.social-card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.85);
}

.social-card.side {
    opacity: 0.7;
    transform: scale(0.92);
    box-shadow: none;
}

.social-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
    position: relative;
}

.social-card.active::before {
    display: none;
    pointer-events: none;
}

.social-video {
    position: relative;
    height: 450px;
    background: #f5f5f5;
    overflow: hidden;
}

/* TikTok Placeholder */
.tiktok-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D9EBEB 0%, #80BABA 100%);
}

.tiktok-icon {
    width: 80px;
    height: 80px;
    color: #033D37;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.tiktok-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.tiktok-placeholder p {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    color: #033D37;
    font-weight: 700;
}

.social-info {
    padding: 25px;
    background: #fff;
}

.social-info h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #033D37;
    margin-bottom: 10px;
}

.social-info p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #80BABA;
    margin: 0;
    line-height: 1.5;
}

/* Social CTA */
.social-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 40px;
    background: #033D37;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn svg {
    width: 30px;
    height: 30px;
}

.social-btn:hover {
    background: #80BABA;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 61, 55, 0.3);
}

/* Responsive Blog */
@media (max-width: 768px) {

    /* Hero */
    .blog-hero {
        padding: 60px 20px 0 20px;
        min-height: 50vh;
    }

    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .blog-hero-content p {
        font-size: 1rem;
    }

    .blog-hero-wave {
        height: 50px;
    }

    /* Mobile: mostra onda-mobile, nascondi onda-desktop */
    .blog-hero-wave .onda-mobile {
        display: block;
    }

    .blog-hero-wave .onda-desktop {
        display: none;
    }

    /* Container */
    .blog-container {
        padding: 0 20px;
    }

    /* Filtri */
    .blog-filters-section {
        padding: 30px 0;
    }

    .blog-filters {
        gap: 10px;
        padding: 0 10px;
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* Articoli */
    .blog-articles-section {
        padding: 60px 20px;
    }

    .blog-articles-section::before {
        width: 200px;
        height: 200px;
        top: 15%;
        left: -50px;
    }

    .blog-articles-section::after {
        width: 180px;
        height: 180px;
        bottom: 15%;
        right: -50px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    /* Hide articles after 3rd on mobile */
    .article-card:nth-child(n+4) {
        display: none;
    }

    .articles-grid.show-all .article-card {
        display: block !important;
    }

    .article-image {
        height: 220px;
    }

    .article-content {
        padding: 20px;
    }

    .article-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .article-excerpt {
        font-size: 0.95rem;
    }

    .read-more {
        font-size: 1rem;
    }

    /* Load More */
    .blog-load-more {
        margin-top: 30px;
    }

    .load-more-btn.show-all-btn {
        display: block !important;
    }

    .load-more-btn {
        font-size: 1rem;
        padding: 14px 35px;
    }

    /* Social Section */
    .social-section {
        padding: 60px 20px;
    }

    .social-container h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .social-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .social-carousel-wrapper {
        position: relative;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        background: transparent;
    }

    .social-carousel {
        width: 90%;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        order: 1;
        background: transparent;
    }

    .social-carousel::before,
    .social-carousel::after {
        display: none;
    }

    .social-track {
        display: flex;
        padding: 20px 0;
        gap: 20px;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-card {
        flex: 0 0 85%;
        opacity: 0.5;
        transform: scale(0.85);
        box-shadow: none;
        transition: all 0.5s ease;
    }

    .social-card.active {
        opacity: 1;
        transform: scale(1);
        box-shadow: none;
    }

    .social-video {
        height: 500px;
    }

    /* Navigation sotto il carousel - affiancate (solo mobile) */
    .social-nav-container {
        order: 2;
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: -10px;
        position: relative;
        z-index: 30;
    }

    .social-nav-container .social-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        flex: 0 0 48px;
        position: static;
        transform: none;
        z-index: 20;
        background: #D9EBEB;
        border: 2px solid transparent;
        border-radius: 50%;
        touch-action: manipulation;
    }

    .social-nav-container .social-nav-btn:hover {
        background: #80BABA;
    }

    .social-nav-container .social-nav-btn:active {
        transform: scale(0.95);
    }

    .social-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .social-info {
        padding: 20px;
    }

    .social-info h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .social-info p {
        font-size: 0.95rem;
    }

    /* Social CTA */
    .social-cta {
        margin-top: 40px;
    }

    .social-btn {
        font-size: 1.1rem;
        padding: 16px 35px;
        gap: 12px;
    }

    .social-btn svg {
        width: 26px;
        height: 26px;
    }
}


/* === SINGLE ARTICLE PAGE === */

/* Hero Articolo */
.article-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.article-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 61, 55, 0.9) 0%, rgba(3, 61, 55, 0.4) 50%, transparent 100%);
}

.article-hero-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    z-index: 2;
    text-align: center;
}

.article-meta-hero {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.article-date-hero,
.article-category-hero {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #fff;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 40px;
}

.article-category-hero {
    background: rgba(128, 186, 186, 0.3);
}

.article-title-hero {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.article-title-hero .letter-hover {
    transition: color 0.3s ease;
    display: inline-block;
}

.article-title-hero .letter-hover:hover {
    color: #80BABA;
}

/* Contenuto Articolo */
.article-content-section {
    background: #fff;
    padding: 80px 40px;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
}

.article-main-full {
    width: 100%;
}

/* Body Articolo */
.article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #033D37;
    margin-bottom: 60px;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    font-family: 'Syne', sans-serif;
    color: #033D37;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body h2 {
    font-size: 2.2rem;
}

.article-body h3 {
    font-size: 1.8rem;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    margin: 30px 0;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid #80BABA;
    padding-left: 30px;
    margin: 30px 0;
    font-style: italic;
    color: #80BABA;
    font-size: 1.3rem;
}

/* Tag */
.article-tags {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #D9EBEB;
}

.article-tags h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    color: #033D37;
    margin-bottom: 15px;
}

.tags-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 8px 20px;
    background: #D9EBEB;
    color: #033D37;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #80BABA;
    color: #fff;
    transform: translateY(-2px);
}

/* Share Buttons */
.article-share {
    padding-bottom: 40px;
}

.article-share h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    color: #033D37;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 12px 25px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.copy {
    background: #033D37;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* Bottom Widgets Section */
.article-bottom-widgets {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 2px solid #D9EBEB;
}

.bottom-widget {
    margin-bottom: 60px;
}

.bottom-widget h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    color: #033D37;
    margin-bottom: 40px;
    text-align: center;
}

/* Articoli Correlati - Grid Layout */
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-card {
    display: flex;
    flex-direction: column;
    background: #D9EBEB;
    border-radius: 32px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(3, 61, 55, 0.08);
}

.related-post-card .related-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-post-card .related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-card .related-post-content {
    padding: 25px;
}

.related-post-card .related-post-content h5 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    color: #033D37;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-post-card .related-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #80BABA;
}

/* Newsletter Widget - Bottom */
.newsletter-widget {
    background: #D9EBEB;
    border-radius: 32px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-widget h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    color: #033D37;
    margin-bottom: 15px;
}

.newsletter-widget p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #80BABA;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.newsletter-form input {
    font-family: 'Inter', sans-serif;
    padding: 15px 25px;
    border: 2px solid #fff;
    border-radius: 50px;
    background: #fff;
    font-size: 1rem;
    color: #033D37;
    flex: 1;
    max-width: 350px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #033D37;
}

.newsletter-form button {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    background: #033D37;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #80BABA;
    transform: translateY(-2px);
}

/* Legacy Sidebar Styles - Hidden */
.article-sidebar {
    display: none;
}

.sidebar-widget {
    background: #D9EBEB;
    border-radius: 32px;
    padding: 30px;
    margin-bottom: 30px;
}

/* Widget Autore */
.author-widget {
    text-align: center;
}

.author-avatar {
    margin-bottom: 20px;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
}

.author-widget h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    color: #033D37;
    margin-bottom: 10px;
}

.author-widget p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #80BABA;
    line-height: 1.6;
    margin: 0;
}

/* Widget Articoli Correlati */
.related-widget h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    color: #033D37;
    margin-bottom: 20px;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post-item {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.related-post-item:hover {
    transform: translateX(5px);
}

.related-post-image {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h5 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    color: #033D37;
    margin-bottom: 5px;
    line-height: 1.3;
}

.related-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #80BABA;
}

/* Widget Newsletter */
.newsletter-widget h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    color: #033D37;
    margin-bottom: 10px;
}

.newsletter-widget p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #80BABA;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    font-family: 'Inter', sans-serif;
    padding: 12px 18px;
    border: 2px solid #fff;
    border-radius: 40px;
    background: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #80BABA;
}

.newsletter-form button {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px;
    background: #033D37;
    color: #fff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #80BABA;
    transform: translateY(-2px);
}


.prev-link {
    text-align: left;
}

.next-link {
    text-align: right;
}

/* Responsive Single Article */
@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .article-hero {
        height: 50vh;
    }

    .article-hero-content {
        bottom: 40px;
        padding: 0 20px;
    }

    .article-title-hero {
        font-size: 2rem;
    }

    .article-content-section {
        padding: 60px 20px;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .next-link {
        text-align: left;
    }
}
