/* ============================================================
   Impressum & Datenschutz – gemeinsame Basis-Styles
   ============================================================ */

.imp_article_wrapper {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    padding: 30px 16px 60px;
    box-sizing: border-box;
}

.imp_content {
    box-sizing: border-box;
    width: 100%;
    max-width: 900px;
    background-color: #ffffff;
    padding: 40px 48px;
    margin: 0;
    border-radius: 14px;
    border: 1px solid #e4e4e4;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);

    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.8;
    color: #333;
}

/* ---- Datenschutz: Header ---- */
.ds_header {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eee;
}

.ds_label {
    display: inline-block;
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin: 0 0 10px;
}

.ds_header h1 {
    font-size: 2em;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.2;
}

.ds_stand {
    font-size: 0.78em;
    color: #aaa;
    margin: 0;
    font-style: italic;
}

/* ---- Inhaltsverzeichnis ---- */
.ds_toc {
    background: #f8f8f8;
    border-left: 3px solid #ccc;
    border-radius: 0 8px 8px 0;
    padding: 18px 24px;
    margin-bottom: 40px;
    font-size: 0.88em;
}

.ds_toc strong {
    display: block;
    margin-bottom: 10px;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}

.ds_toc ol {
    margin: 0;
    padding-left: 20px;
}

.ds_toc ol li {
    margin-bottom: 4px;
}

.ds_toc a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.ds_toc a:hover {
    color: #111;
}

/* ---- Abschnitte ---- */
.ds_section {
    margin-bottom: 40px;
    padding-top: 10px;
}

.ds_section:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 36px;
}

.imp_content h1 {
    font-size: 2em;
    font-weight: 700;
    color: #111;
    margin: 0 0 24px;
}

.imp_content h2 {
    font-size: 1.25em;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

.imp_content h3 {
    font-size: 1em;
    font-weight: 700;
    color: #333;
    margin: 24px 0 8px;
}

.imp_content p {
    margin: 0 0 14px;
}

.imp_content ul,
.imp_content ol {
    padding-left: 24px;
    margin: 0 0 14px;
}

.imp_content ul li,
.imp_content ol li {
    margin-bottom: 4px;
}

.imp_content a {
    color: #444;
    text-decoration: underline;
    text-decoration-color: #ccc;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.imp_content a:hover {
    color: #111;
    text-decoration-color: #888;
}

/* ---- Adress-Block ---- */
.ds_address {
    font-style: normal;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 12px 0 20px;
    font-size: 0.9em;
    line-height: 1.9;
    border: 1px solid #eee;
}

.ds_address a {
    color: #555;
}

/* ---- Impressum: 2-Spalten-Flex ---- */
.imp_content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 32px 0;
}

.imp_content .imp_flex {
    display: flex;
    gap: 32px;
}

.imp_content .imp_left_column,
.imp_content .imp_right_column {
    flex: 1;
}

.imp_content .imp_titel {
    font-weight: 700;
}

.imp_content .imp_inhalt {
    margin: 5px 0 0 5px;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 800px) {
    .imp_content {
        padding: 28px 24px;
    }

    .ds_header h1,
    .imp_content h1 {
        font-size: 1.6em;
    }

    .imp_content .imp_flex {
        flex-direction: column;
        gap: 0;
    }

    .imp_content .imp_left_column,
    .imp_content .imp_right_column {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .imp_article_wrapper {
        padding: 16px 10px 40px;
    }

    .imp_content {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .ds_header h1,
    .imp_content h1 {
        font-size: 1.35em;
    }

    .ds_toc {
        padding: 14px 16px;
    }
}
