/*
 * ==========================================================
 * SIHU21TV_PUBLIC_INFO_V3
 * Öffentliche Informations- und Rechtsseiten
 * ==========================================================
 */

:root {
    --pi-blue: #47A1DD;
    --pi-blue-hover: #2E82BE;
    --pi-blue-soft: #E8F3FB;

    --pi-text: #222222;
    --pi-muted: #6B6B6B;

    --pi-bg: #F7F7F5;
    --pi-card: #FFFFFF;
    --pi-border: #EBEBEB;
}


* {
    box-sizing: border-box;
}


html {
    min-height: 100%;
    background: var(--pi-bg);
}


body {
    min-height: 100vh;
    margin: 0;

    color: var(--pi-text);

    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            #ffffff 245px,
            #f7f7f5 520px
        );

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    -webkit-font-smoothing: antialiased;
}


a {
    color: inherit;
    text-decoration: none;
}


/* ==========================================================
   TOPBAR
   ========================================================== */

.public-info-topbar {
    position: sticky;
    z-index: 50;
    top: 0;

    height: 76px;

    display: flex;
    align-items: center;

    background: rgba(255,255,255,.94);

    border-bottom: 1px solid rgba(235,235,235,.94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.public-info-topbar-inner {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.public-info-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--pi-text);

    font-size: .95rem;
    font-weight: 700;

    letter-spacing: -.015em;
}


.public-info-logo {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: grid;
    place-items: center;

    padding: 6px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--pi-border);
    border-radius: 14px;

    box-shadow:
        0 5px 18px rgba(34,34,34,.07);
}


.public-info-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


.public-info-back {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 15px;

    color: #444444;

    background: #ffffff;

    border: 1px solid var(--pi-border);
    border-radius: 12px;

    font-size: .82rem;
    font-weight: 600;

    transition:
        color .15s ease,
        border-color .15s ease,
        background .15s ease;
}


.public-info-back:hover {
    color: var(--pi-blue-hover);

    background: #fafafa;

    border-color: #d6e6f0;
}


/* ==========================================================
   HAUPTBEREICH
   ========================================================== */

.public-info-shell {
    width: min(980px, calc(100% - 40px));

    margin: 48px auto 28px;
}


.public-info-card {
    position: relative;

    padding: clamp(32px, 5vw, 56px);

    overflow: hidden;

    background: var(--pi-card);

    border: 1px solid var(--pi-border);
    border-radius: 26px;

    box-shadow:
        0 22px 65px rgba(31,45,61,.08),
        0 2px 8px rgba(31,45,61,.025);
}


.public-info-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: min(280px, 55%);
    height: 3px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--pi-blue),
            transparent
        );

    border-radius: 999px;
}


/* ==========================================================
   DOKUMENTKOPF
   ========================================================== */

.public-info-eyebrow {
    min-height: 29px;

    display: inline-flex;
    align-items: center;

    margin: 0 0 12px;
    padding: 0 11px;

    color: var(--pi-blue-hover);
    background: var(--pi-blue-soft);

    border-radius: 999px;

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: .09em;
    text-transform: uppercase;
}


.public-info-card h1 {
    max-width: 820px;

    margin: 0;

    color: var(--pi-text);

    font-family:
        "DM Sans",
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: clamp(2rem, 5vw, 3rem);

    font-weight: 700;

    line-height: 1.07;

    letter-spacing: -.045em;
}


.public-info-subtitle {
    max-width: 720px;

    margin: 13px 0 0;

    color: var(--pi-muted);

    font-size: 1rem;
    line-height: 1.55;
}


/* ==========================================================
   INHALT
   ========================================================== */

.public-info-content {
    max-width: 820px;

    margin: 35px 0 0;
    padding: 31px 0 0;

    color: #404040;

    border-top: 1px solid var(--pi-border);

    font-size: .96rem;
    line-height: 1.78;

    white-space: pre-wrap;

    overflow-wrap: anywhere;
}


.public-info-content h2 {
    margin: 35px 0 10px;

    color: var(--pi-text);

    font-size: 1.28rem;

    letter-spacing: -.025em;
}


.public-info-content h3 {
    margin: 27px 0 8px;

    color: var(--pi-text);

    font-size: 1.06rem;
}


.public-info-content p {
    margin: 0 0 17px;
}


.public-info-content a {
    color: var(--pi-blue-hover);

    text-decoration: underline;

    text-decoration-color: rgba(46,130,190,.3);

    text-underline-offset: 3px;
}


