/* ============================================================
   MUN.Plattform – Impressum / Über uns
   Seitenspezifische Styles. Setzt auf mun.css + Bootstrap auf.
   ============================================================ */

/* Hero */
.impressum-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    padding: 80px 0 64px;
}

.impressum-hero .section-label {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.impressum-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0;
}

.impressum-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 640px;
}

/* Inhaltsbereich */
.impressum-section {
    background: var(--bg-soft);
}

/* Info-Karten */
.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.info-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    flex-shrink: 0;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.info-card ul li {
    margin-bottom: 8px;
}

.info-card a {
    color: var(--primary);
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Ansprechpartner-Karte (Sidebar) */
.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.contact-card h3.contact-card__title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-card img {
    width: 130px;
    height: 168px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.contact-card h3.contact-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .contact-card {
        position: static;
    }
}
