

/*#region News section */

/*
.news-hero {
    padding-top: 60px;
    padding-bottom: 40px;
}

    .news-hero .post-item {
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }

        .news-hero .post-item:hover .post-img img {
            transform: scale(1.1);
        }

        .news-hero .post-item:hover .post-title a {
            color: var(--sm-primary);
        }

        .news-hero .post-item .post-img {
            position: relative;
            overflow: hidden;
            margin-bottom: 16px;
            border-radius: 16px;
            transition: transform 0.3s ease-in-out;
        }

            .news-hero .post-item .post-img::after {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
            }

            .news-hero .post-item .post-img img {
                width: 100%;
                aspect-ratio: 16/9;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .news-hero .post-item .post-img .category {
                position: absolute;
                top: 15px;
                left: 15px;
                font-size: 14px;
                color: var(--sm-white);
                border-radius: 10px;
                padding: 5px 10px;
                z-index: 1;
            }

            .news-hero .post-item .post-img .category {
                background-color: #e74c3c;
            }

                .news-hero .post-item .post-img .category.news {
                    background-color: #3498db;
                }

                .news-hero .post-item .post-img .category.announcement {
                    background-color: #2ecc71;
                }

                .news-hero .post-item .post-img .category.campaign {
                    background-color: #9b59b6;
                }

        .news-hero .post-item .post-content .post-title {
            margin: 0 0 12px;
            font-family: var(--sm-heading-font);
        }

            .news-hero .post-item .post-content .post-title a {
                -webkit-line-clamp: 2;
                line-clamp: 2;
                overflow: hidden;
                display: -webkit-box;
                text-overflow: ellipsis;
                -webkit-box-orient: vertical;
                color: var(--sm-heading);
                transition: color 0.3s ease;
            }

                .news-hero .post-item .post-content .post-title a:hover {
                    color: var(--sm-primary);
                }

        .news-hero .post-item .post-content .post-excerpt {
            -webkit-line-clamp: 3;
            line-clamp: 3;
            overflow: hidden;
            display: -webkit-box;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
        }

        .news-hero .post-item .post-content .post-meta {
            font-size: 14px;
            color: color-mix(in srgb, var(--sm-default), transparent 40%);
        }

            .news-hero .post-item .post-content .post-meta .dot {
                margin: 0 8px;
            }

    .news-hero .main-post {
        margin-bottom: 0;
    }

        .news-hero .main-post .post-img {
            margin-bottom: 20px;
        }

        .news-hero .main-post .post-title {
            font-size: 28px;
            line-height: 1.3;
            font-weight: 500;
        }

@media (max-width: 991.98px) {
    .news-hero .main-post .post-title {
        font-size: 24px;
    }
}

.news-hero .side-posts .side-post {
    margin-bottom: 30px;
}

    .news-hero .side-posts .side-post:last-child {
        margin-bottom: 0;
    }

    .news-hero .side-posts .side-post .post-title {
        font-size: 16px;
        line-height: 1.4;
        font-weight: 600;
        height: 45px;
    }

@media (max-width: 991.98px) {
    .news-hero .side-posts {
        margin-top: 0;
    }
}*/