/* ==========================================================
   STATUS
   ========================================================== */

.public-info-status {
    min-height: 31px;

    display: inline-flex;
    align-items: center;

    margin-top: 30px;
    padding: 0 10px;

    color: #858585;

    background: #F8F8F6;

    border: 1px solid var(--pi-border);
    border-radius: 9px;

    font-size: .69rem;
    font-weight: 500;
}


/* ==========================================================
   FOOTER NAVIGATION
   ========================================================== */

.public-info-footer {
    width: min(980px, calc(100% - 40px));

    margin: 0 auto 35px;
    padding-top: 13px;

    text-align: center;
}


.public-info-nav {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 6px;
}


.public-info-nav a {
    min-height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 11px;

    color: #666666;

    border: 1px solid transparent;
    border-radius: 10px;

    font-size: .75rem;
    font-weight: 600;

    transition:
        color .15s ease,
        background .15s ease,
        border-color .15s ease;
}


.public-info-nav a:hover {
    color: var(--pi-blue-hover);

    background: #ffffff;

    border-color: var(--pi-border);
}


.public-info-nav a.is-active {
    color: var(--pi-blue-hover);

    background: var(--pi-blue-soft);

    border-color: rgba(71,161,221,.12);
}


.public-info-copy {
    margin-top: 13px;

    color: #A0A0A0;

    font-size: .68rem;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 820px) {

    .public-info-shell {
        margin-top: 32px;
    }


    .public-info-card {
        padding: 34px;

        border-radius: 22px;
    }
}


/* ==========================================================
   SMARTPHONE
   ========================================================== */

@media (max-width: 620px) {

    body {
        background: var(--pi-bg);
    }


    .public-info-topbar {
        height: 66px;
    }


    .public-info-topbar-inner {
        width: calc(100% - 24px);
    }


    .public-info-logo {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }


    .public-info-brand {
        font-size: .82rem;
    }


    .public-info-back {
        min-height: 36px;

        padding: 0 11px;

        font-size: .74rem;
    }


    .public-info-shell {
        width: calc(100% - 24px);

        margin: 20px auto 22px;
    }


    .public-info-card {
        padding: 26px 21px;

        border-radius: 19px;
    }


    .public-info-card h1 {
        font-size: 2rem;
    }


    .public-info-subtitle {
        font-size: .88rem;
    }


    .public-info-content {
        margin-top: 27px;
        padding-top: 24px;

        font-size: .9rem;
        line-height: 1.7;
    }


    .public-info-footer {
        width: 100%;

        margin-bottom: 24px;

        padding:
            8px 12px 0;
    }


    .public-info-nav {
        flex-wrap: nowrap;

        justify-content: flex-start;

        overflow-x: auto;

        padding-bottom: 8px;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }


    .public-info-nav::-webkit-scrollbar {
        display: none;
    }


    .public-info-nav a {
        flex: 0 0 auto;
    }
}


/* ==========================================================
   SEHR KLEIN
   ========================================================== */

@media (max-width: 390px) {

    .public-info-brand > span:last-child {
        display: none;
    }


    .public-info-card {
        padding: 23px 18px;
    }


    .public-info-card h1 {
        font-size: 1.75rem;
    }
}

/* /SIHU21TV_PUBLIC_INFO_V3 */


/* ==========================================================
   SIHU21TV_PUBLIC_LEGAL_CONTENT_V4
   Strukturierte öffentliche Dokumente
   ========================================================== */


