/* ==========================================================
   Inhaltsverzeichnis
   ========================================================== */

.ts-imprint-toc {
    margin-bottom: 18px;

    padding: 18px 22px;

    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;

    background: rgba(255,255,255,.25);
    backdrop-filter: blur(6px);
}

.ts-imprint-toc h3 {
    margin: 0 0 12px;

    font-size: 1.15rem;
    font-weight: 700;

    display: flex;
    align-items: center;
    gap: 10px;
}

.ts-imprint-toc ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.ts-imprint-toc li {
    margin-bottom: 8px;
}

.ts-imprint-toc a {
    color: #444;
    text-decoration: none;

    transition: color .15s ease;
}

.ts-imprint-toc a:hover {
    color: #2f8f5a;
}

/* ==========================================================
   Abschnitte
   ========================================================== */

.ts-imprint-section {
    margin-bottom: 14px;

    padding: 18px 18px 18px 20px;

    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);

    background: rgba(255,255,255,.20);
    backdrop-filter: blur(6px);

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.ts-imprint-section:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.06);
}

.ts-imprint-section h3 {
    margin: 0 0 14px;

    font-size: 1.15rem;
    font-weight: 700;

    display: flex;
    align-items: center;
    gap: 10px;
}

.ts-imprint-section p {
    margin: 0;

    line-height: 1.8;
    color: #333;
}

.ts-imprint-section p + p {
    margin-top: 14px;
}

/* ==========================================================
   Farbstreifen links
   ========================================================== */

.ts-imprint-blue {
    border-left: 4px solid #3b82f6;
}

.ts-imprint-green {
    border-left: 4px solid #4caf50;
}

.ts-imprint-orange {
    border-left: 4px solid #f59e0b;
}

.ts-imprint-gray {
    border-left: 4px solid #64748b;
}

/* ==========================================================
   Links
   ========================================================== */

.ts-imprint-section a {
    color: #2f8f5a;
    text-decoration: none;
}

.ts-imprint-section a:hover {
    text-decoration: underline;
}

/* ==========================================================
   Smooth Scroll
   ========================================================== */

html {
    scroll-behavior: smooth;
}