/* ============================================================
   presse.css - Page "Ils parlent de nous"
   ============================================================ */

.presse-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    min-height: 80vh;
}

.presse-container h1 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #14244a;
    text-align: center;
    margin-bottom: 8px;
}

.presse-subtitle {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* ---------- GRILLE ARTICLES ---------- */
.presse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* ---------- CARTE ARTICLE ---------- */
.presse-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px 22px;
    box-shadow: 0 3px 16px rgba(80, 80, 110, 0.09);
    text-decoration: none;
    color: inherit;
    border-left: 4px solid #188cff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.presse-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(80, 80, 110, 0.15);
    text-decoration: none;
    color: inherit;
}

.presse-media {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #188cff;
    margin-bottom: 10px;
}

.presse-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #14244a;
    line-height: 1.4;
    margin: 0 0 10px;
}

.presse-excerpt {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 12px;
    flex-grow: 1;
}

.presse-date {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

/* ---------- SECTION REFERENCES ---------- */
.presse-also {
    text-align: center;
    margin-bottom: 40px;
}

.presse-also h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #14244a;
    margin-bottom: 20px;
}

.presse-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.presse-badge {
    display: inline-block;
    padding: 10px 24px;
    background: #f4f6f9;
    border-radius: 8px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #14244a;
    text-decoration: none;
    transition: background 0.2s;
}

.presse-badge:hover {
    background: #e2e8f0;
    text-decoration: none;
    color: #14244a;
}

/* ---------- CTA CONTACT ---------- */
.presse-cta {
    text-align: center;
    padding: 28px;
    background: #f4f6f9;
    border-radius: 12px;
}

.presse-cta p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
    .presse-container {
        padding: 24px 12px 40px;
    }

    .presse-container h1 {
        font-size: 1.6rem;
    }

    .presse-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .presse-card {
        padding: 20px 18px 18px;
    }
}
