/* Clubfans Reunited – Impressum
   Ergaenzt anmeldung.css und information.css: nur die Bausteine, die es
   ausschliesslich auf dieser Seite gibt. */

/* ---- Impressum ----------------------------------------------------------- */

/* Auf der Impressumsseite endet der Inhalt mit der schwarzen Tafel – ohne
   Link darunter. Der Abstand zum Footer kommt deshalb vom Hauptbereich. */
.seite-impressum main { padding-bottom: 80px; }

/* Links im Fliesstext der schwarzen Tafel. Ohne diese Regel greift das
   Clubrot aus anmeldung.css – auf Schwarz kaum zu lesen. */
.info-tafel p a {
    color: var(--weiss);
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.info-tafel p a:hover,
.info-tafel p a:focus-visible { color: var(--rot-hell); }

/* ---- Impressum: Kontaktbloecke ------------------------------------------ */
/* Nur auf impressum.html vorhanden – auf der Informationsseite gibt es
   diese Klassen nicht, die Regeln greifen dort also ins Leere. */

.impressum-bloecke {
    display: grid;
    /* zwei Spalten, solange Platz ist – darunter automatisch untereinander */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.impressum-block {
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--rot);
    border-radius: var(--radius);
}

.block-titel {
    margin: 0 0 0.6rem;
    font-family: var(--schrift-akzent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.impressum-block p {
    margin: 0 0 0.2rem;
    line-height: 1.5;
}

.impressum-block p:last-child { margin-bottom: 0; }

.block-name {
    font-family: var(--schrift-akzent);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--weiss);
}

.impressum-block a {
    color: var(--weiss);
    text-decoration: underline;
    text-underline-offset: 3px;
    /* lange Adressen duerfen umbrechen, statt den Block zu sprengen */
    overflow-wrap: anywhere;
}

.impressum-block a:hover,
.impressum-block a:focus-visible { color: var(--rot-hell); }

/* ---- Impressum: Aufzaehlung zur Gebuehr ---------------------------------- */

.impressum-punkte {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.impressum-punkte li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.impressum-punkte li:last-child { margin-bottom: 0; }

/* kleiner roter Strich als Aufzaehlungszeichen */
.impressum-punkte li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 0.7rem;
    height: 2px;
    background: var(--rot);
}

.punkt-titel {
    display: block;
    font-weight: 700;
    color: var(--weiss);
}

