/* =========================================
   DATENSCHUTZ
========================================= */

.privacy-hero {
    position: relative;

    min-height: 360px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #ffffff;
    background: #08101b;
}


.privacy-hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(38, 80, 159, 0.48),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #080d14 0%,
            #101b2d 62%,
            #173d7f 100%
        );
}


.privacy-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 8, 15, 0.82),
            rgba(3, 8, 15, 0.14)
        );
}


.privacy-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 75px;
    padding-bottom: 75px;
}


.privacy-eyebrow {
    margin: 0 0 10px;

    color: var(--brand-blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


.privacy-hero .privacy-eyebrow {
    color: #ffffff;
}


.privacy-hero h1 {
    margin: 0;

    font-size: clamp(50px, 7vw, 82px);
    line-height: 0.95;

    letter-spacing: -0.05em;

    text-transform: uppercase;
}


.privacy-hero-content > p:last-child {
    max-width: 650px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.84);

    font-size: 17px;
}


/* =========================================
   LAYOUT
========================================= */

.privacy-section {
    padding-top: 35px;
    padding-bottom: 45px;
}


.privacy-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap: 25px;

    align-items: start;
}


.privacy-main {
    display: grid;
    gap: 18px;
}


/* =========================================
   CONTENT CARDS
========================================= */

.privacy-card {
    padding: 35px;

    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);

    background: #ffffff;

    box-shadow: var(--shadow-small);
}


.privacy-card h2 {
    margin: 0 0 17px;

    font-size: 26px;

    letter-spacing: -0.025em;
}


.privacy-card p {
    margin: 12px 0;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.75;
}


.privacy-card address {
    margin: 18px 0;

    color: var(--text-muted);

    font-size: 15px;
    font-style: normal;
    line-height: 1.75;
}


.privacy-card a {
    color: var(--brand-blue);

    text-decoration: none;
}


.privacy-card a:hover {
    text-decoration: underline;
}


/* LISTEN */

.privacy-list {
    margin: 20px 0;
    padding: 0;

    list-style: none;
}


.privacy-list li {
    position: relative;

    margin: 8px 0;
    padding-left: 27px;

    color: var(--text-muted);

    font-size: 15px;
}


.privacy-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--brand-blue);

    font-weight: 900;
}


/* KONTAKTDATEN */

.privacy-contact-data {
    margin-top: 20px;

    padding: 18px 22px;

    border-left: 4px solid var(--brand-blue);
    border-radius: 8px;

    background: var(--brand-blue-light);
}


.privacy-contact-data p {
    margin: 4px 0;
}


/* =========================================
   SIDEBAR
========================================= */

.privacy-sidebar {
    position: sticky;

    top: 100px;

    display: grid;
    gap: 18px;
}


.privacy-sidebar-card {
    padding: 28px;

    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);

    background: #ffffff;

    box-shadow: var(--shadow-small);
}


.privacy-sidebar-card h3 {
    margin: 0;

    font-size: 20px;
}


.privacy-sidebar-card address {
    margin-top: 13px;

    color: var(--text-muted);

    font-size: 14px;
    font-style: normal;

    line-height: 1.7;
}


.privacy-sidebar-card a {
    color: var(--brand-blue);

    text-decoration: none;
}


/* BLAUE KARTE */

.privacy-sidebar-blue {
    color: #ffffff;

    border: 0;

    background:
        linear-gradient(
            135deg,
            var(--brand-blue-dark),
            var(--brand-blue)
        );
}


.privacy-sidebar-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--brand-blue);
    background: #ffffff;

    font-size: 24px;
    font-weight: 900;
}


.privacy-sidebar-blue h2 {
    margin: 0;

    color: #ffffff;
}


.privacy-sidebar-blue p {
    margin: 12px 0 0;

    color: rgba(255, 255, 255, 0.84);

    font-size: 14px;
}


/* =========================================
   NAVIGATION
========================================= */

.privacy-navigation {
    margin-top: 15px;

    display: grid;
    gap: 8px;
}


.privacy-navigation a {
    padding: 13px 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 8px;

    color: var(--text-color);
    background: #f4f6f9;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}


.privacy-navigation a:hover,
.privacy-navigation a.active {
    color: #ffffff;

    background: var(--brand-blue);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 960px) {

    .privacy-layout {
        grid-template-columns: 1fr;
    }


    .privacy-sidebar {
        position: static;

        grid-template-columns:
            repeat(2, 1fr);
    }


    .privacy-sidebar-blue {
        grid-column: 1 / -1;
    }

}


/* =========================================
   SMARTPHONE
========================================= */

@media (max-width: 640px) {

    .privacy-hero {
        min-height: 320px;
    }


    .privacy-hero h1 {
        font-size: 47px;
    }


    .privacy-card {
        padding: 25px 20px;
    }


    .privacy-card h2 {
        font-size: 22px;
    }


    .privacy-sidebar {
        grid-template-columns: 1fr;
    }


    .privacy-sidebar-blue {
        grid-column: auto;
    }

}