.press-card__content p {
    margin: 0;
}

.press-card__content h2 {
    margin: 0;
}

.press-card__title {
    margin-bottom: 12px;
}

.press-card__meta {
    margin-bottom: 20px;
}

.press-card__link {
    margin-top: 0;
}

/* ==========================================================
   Presseseite
   ========================================================== */

.press-page {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    background: var(--station-background);
    color: var(--station-text);
}

/* ==========================================================
   Hero
   ========================================================== */

.press-page__hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 42px var(--page-padding);
    background: var(--station-green);
    text-align: center;
}

.press-page__title {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 8vw, 3.75rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: .02em;
}

.press-page__intro {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(255,255,255,.9);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ==========================================================
   Inhaltsbereich
   ========================================================== */

.press-page__content {
    width: 100%;
    max-width: 1600px;
    margin-inline: auto;
    padding: 48px var(--page-padding) 80px;
}

/* WordPress Constrained Layout aufheben */

.press-page__content,
.press-page__content .entry-content,
.press-page__content .wp-block-post-content {
    width: 100%;
    max-width: none;
}

.press-page__content .entry-content > *,
.press-page__content .wp-block-post-content > * {
    max-width: none;
}

/* =========================================================
   Artikelübersicht
   ========================================================= */

.press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

.press-card {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;

    align-self: start;

    border: 1px solid var(--station-border);
    background: var(--station-panel);
}

.press-card__content {
    display: block;
    width: 100%;
    padding: 5px 15px;
}

/* Quelle + Datum */

.press-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;

    margin: 0 0 16px;

    color: #615b50;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .9rem;
    line-height: 1.3;
}

.press-card__source {
    font-weight: 600;
}

.press-card__separator {
    opacity: .55;
}

/* Überschrift */

.press-card__title {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 400;
    line-height: 1.3;
}

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

.press-card__title a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Link */

.press-card__link {
    display: inline-block;
    margin: 0;

    color: var(--station-green-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: .95rem;
    font-weight: 600;

    text-decoration: underline;
    text-underline-offset: 4px;
}

.press-card__link:hover {
    color: var(--station-green);
}

.press-card a:focus:not(:focus-visible) {
    outline: none;
}

.press-card a:focus-visible {
    outline: 2px solid var(--vollenborn-accent);
    outline-offset: 3px;
}

/* ==========================================================
   Keine Artikel
   ========================================================== */

.press-grid__empty {
    margin: 0;
    padding: 28px;

    border: 1px solid var(--station-border);
    background: var(--station-panel);

    text-align: center;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.5;
}

/* ==========================================================
   Responsive
   ========================================================== */

@media (min-width: 700px) {

    .press-page__content {
        padding-top: 56px;
        padding-bottom: 88px;
    }

}

@media (min-width: 1200px) {

    .press-page__hero {
        padding-block: 58px;
    }

    .press-page__intro {
        font-size: 1.15rem;
    }

}