.news-hero .featured-post {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.16);
    /*margin-bottom: 2rem;*/
}

    .news-hero .featured-post img {
        width: 100%;
        height: 580px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .news-hero .featured-post:hover img {
        transform: scale(1.1);
    }

    .news-hero .featured-post .post-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 100%);
        padding: 6rem 2rem 2rem;
        color: var(--sm-white);
        z-index: 1;
    }

    .news-hero .featured-post .post-content {
        max-width: 800px;
    }

    .news-hero .featured-post .post-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin: 0.5rem 0;
        font-family: Raleway;
        font-weight: 600;
    }

        .news-hero .featured-post .post-title a {
            color: var(--sm-white);
        }

            .news-hero .featured-post .post-title a:hover {
                color: color-mix(in srgb, var(--sm-white), transparent 20%);
            }

    .news-hero .featured-post .post-excerpt {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

.news-hero .secondary-post {
    background-color: var(--sm-white);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

    .news-hero .secondary-post .post-image img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .news-hero .secondary-post .post-content {
        padding: 1.5rem;
    }

    .news-hero .secondary-post .post-title {
        font-size: 1.25rem;
        margin: 0.5rem 0;
        line-height: 1.4;
    }

        .news-hero .secondary-post .post-title a {
            color: var(--sm-heading);
        }

            .news-hero .secondary-post .post-title a:hover {
                color: var(--sm-primary);
            }

.news-hero .news-tabs {
    background-color: var(--sm-white);
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--sm-white);
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

    .news-hero .news-tabs .nav-tabs {
        border: none;
        padding: 1rem 1rem 0;
        gap: 0.5rem;
        background-color: var(--sm-white);
    }

        .news-hero .news-tabs .nav-tabs .nav-link {
            border: none;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            color: var(--sm-default);
            font-weight: 500;
            border-radius: 20px;
            transition: 0.3s;
        }

            .news-hero .news-tabs .nav-tabs .nav-link:hover {
                color: var(--sm-primary);
            }

            .news-hero .news-tabs .nav-tabs .nav-link.active {
                background-color: var(--sm-primary);
                color: var(--sm-white);
            }

    .news-hero .news-tabs .tab-content {
        padding: 1.5rem;
    }

.news-hero .tab-post {
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--sm-default), transparent 90%);
}

    .news-hero .tab-post:first-child {
        padding-top: 0;
    }

    .news-hero .tab-post:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .news-hero .tab-post img {
        border-radius: 8px;
        width: 100%;
        height: 100px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .news-hero .tab-post .overflow-hidden {
        border-radius: 8px;
    }

    .news-hero .tab-post:hover .overflow-hidden img {
        transform: scale(1.1);
    }

    .news-hero .tab-post .post-content {
        padding-left: 1rem;
        min-height: 100px;
    }

    .news-hero .tab-post .post-title {
        font-size: 0.9375rem;
        margin: 0.5rem 0;
        line-height: 1.5;
        min-height: 63px;
        font-size: 1rem;
        font-family: 'Raleway';
        font-weight: 600;
    }

        .news-hero .tab-post .post-title a {
            color: var(--sm-primary);
            -webkit-line-clamp: 3;
            line-clamp: 3;
            overflow: hidden;
            display: -webkit-box;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
        }

            .news-hero .tab-post .post-title a:hover {
                color: color-mix(in srgb, var(--sm-primary), transparent 10%);
            }

.news-hero .category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: var(--sm-primary);
    color: var(--sm-white);
    margin-right: 0.5rem;
}

.news-hero .date {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--sm-white), transparent 20%);
    font-weight: 500;
}

.news-hero .post-author {
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    color: color-mix(in srgb, var(--sm-default), transparent 40%);
}

    .news-hero .post-author span {
        color: color-mix(in srgb, var(--sm-default), transparent 30%);
    }

    .news-hero .post-author a {
        color: var(--sm-primary);
        font-weight: 500;
    }

        .news-hero .post-author a:hover {
            color: color-mix(in srgb, var(--sm-primary), transparent 25%);
        }

