.infos-hero {
    background: linear-gradient(135deg, #1a4d3a 0%, #25d366 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 70px;
}

.infos-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.infos-hero p {
    font-size: 1.1em;
    opacity: 0.95;
}

.infos-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.infos-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.infos-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 2px solid #1a4d3a;
    color: #1a4d3a;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9em;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1a4d3a;
    color: white;
}

.refresh-btn {
    padding: 10px 20px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.refresh-btn:hover {
    background: #1a8a51;
    transform: scale(1.05);
}

.refresh-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* FEATURED ARTICLE */
.featured-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 77, 58, 0.15);
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.featured-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.featured-label {
    color: #25d366;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.featured-title {
    font-size: 2em;
    font-weight: 700;
    color: #1a4d3a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-source-date {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #999;
}

.featured-body {
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1em;
    flex-grow: 1;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

.featured-body::-webkit-scrollbar {
    width: 6px;
}

.featured-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.featured-body::-webkit-scrollbar-thumb {
    background: #25d366;
    border-radius: 3px;
}

.featured-footer {
    display: flex;
    gap: 15px;
    align-items: center;
}

.read-full-btn {
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-full-btn:hover {
    background: #1a8a51;
    transform: translateX(3px);
}

.featured-loading {
    color: #25d366;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* VOIR AUSSI GRID */
.see-also-section {
    margin-top: 60px;
}

.see-also-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a4d3a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #25d366;
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 77, 58, 0.15);
}

.news-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: linear-gradient(135deg, #1a4d3a 0%, #25d366 100%);
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-source {
    font-size: 0.8em;
    color: #25d366;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #1a4d3a;
    margin-bottom: 12px;
    line-height: 1.3;
    flex-grow: 1;
}

.news-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8em;
    color: #999;
}

.read-more {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: #1a8a51;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.spinner {
    border: 4px solid #f0f0f0;
    border-top: 4px solid #25d366;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 3em;
    color: #25d366;
    margin-bottom: 15px;
}

.empty-state h3 {
    color: #1a4d3a;
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
}

.update-info {
    background: #f0f7f3;
    border-left: 4px solid #25d366;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 0.95em;
    color: #1a4d3a;
}

.update-info i {
    margin-right: 8px;
    color: #25d366;
}

@media (max-width: 968px) {
    .featured-article {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }

    .featured-content {
        padding: 30px;
    }

    .featured-title {
        font-size: 1.6em;
    }

    .featured-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .infos-hero h1 {
        font-size: 1.8em;
    }

    .infos-hero p {
        font-size: 1em;
    }

    .infos-grid {
        grid-template-columns: 1fr;
    }

    .infos-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .infos-filters {
        justify-content: center;
    }

    .refresh-btn {
        justify-content: center;
    }

    .featured-content {
        padding: 20px;
    }

    .featured-title {
        font-size: 1.4em;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #1a4d3a 0%, #0f3428 100%);
        width: 100%;
        text-align: center;
        transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        padding: 0.8rem 0;
        display: flex;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.95rem;
        transition: all 0.25s ease;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link:hover {
        background: rgba(37, 211, 102, 0.15);
        padding-left: 2rem;
    }
}
