@charset "UTF-8";
/* CSS Document */

/* ========================================================================= */
/* CSS POUR SECTIONS COLLAPSIBLES ARTICLES - À AJOUTER À VOTRE TEMPLATE    */
/* ========================================================================= */

/* Magazine Covers Section */
.magazine-covers {
    margin-bottom: 3rem;
}

.covers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.cover-item img {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

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

/* Collapsible Sections Styling */
.collapsible-section {
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, #4A618B 0%, #5a7ba8 100%);
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    user-select: none;
}

.section-header:hover {
    background: linear-gradient(135deg, #3a4f73 0%, #4A618B 100%);
}

.section-header > div {
    flex: 1;
}

.section-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

.section-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.collapsible-section.collapsed .section-arrow {
    transform: rotate(180deg);
}

.section-content {
    display: none;
    padding: 25px;
    background: #fafafa;
}

.collapsible-section:not(.collapsed) .section-content {
    display: block;
}

/* Press Categories - NO COLUMNS */
.press-category {
    background: white;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.press-category h4 {
    color: #4A618B;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4A618B;
}

/* Article Items */
.article-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #4A618B;
    transition: box-shadow 0.3s ease;
}

.article-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-link {
    color: #005FA9;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.article-link:hover {
    text-decoration: underline;
}

.article-summary {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 5px;
}

.article-date {
    color: #888;
    font-size: 0.9rem;
    font-weight: normal;
}

/* Special indicators */
.new-indicator {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 10px;
    text-transform: uppercase;
}

.updated-indicator {
    background: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 10px;
    text-transform: uppercase;
}

/* Section intro boxes */
.section-intro {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid #4A618B;
    font-style: italic;
}

/* Responsive Design pour les sections collapsibles */
@media (max-width: 768px) {
    .section-header {
        padding: 15px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .section-content {
        padding: 20px;
    }

    .covers-grid {
        gap: 15px;
    }

    .press-category {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-header {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .section-arrow {
        margin-left: 0;
        margin-top: 10px;
    }

    .article-item {
        padding: 12px;
    }

    .covers-grid {
        flex-direction: column;
        align-items: center;
    }

    .press-category {
        padding: 15px;
    }

    .section-content {
        padding: 15px;
    }
}

/* Titres plus gros sur mobile et tablette uniquement */
@media (max-width: 1024px) {
    .section-title {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem !important;
    }
}