/* =========================================
   TYPOGRAFIE & TEXTE
   ========================================= */
.site-main {
    color: #333333;
    line-height: 1.6;
    font-size: 1.1rem; /* Etwas größer und besser lesbar */
}

/* Alle Überschriften im Inhaltsbereich */
.site-main h1, 
.site-main h2, 
.site-main h3, 
.site-main h4 {
    color: var(--color-primary-dark, #0f2b46);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.25;
}

/* Die Hauptüberschrift ganz oben braucht keinen Abstand nach oben */
.site-main h1:first-child {
    margin-top: 0;
}

.site-main h1 { font-size: 2.5rem; }
.site-main h2 { font-size: 2rem; border-bottom: 2px solid #f4f7f9; padding-bottom: 0.5rem; }
.site-main h3 { font-size: 1.5rem; }

/* Absätze und Listen */
.site-main p {
    margin-bottom: 1.5rem;
}

.site-main ul, 
.site-main ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.site-main li {
    margin-bottom: 0.5rem;
}

/* Links im Fließtext */
.site-main a:not(.btn) {
    color: var(--color-primary-light, #3498db);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease, color 0.2s ease;
}

.site-main a:not(.btn):hover {
    border-bottom-color: var(--color-primary-light, #3498db);
    color: #1d6fa5;
}

/* =========================================
   BILDER (TYPO3 Standard)
   ========================================= */
.site-main figure {
    margin: 0 0 2rem 0;
}

.site-main img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Schicke abgerundete Ecken */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Leichter Schatten */
    display: block;
}

/* Bildunterschriften */
.site-main figcaption {
    font-size: 0.9rem;
    color: #666666;
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

/* =========================================
   ABSTÄNDE ZWISCHEN TYPO3-ELEMENTEN
   ========================================= */
/* .frame ist die Standard-Klasse, die TYPO3 um jeden Inhalts-Block legt */
.site-main .frame {
    margin-bottom: 3rem;
}
