/* =========================================
   Presse Seite – Matmoe Modern
   ========================================= */

.presse-page {
    background:
        radial-gradient(circle at top right, rgba(144, 192, 39, 0.12), transparent 32%),
        linear-gradient(180deg, #f7faf5 0%, #ffffff 100%);
    color: #111827;
}

.presse-hero {
    padding: 120px 0 70px;
}

.presse-hero-inner {
    max-width: 920px;
}

.presse-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(144, 192, 39, 0.14);
    color: #4f6f12;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.presse-hero h1 {
    margin: 0 0 24px;
    color: #111827;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.presse-hero p {
    max-width: 760px;
    margin: 0;
    color: #4b5563;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
}

.presse-section {
    padding: 0 0 110px;
}

.presse-intro-card,
.presse-note {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.presse-intro-card {
    margin-bottom: 72px;
}

.presse-intro-card h2,
.presse-note h2 {
    margin: 0 0 16px;
    color: #111827;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.presse-intro-card p,
.presse-note p {
    max-width: 860px;
    margin: 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.75;
}

.presse-block {
    margin-bottom: 72px;
}

.presse-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.presse-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #6f961d;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.presse-heading h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.presse-heading p {
    margin: 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.7;
}

.presse-download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.presse-download-card {
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.09);
}

.presse-download-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #f3f4f6;
}

.presse-download-content {
    padding: 26px;
}

.presse-download-content h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 24px;
    line-height: 1.2;
}

.presse-download-content p {
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}

.presse-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    background: #90C027;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(144, 192, 39, 0.32);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.presse-download-btn:hover,
.presse-download-btn:focus-visible {
    background: #a6d72f;
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(144, 192, 39, 0.38);
}

.presse-note {
    margin-bottom: 72px;
    background:
        radial-gradient(circle at top right, rgba(144, 192, 39, 0.10), transparent 34%),
        #ffffff;
}

/* =========================================
   Mobile
   ========================================= */

@media (max-width: 900px) {
    .presse-hero {
        padding: 96px 0 52px;
    }

    .presse-download-grid {
        grid-template-columns: 1fr;
    }

    .presse-intro-card,
    .presse-block,
    .presse-note {
        margin-bottom: 52px;
    }
}

@media (max-width: 640px) {
    .presse-hero {
        padding: 78px 0 42px;
    }

    .presse-kicker {
        font-size: 12px;
    }

    .presse-hero h1 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .presse-hero p,
    .presse-heading p,
    .presse-intro-card p,
    .presse-note p {
        font-size: 16px;
        line-height: 1.7;
    }

    .presse-intro-card,
    .presse-note {
        padding: 26px 22px;
        border-radius: 26px;
    }

    .presse-download-card {
        border-radius: 26px;
    }

    .presse-download-content {
        padding: 22px;
    }

    .presse-download-btn {
        width: 100%;
    }

    .presse-section {
        padding-bottom: 76px;
    }
}