/* ─── Presse : surcharges ─── */
:root {
    --bg-yellow: #ffde59;
    --bg-green: #9fe2b0;
    --bg-teal: #31c1d1;
}

body {
    background: linear-gradient(120deg, var(--bg-yellow) 0%, var(--bg-green) 40%, var(--bg-teal) 100%);
}

.page { max-width: 960px; }

.intro { margin-bottom: 28px; }

.intro-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    padding: 18px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(79, 142, 203, 0.24);
    box-shadow: 0 18px 36px rgba(20, 74, 104, 0.12);
}

.intro-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(223, 36, 147, 0.12);
    color: var(--accent-dark);
    font-weight: 800;
    letter-spacing: 0.3px;
}

.intro-contact {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
}

.intro-contact a {
    color: var(--heading);
    text-decoration: none;
    font-weight: 700;
}

.intro-contact a:hover,
.intro-contact a:focus-visible {
    color: var(--accent);
    text-decoration: underline;
}

/* ─── Press grid ─── */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.press-card {
    position: relative;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(79, 142, 203, 0.16);
    box-shadow: 0 18px 36px rgba(20, 74, 104, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.press-card:hover,
.press-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(20, 74, 104, 0.16);
    border-color: rgba(223, 36, 147, 0.45);
}

.press-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(79, 142, 203, 0.12);
    color: var(--heading);
    font-weight: 800;
    letter-spacing: 0.2px;
}

.press-flag-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.press-flag.video {
    background: rgba(223, 36, 147, 0.12);
    color: var(--accent-dark);
}

.press-flag-icon.video { color: currentColor; }

.press-title {
    margin: 18px 0 12px;
    font-family: 'HK Grotesk', 'Baloo 2', cursive;
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.4;
    color: var(--text-primary);
}

.press-title a {
    color: inherit;
    text-decoration: none;
}

.press-title a:hover,
.press-title a:focus-visible {
    color: var(--accent);
    text-decoration: underline;
}

.press-source {
    margin: 0 0 8px;
    font-weight: 700;
    color: var(--heading);
}

.press-meta {
    margin: 0 0 12px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #344054;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(223, 36, 147, 0.12);
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.press-link:hover,
.press-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(223, 36, 147, 0.22);
}

/* ─── CTA section ─── */
.cta {
    margin: 56px 0 12px;
    padding: 32px clamp(16px, 4vw, 48px);
    border-radius: 32px;
    background: rgba(79, 142, 203, 0.08);
    text-align: center;
}

.cta p {
    margin: 0 0 14px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta strong { color: var(--heading); }
