﻿/* Les News Page Styles */

.news-header {
    padding-top: clamp(80px, 15vh, 120px);
    padding-bottom: clamp(2rem, 8vh, 4rem);
}

.news-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(1rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 6vh, 4rem);
}

.news-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.1;
}

.news-description {
    max-width: clamp(300px, 40vw, 450px);
    font-size: var(--fs-body);
    color: var(--text-black);
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.news-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.news-image {
    flex: 1;
    aspect-ratio: 16 / 9;
    background-color: #E2E2E2;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
}

.news-content {
    flex: 1;
}

.news-item-title {
    font-size: var(--fs-h3);
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.news-date {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
}

.news-snippet {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-black);
    margin-bottom: 25px;
    text-align: justify;
}

.btn-news {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-news:hover {
    background-color: var(--text-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.all-news-container {
    display: flex;
    justify-content: center;
    margin: 60px 0 100px;
}

.btn-all-news {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-all-news:hover {
    background-color: var(--text-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .news-intro {
        flex-direction: column;
        gap: 20px;
    }

    .news-description {
        text-align: center;
        max-width: 100%;
    }

    .news-item {
        flex-direction: column;
        gap: 30px;
    }

    .news-image {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .news-title {
        font-size: 36px;
    }

    .news-item-title {
        font-size: 24px;
    }
}