/* Sticky-Footer: Inhalt füllt mindestens die Bildschirmhöhe,
   damit der Footer bei wenig Inhalt trotzdem ganz unten sitzt.
   Wichtig: der wachsende Flex-Bereich ist <main> (direktes Kind von body),
   NICHT die darin liegende .presse-section. */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

.presse-section {
    padding: var(--spacing-large) var(--spacing-medium);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
}

.site-footer {
    flex-shrink: 0;
}

.presse-intro {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

.presse-intro h1,
.presse-intro h2 {
    font-size: 2.2rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.presse-intro p {
    font-size: 1.1rem;
    color: var(--text-color, #333);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.presse-liste {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: var(--spacing-large);
}

.presse-item {
    background: var(--white);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presse-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.presse-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1.5rem;
    margin-bottom: 0.8rem;
}

.presse-meta time {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.presse-quelle {
    font-size: 0.95rem;
    color: #777;
}

.presse-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.presse-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color, #555);
    margin-bottom: 1.5rem;
}

.presse-zitat {
    margin: 0 0 1.5rem 0;
    padding: 0.2rem 0 0.2rem 1.5rem;
    border-left: 3px solid var(--secondary-color);
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: #444;
}

.presse-aktionen {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.presse-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--secondary-color);
}

.presse-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.presse-hinweis {
    font-size: 0.9rem;
    color: #999;
}

@media (max-width: 768px) {
    .presse-section {
        padding: var(--spacing-medium) var(--spacing-small);
    }

    .presse-intro h1,
    .presse-intro h2 {
        font-size: 1.8rem;
    }

    .presse-item {
        padding: 1.5rem;
    }

    .presse-item h3 {
        font-size: 1.3rem;
    }

    .presse-zitat {
        font-size: 1.05rem;
        padding-left: 1rem;
    }

    .presse-aktionen {
        gap: 0.75rem;
    }

    .presse-button {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}
