/* ─── Presse : surcharges ─── */
body {
    background: linear-gradient(180deg, #FCE1E4 0%, #E0F7FA 50%, #E8F5E9 100%);
    background-attachment: fixed;
}

.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;
    display: flex;
    flex-direction: column;
}

.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-image {
    position: relative;
    margin: -24px -24px 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(135deg, rgba(79, 142, 203, 0.08), rgba(223, 36, 147, 0.08));
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.press-card:hover .press-image img,
.press-card:focus-within .press-image img {
    transform: scale(1.04);
}

.press-image + .press-flag {
    margin-top: 18px;
}

.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); }
