/* ============================================================
   Pressemitteilungen — Detailseite und Uebersicht /presse/.
   Die Leiste im Header steht in header-v2.css (auf allen Seiten).

   Design-Tokens wie ueberall im Theme (--hv2-*), damit die Seiten
   dieselbe Handschrift haben wie Karriere und Module.
   ============================================================ */

/* --- Detailseite --- */
.presse-hero-date {
    display: block;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--hv2-text-subtle);
}

.presse-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--hv2-section-text-muted);
    margin-bottom: 24px;
}

.presse-back:hover {
    color: var(--hv2-accent-strong);
}

.presse-quelle {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 48px;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid var(--hv2-section-card-border);
    background: var(--hv2-section-card-bg);
    font-size: 15px;
}

.presse-quelle > i {
    color: var(--hv2-accent-strong);
    font-size: 18px;
    margin-top: 2px;
}

.presse-quelle__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--hv2-section-text-subtle);
    margin-bottom: 2px;
}

.presse-quelle a {
    color: var(--hv2-accent-strong);
    font-weight: 600;
    text-decoration: none;
}

.presse-quelle a:hover {
    text-decoration: underline;
}

/* --- Uebersicht --- */
.presse-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.presse-item {
    position: relative;
    background: var(--hv2-section-card-bg);
    border: 1px solid var(--hv2-section-card-border);
    border-radius: 18px;
    padding: 26px 28px 22px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.presse-item:hover {
    border-color: rgba(33, 150, 243, 0.32);
    transform: translateY(-2px);
    box-shadow:
        0 16px 40px -12px rgba(33, 150, 243, 0.18),
        0 1px 3px rgba(15, 23, 42, 0.05);
}

.presse-item__date {
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: var(--hv2-section-text-subtle);
}

.presse-item__title {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin: 6px 0 10px;
}

.presse-item__title a {
    color: var(--hv2-section-text);
    text-decoration: none;
}

.presse-item:hover .presse-item__title a {
    color: var(--hv2-accent-strong);
}

.presse-item__excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--hv2-section-text-muted);
    margin: 0 0 12px;
}

.presse-item__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--hv2-accent-strong);
}

.presse-empty {
    text-align: center;
    font-size: 15px;
    color: var(--hv2-section-text-muted);
}