@media (max-width: 991.98px) {
    .news-hero .featured-post img {
        height: 400px;
    }

    .news-hero .featured-post .post-title {
        font-size: 1.75rem;
    }

    .news-hero .secondary-post .post-image img {
        height: 220px;
    }

    .news-hero .news-tabs {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .news-hero .featured-post img {
        height: 500px;
    }

    .news-hero .featured-post .post-title {
        font-size: 1.5rem;
    }

    .news-hero .featured-post .post-overlay {
        padding: 1.5rem;
    }

    .news-hero .tab-post .post-title {
        font-size: 0.875rem;
    }

    .news-hero .tab-post img {
        height: 80px;
    }
}
/*
.news-posts {
    padding-top: 40px;
    padding-bottom: 60px;
}

    .news-posts article {
        margin-bottom: 30px;
    }

    .news-posts .post-img {
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 4/3;
    }

        .news-posts .post-img::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
        }

        .news-posts .post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.3s;
        }

        .news-posts .post-img:hover img {
            transform: scale(1.1);
        }

    .news-posts .post-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        z-index: 2;
        color: var(--sm-white);
    }

    .news-posts .post-category {
        display: inline-block;
        padding: 5px 10px;
        font-size: 14px;
        color: var(--sm-white);
        margin-bottom: 15px;
        background-color: #e74c3c;
        border-radius: 10px;
    }

        .news-posts .post-category.news {
            background-color: #3498db;
        }

        .news-posts .post-category.announcement {
            background-color: #2ecc71;
        }

        .news-posts .post-category.campaign {
            background-color: #9b59b6;
        }

    .news-posts .title {
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
    }

        .news-posts .title a {
            -webkit-line-clamp: 2;
            line-clamp: 2;
            overflow: hidden;
            display: -webkit-box;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            color: var(--sm-white);
            transition: 0.3s;
        }

            .news-posts .title a:hover {
                color: color-mix(in srgb, var(--sm-white), transparent 20%);
            }

    .news-posts .post-meta {
        font-size: 14px;
        color: color-mix(in srgb, var(--sm-white), transparent 20%);
    }

        .news-posts .post-meta span {
            display: inline-block;
        }

@media (max-width: 768px) {
    .news-posts .post-content {
        padding: 20px;
    }

    .news-posts .title {
        font-size: 18px;
    }

    .news-posts .post-meta {
        font-size: 13px;
    }
}*/

.news-posts article {
    background: var(--sm-white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

    .news-posts article .post-img {
        max-height: 220px;
        margin: 0px 0px 15px 0px;
        overflow: hidden;
    }

        .news-posts article .post-img img {
            transition: 0.3s;
            object-fit: contain;
            height: 100%;
            object-position: center;
        }

    .news-posts article:hover .post-img img {
        transform: scale(1.1);
    }

    .news-posts article .post-category {
        font-size: 16px;
        color: color-mix(in srgb, var(--sm-default), transparent 50%);
        margin-bottom: 10px;
    }

    .news-posts article .title {
        font-size: 1rem;
        padding: 0 20px;
        font-weight: 600;
        margin: 0 0 0px 0;
        line-height: 1.5;
        font-family: Raleway;
        min-height: 64px;
    }

        .news-posts article .title a {
            color: var(--sm-primary);
            transition: 0.3s;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            overflow: hidden;
            display: -webkit-box;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
        }

            .news-posts article .title a:hover {
                color: color-mix(in srgb, var(--sm-primary), transparent 20%);
            }

    .news-posts article .post-author-img {
        width: 50px;
        border-radius: 50%;
        margin-right: 15px;
    }

    .news-posts article .post-author {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .news-posts article .post-date {
        font-size: 0.875rem;
        font-weight: 500;
        color: color-mix(in srgb, var(--sm-default), transparent 40%);
        margin-bottom: 0;
        padding: 0px 20px 10px;
    }


.news-details {
    position: relative;
}

    .news-details .article-header {
        /*max-width: 800px;
        margin: 0 auto 3rem;*/
        text-align: center;
    }

        .news-details .article-header .meta-categories {
            margin-bottom: 1.5rem;
        }

            .news-details .article-header .meta-categories .category {
                display: inline-block;
                padding: 0.4rem 1.2rem;
                margin: 0 0.5rem;
                background: color-mix(in srgb, var(--sm-primary), transparent 90%);
                color: var(--sm-primary);
                border-radius: 30px;
                font-size: 0.9rem;
                transition: all 0.3s ease;
            }

                .news-details .article-header .meta-categories .category:hover {
                    background: var(--sm-primary);
                    color: var(--sm-white);
                    transform: translateY(-2px);
                }

        .news-details .article-header .title {
            font-size: 2.0rem;
            line-height: 1.4;
            margin-bottom: 2rem;
            color: var(--sm-heading);
            font-family: var(--sm-heading-font);
            font-weight: 700;
        }

@media (max-width: 768px) {
    .news-details .article-header .title {
        font-size: 2.2rem;
    }
}

.news-details .article-header .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

    .news-details .article-header .article-meta .author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .news-details .article-header .article-meta .author .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .news-details .article-header .article-meta .author .author-info {
            text-align: left;
        }

            .news-details .article-header .article-meta .author .author-info h4 {
                margin: 0;
                font-size: 1.1rem;
                color: var(--sm-heading);
            }

            .news-details .article-header .article-meta .author .author-info span {
                color: color-mix(in srgb, var(--sm-default), transparent 30%);
                font-size: 0.9rem;
            }

    .news-details .article-header .article-meta .post-info {
        display: flex;
        gap: 1.5rem;
        color: color-mix(in srgb, var(--sm-default), transparent 30%);
        font-size: 0.95rem;
    }

        .news-details .article-header .article-meta .post-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

@media (max-width: 768px) {
    .news-details .article-header .article-meta {
        justify-content: center;
        text-align: center;
    }

        .news-details .article-header .article-meta .post-info {
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
        }
}

.news-details .article-featured-image {
    /*margin: 0 -2rem 3rem;*/
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
}

    .news-details .article-featured-image::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    }

    .news-details .article-featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width: 768px) {
    .news-details .article-featured-image {
        margin: 0 -1rem 2rem;
        height: 300px;
    }
}

.news-details .article-wrapper {
    display: grid;
    /*grid-template-columns: minmax(200px, 300px) 1fr;*/
    gap: 3rem;
    position: relative;
}

@media (max-width: 992px) {
    .news-details .article-wrapper {
        grid-template-columns: 1fr;
    }
}

.news-details .article-wrapper .table-of-contents {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 2rem;
    background: var(--sm-white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .news-details .article-wrapper .table-of-contents {
        display: none;
    }
}

.news-details .article-wrapper .table-of-contents h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--sm-heading);
}

.news-details .article-wrapper .table-of-contents nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .news-details .article-wrapper .table-of-contents nav ul li {
        margin-bottom: 0.75rem;
    }

        .news-details .article-wrapper .table-of-contents nav ul li a {
            color: color-mix(in srgb, var(--sm-default), transparent 30%);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            padding-left: 1rem;
            position: relative;
        }

            .news-details .article-wrapper .table-of-contents nav ul li a::before {
                content: "";
                position: absolute;
                left: 0;
                top: 50%;
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background: var(--sm-primary);
                transform: translateY(-50%);
                opacity: 0;
                transition: all 0.3s ease;
            }

            .news-details .article-wrapper .table-of-contents nav ul li a:hover,
            .news-details .article-wrapper .table-of-contents nav ul li a.active {
                color: var(--sm-heading);
            }

                .news-details .article-wrapper .table-of-contents nav ul li a:hover::before,
                .news-details .article-wrapper .table-of-contents nav ul li a.active::before {
                    opacity: 1;
                }

.news-details .article-wrapper .article-content {
    font-size: 1rem;
    line-height: 1.8;
}

    .news-details .article-wrapper .article-content .content-section {
        margin-bottom: 4rem;
    }

        .news-details .article-wrapper .article-content .content-section .lead {
            font-size: 1.4rem;
            line-height: 1.6;
            color: var(--sm-heading);
            margin-bottom: 2rem;
        }

        .news-details .article-wrapper .article-content .content-section h2 {
            font-size: 2.2rem;
            color: var(--sm-heading);
            margin-bottom: 1.5rem;
        }

        .news-details .article-wrapper .article-content .content-section .highlight-quote {
            margin: 3rem 0;
            padding: 3rem;
            background: var(--sm-white);
            border-radius: 12px;
            position: relative;
        }

            .news-details .article-wrapper .article-content .content-section .highlight-quote::before {
                content: "“";
                position: absolute;
                top: 1rem;
                left: 1rem;
                font-size: 5rem;
                color: color-mix(in srgb, var(--sm-primary), transparent 85%);
                font-family: serif;
                line-height: 1;
            }

            .news-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
                padding-left: 3rem;
            }

                .news-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
                    font-size: 1.5rem;
                    font-style: italic;
                    color: var(--sm-heading);
                    margin-bottom: 1rem;
                }

                .news-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
                    font-style: normal;
                    color: color-mix(in srgb, var(--sm-default), transparent 30%);
                }

        .news-details .article-wrapper .article-content .content-section .image-with-caption {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

            .news-details .article-wrapper .article-content .content-section .image-with-caption.right {
                float: right;
                max-width: 450px;
                margin: 0 0 2rem 2rem;
            }

@media (max-width: 768px) {
    .news-details .article-wrapper .article-content .content-section .image-with-caption.right {
        float: none;
        max-width: 100%;
        margin: 2rem 0;
    }
}

.news-details .article-wrapper .article-content .content-section .image-with-caption img {
    width: 100%;
}

.news-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
    padding: 1rem;
    background: var(--sm-white);
    text-align: center;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--sm-default), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.news-details .article-wrapper .article-content .content-section .feature-points .point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

    .news-details .article-wrapper .article-content .content-section .feature-points .point i {
        font-size: 2rem;
        color: var(--sm-primary);
    }

    .news-details .article-wrapper .article-content .content-section .feature-points .point h4 {
        margin: 0 0 0.5rem;
        color: var(--sm-heading);
    }

    .news-details .article-wrapper .article-content .content-section .feature-points .point p {
        margin: 0;
        font-size: 1rem;
    }

