/* ============================================
   PRESSEMELDUNGEN STYLES
   ============================================ */

/* Hero Bereich */
.presse-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.presse-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.presse-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Presse Intro */
.presse-intro {
    margin: 60px 0 40px;
}

.presse-info-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent-color);
}

.presse-info-box h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.presse-info-box h2 i {
    color: var(--accent-color);
    margin-right: 15px;
}

.presse-info-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.presse-kontakt {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

.presse-kontakt h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.presse-kontakt p {
    margin-bottom: 0;
    font-size: 1rem;
}

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

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

/* Pressemeldungen */
.presse-meldungen {
    margin: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
}

/* Meldung Cards */
.meldung-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.meldung-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.meldung-datum {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a67d8 100%);
    color: white;
    padding: 25px 20px;
    min-width: 130px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.datum-box {
    margin-bottom: 15px;
}

.datum-box .tag {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.datum-box .monat {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.datum-box .jahr {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

.kategorie {
    background: rgba(255,255,255,0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meldung-content {
    padding: 35px;
    flex: 1;
}

.meldung-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.meldung-teaser {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.meldung-bild {
    margin: 25px 0;
    text-align: center;
}

.meldung-bild img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    max-height: 400px;
    object-fit: contain;
}

.bild-unterschrift {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

.meldung-aktionen {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.btn-download {
    background: #f8f9fa;
    color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-download:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-download i {
    font-size: 1.2rem;
}

.meldung-zusatz {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 4px solid var(--accent-color);
}

.meldung-zusatz h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.meldung-zusatz h4 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.meldung-zusatz ul {
    padding-left: 20px;
    color: #555;
}

.meldung-zusatz li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.meldung-zusatz blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 15px 0;
    color: #555;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.meldung-zusatz cite {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
    font-weight: 600;
}

/* Pressekit Bereich */
.pressekit-area {
    margin: 60px 0;
}

.pressekit-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a67d8 100%);
    color: white;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pressekit-icon {
    font-size: 3.5rem;
    margin-right: 30px;
    opacity: 0.9;
}

.pressekit-content {
    flex: 1;
}

.pressekit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.pressekit-content h3 i {
    margin-right: 15px;
    opacity: 0.9;
}

.pressekit-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.pressekit-downloads {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-accent {
    background: white;
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 300px;
    border: none;
}

.btn-accent:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pressekit-info {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Archiv Bereich */
.presse-archiv {
    margin: 60px 0 40px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    border: 2px dashed #d0d0d0;
}

.archiv-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.archiv-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.archiv-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #ddd;
}

.archiv-item:hover {
    border-left-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.archiv-datum {
    min-width: 120px;
    font-weight: 600;
    color: var(--primary-color);
}

.archiv-titel {
    flex: 1;
    color: #555;
}

.archiv-link {
    background: #e9ecef;
    color: #333;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.archiv-link:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Back to Home Button */
.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 40px auto;
    border: none;
}

.back-to-home:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .meldung-card {
        flex-direction: column;
    }
    
    .meldung-datum {
        min-width: auto;
        padding: 20px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .datum-box {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 0;
    }
    
    .datum-box .tag {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .datum-box .monat,
    .datum-box .jahr {
        display: inline;
        font-size: 1rem;
    }
    
    .pressekit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .pressekit-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .presse-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .presse-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .presse-info-box {
        padding: 25px;
    }
    
    .meldung-content {
        padding: 25px;
    }
    
    .meldung-content h3 {
        font-size: 1.5rem;
    }
    
    .meldung-aktionen {
        flex-direction: column;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
    }
    
    .archiv-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .archiv-datum {
        min-width: auto;
    }
    
    .archiv-link {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .presse-hero {
        padding: 80px 0 60px;
    }
    
    .presse-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .meldung-datum {
        flex-direction: column;
        text-align: center;
    }
    
    .datum-box {
        flex-direction: column;
        gap: 5px;
    }
}