/* =====================================
   FF OBERAU - CONTENT SECTIONS
===================================== */

.content-section {
    max-width: 850px;
    margin: 0 auto;
    padding: 0;
}

/* Abstand zwischen Inhaltsblöcken */

.content-section + .content-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* =====================================
   ÜBERSCHRIFTEN
===================================== */

/* Hauptabschnitt */

.content-section h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.5rem 0;
    color: var(--wp--preset--color--contrast, #222);
}


.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--wp--preset--color--contrast, #222);
}

/* Standardabschnitt */

.content-section h3 {
    position: relative;
    padding-left: 1rem;

    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;

    margin: 2rem 0 0.75rem 0;

    color: var(--wp--preset--color--contrast, #222);
}

/* Feuerwehr-Akzent */

.content-section h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;

    width: 4px;
    height: 1.1em;

    background: var(--wp--preset--color--primary, #c00000);
    border-radius: 2px;
}

.content-section h4 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;

    margin: 1.5rem 0 0.5rem 0;

    color: var(--wp--preset--color--contrast, #222);
}

/* =====================================
   TEXT
===================================== */

.content-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;

    color: var(--wp--preset--color--contrast, #333);
}

/* =====================================
   LISTEN
===================================== */

.content-section ul,
.content-section ol {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

.content-section li {
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

/* =====================================
   LINKS
===================================== */

.content-section a {
    color: var(--wp--preset--color--primary, #c00000);
    text-decoration: none;
    font-weight: 500;
}

.content-section a:hover {
    text-decoration: underline;
}

/* =====================================
   ZITATE
===================================== */

.content-section blockquote {
    margin: 2rem 0;
    padding-left: 1rem;

    border-left: 4px solid var(--wp--preset--color--primary, #c00000);

    font-style: italic;
    color: #555;
}

/* =====================================
   BILDER
===================================== */

.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* =====================================
   TABELLEN
===================================== */

.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.content-section th,
.content-section td {
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.content-section th {
    background: rgba(0, 0, 0, 0.04);
    font-weight: 600;
}

/* =====================================
   HORIZONTAL LINE
===================================== */

.content-section hr {
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 2rem 0;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 768px) {

    .content-section {
        max-width: 100%;
    }
	
    .content-section h1 {
        font-size: 2.2rem;
    }
    .content-section h2 {
        font-size: 1.75rem;
    }

    .content-section h3 {
        font-size: 1.3rem;
    }

    .content-section h4 {
        font-size: 1.1rem;
    }

    .content-section p,
    .content-section li {
        font-size: 0.98rem;
    }

}