.news-details .article-wrapper .article-content .content-section .comparison-grid {
    margin: 2rem 0;
}

    .news-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
        background: var(--sm-white);
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
    }

        .news-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
            margin-bottom: 1rem;
        }

            .news-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
                font-size: 2rem;
                color: var(--sm-primary);
            }

        .news-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
            color: var(--sm-heading);
            margin-bottom: 1rem;
        }

        .news-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
            padding-left: 1.2rem;
            margin: 0;
        }

            .news-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
                margin-bottom: 0.5rem;
                color: color-mix(in srgb, var(--sm-default), transparent 15%);
            }

.news-details .article-wrapper .article-content .content-section .key-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .news-details .article-wrapper .article-content .content-section .key-principles {
        grid-template-columns: 1fr;
    }
}

.news-details .article-wrapper .article-content .content-section .key-principles .principle {
    text-align: center;
    padding: 2rem;
    background: var(--sm-white);
    border-radius: 12px;
    position: relative;
}

    .news-details .article-wrapper .article-content .content-section .key-principles .principle .number {
        position: absolute;
        top: -1rem;
        left: 50%;
        transform: translateX(-50%);
        background: var(--sm-primary);
        color: var(--sm-white);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: bold;
    }

    .news-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
        color: var(--sm-heading);
        margin: 1rem 0;
    }

    .news-details .article-wrapper .article-content .content-section .key-principles .principle p {
        margin: 0;
        font-size: 0.95rem;
    }