.public-info-document-nav {
    position: sticky;

    z-index: 45;

    top: 76px;

    width: 100%;

    background: rgba(255,255,255,.96);

    border-bottom: 1px solid #EBEBEB;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


.public-info-document-nav-inner {
    width: min(980px, calc(100% - 40px));

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 5px;

    overflow-x: auto;

    padding: 8px 0;

    scrollbar-width: none;
}


.public-info-document-nav-inner::-webkit-scrollbar {
    display: none;
}


.public-info-document-nav a {
    flex: 0 0 auto;

    min-height: 36px;

    display: inline-flex;
    align-items: center;

    padding: 0 12px;

    color: #656565;

    border-radius: 10px;

    font-size: .76rem;
    font-weight: 600;

    text-decoration: none;
}


.public-info-document-nav a:hover {
    color: #2E82BE;

    background: #F7F7F5;
}


.public-info-document-nav a.is-active {
    color: #2E82BE;

    background: #E8F3FB;
}


.public-info-document-header {
    max-width: 820px;
}


.public-info-updated {
    margin: 14px 0 0;

    color: #929292;

    font-size: .72rem;
    font-weight: 500;
}


.public-info-content {
    white-space: normal !important;
}


.legal-section {
    margin: 0;
    padding: 0;
}


.legal-section + .legal-section {
    margin-top: 38px;
}


.legal-section h2 {
    margin: 0 0 12px;

    color: #222222;

    font-family:
        "DM Sans",
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 1.18rem;

    font-weight: 700;

    line-height: 1.35;

    letter-spacing: -.025em;
}


.legal-section h3 {
    margin: 24px 0 9px;

    color: #222222;

    font-size: 1rem;
    font-weight: 700;
}


.legal-section p {
    margin: 0 0 14px;
}


.legal-section p:last-child {
    margin-bottom: 0;
}


.legal-section ul,
.legal-section ol {
    margin: 12px 0 18px;

    padding-left: 24px;
}


.legal-section li {
    margin: 6px 0;

    padding-left: 3px;
}


.legal-section address {
    margin: 14px 0;

    padding: 17px 18px;

    color: #333333;

    background: #F7F7F5;

    border: 1px solid #EBEBEB;
    border-radius: 14px;

    font-style: normal;

    line-height: 1.65;
}


.legal-section a {
    color: #2E82BE;

    text-decoration: underline;

    text-decoration-color: rgba(46,130,190,.28);

    text-underline-offset: 3px;
}


.legal-table-wrap {
    width: 100%;

    margin: 18px 0;

    overflow-x: auto;

    border: 1px solid #EBEBEB;
    border-radius: 14px;
}


.legal-table {
    width: 100%;

    min-width: 620px;

    border-collapse: collapse;

    background: #FFFFFF;
}


.legal-table th,
.legal-table td {
    padding: 13px 15px;

    text-align: left;
    vertical-align: top;

    border-bottom: 1px solid #EBEBEB;

    font-size: .86rem;

    line-height: 1.5;
}


.legal-table th {
    color: #555555;

    background: #F7F7F5;

    font-size: .72rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .04em;
}


.legal-table tr:last-child td {
    border-bottom: 0;
}


@media (max-width: 620px) {

    .public-info-document-nav {
        top: 66px;
    }


    .public-info-document-nav-inner {
        width: 100%;

        padding:
            7px 12px;
    }


    .public-info-document-nav a {
        min-height: 34px;

        padding:
            0 10px;

        font-size:
            .72rem;
    }


    .legal-section + .legal-section {
        margin-top:
            31px;
    }


    .legal-section h2 {
        font-size:
            1.08rem;
    }


    .legal-section address {
        padding:
            14px 15px;
    }
}

/* /SIHU21TV_PUBLIC_LEGAL_CONTENT_V4 */


/* ==========================================================
   SIHU21TV_JOBS_PUBLIC_V1
   ========================================================== */


.jobs-public-list {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}


.jobs-public-card {
    padding: 24px;

    border: 1px solid #EBEBEB;
    border-radius: 18px;

    background: #FFFFFF;
}


.jobs-public-badge {
    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding: 0 10px;

    color: #2E82BE;
    background: #E8F3FB;

    border-radius: 999px;

    font-size: .72rem;
    font-weight: 700;
}


.jobs-public-card h2 {
    margin: 12px 0 9px;

    color: #222222;

    font-size: 1.35rem;
}


.jobs-public-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 15px;
}


.jobs-public-meta span {
    padding: 6px 9px;

    color: #666666;
    background: #F7F7F5;

    border-radius: 8px;

    font-size: .76rem;
    font-weight: 600;
}


.jobs-public-lead {
    margin-top: 18px !important;

    color: #444444;

    font-weight: 600;
}


.jobs-public-description {
    margin-top: 18px;

    color: #444444;

    line-height: 1.7;
}


.jobs-public-apply {
    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid #EBEBEB;
}


.jobs-public-apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 17px;

    color: #FFFFFF !important;

    background: #47A1DD;

    border-radius: 12px;

    font-weight: 700;

    text-decoration: none !important;
}


.jobs-public-apply-button:hover {
    background: #2E82BE;
}


.jobs-public-privacy {
    margin-top: 12px !important;

    color: #777777;

    font-size: .78rem;
}


@media (max-width: 620px) {

    .jobs-public-card {
        padding: 19px 16px;
    }


    .jobs-public-apply-button {
        width: 100%;
        box-sizing: border-box;
    }

}


/* /SIHU21TV_JOBS_PUBLIC_V1 */