.news-details .article-wrapper .article-content .content-section .info-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: color-mix(in srgb, var(--sm-primary), transparent 95%);
    border-radius: 12px;
    margin: 2rem 0;
}

    .news-details .article-wrapper .article-content .content-section .info-box .icon i {
        font-size: 2.5rem;
        color: var(--sm-primary);
    }

    .news-details .article-wrapper .article-content .content-section .info-box .content h4 {
        color: var(--sm-heading);
        margin-bottom: 0.5rem;
    }

    .news-details .article-wrapper .article-content .content-section .info-box .content p {
        margin: 0;
    }

.news-details .article-wrapper .article-content .content-section .future-trends {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .news-details .article-wrapper .article-content .content-section .future-trends {
        grid-template-columns: 1fr;
    }
}

.news-details .article-wrapper .article-content .content-section .future-trends .trend {
    text-align: center;
    padding: 2rem;
    background: var(--sm-white);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

    .news-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
        transform: translateY(-5px);
    }

    .news-details .article-wrapper .article-content .content-section .future-trends .trend i {
        font-size: 2.5rem;
        color: var(--sm-primary);
        margin-bottom: 1rem;
    }

    .news-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
        color: var(--sm-heading);
        margin-bottom: 1rem;
    }

    .news-details .article-wrapper .article-content .content-section .future-trends .trend p {
        margin: 0;
        font-size: 0.95rem;
    }

.news-details .article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--sm-default), transparent 90%);
}

    .news-details .article-footer h4 {
        color: var(--sm-heading);
        margin-bottom: 1.5rem;
    }

    .news-details .article-footer .share-article {
        margin-bottom: 3rem;
    }

        .news-details .article-footer .share-article .share-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

            .news-details .article-footer .share-article .share-buttons .share-button {
                display: flex;
                align-items: center;
                gap: 0.75rem;
                padding: 0.75rem 1.5rem;
                background: var(--sm-white);
                border-radius: 30px;
                color: var(--sm-heading);
                text-decoration: none;
                transition: all 0.3s ease;
            }

                .news-details .article-footer .share-article .share-buttons .share-button i {
                    font-size: 1.2rem;
                }

                .news-details .article-footer .share-article .share-buttons .share-button:hover {
                    background: var(--sm-primary);
                    color: var(--sm-white);
                    transform: translateY(-2px);
                }

                .news-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
                    background: #1DA1F2;
                }

                .news-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
                    background: #4267B2;
                }

                .news-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
                    background: #0077B5;
                }

    .news-details .article-footer .article-tags .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

        .news-details .article-footer .article-tags .tags .tag {
            padding: 0.5rem 1rem;
            background: color-mix(in srgb, var(--sm-primary), transparent 90%);
            color: var(--sm-primary);
            border-radius: 30px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .news-details .article-footer .article-tags .tags .tag:hover {
                background: var(--sm-primary);
                color: var(--sm-white);
                transform: translateY(-2px);
            }
