﻿:root {
    --primary: #0055a5;
    --primary-h: #003f7d;
    --accent: #00bcd4;
    --text: #1a1a1a;
    --text-muted: #555;
    --border: #d8dde5;
    --card-bg: #fff;
    --radius: 6px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
    color: var(--text);
    background: #fff;
    margin: 0;
}









.head-image {
    margin-bottom: 10px;
}

    .head-image img {
        width: 100%;
        height: auto;
        max-width: 900px;
    }



/* ─── uhr Banner ───────────────────────────────────── */
.uhr-banner {
    background: #e9ecf0;
    overflow: hidden;
}

/* DESKTOP: full-width banner, title floats left inside it */
@media (min-width: 768px) {
    .uhr-banner {
        position: relative;
        height: 200px;
    }

    .uhr-banner__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .uhr-banner__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(255,255,255,.85) 0%, rgba(255,255,255,.55) 38%, transparent 65%);
    }

    .uhr-banner__text {
        /*position: absolute;
        top: 50%;
        left: 40px;
        transform: translateY(-50%);*/
    }
}

/* MOBILE: image small + title side by side */
@media (max-width: 767.98px) {
    .uhr-banner {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 18px 20px;
    }

    .uhr-banner__img {
        width: 180px;
        max-width: 180px;
        height: 110px;
        object-fit: cover;
        border-radius: var(--radius);
        flex-shrink: 0;
    }

    .uhr-banner__overlay {
        display: none;
    }

    .uhr-banner__text {
        flex: 1;
    }
}

.uhr-banner__breadcrumb {
    font-size: .75rem;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 2px;
    margin-bottom: 6px;
}

.uhr-banner__title {
    font-size: clamp(1.5rem, 3vw, 1.7rem);
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.15;
}
















/* ─── Each alternating section ──────────────────────── */
.content-section {
    padding: 0;
}

    /* Even sections (image right) get a faint bg strip */
    .content-section:nth-child(even) .inner-wrap {
        background: var(--bg-stripe);
    }

.inner-wrap {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

/* ── Text side ─────────────────────────────────────── */
.text-side {
    padding: 60px 15px 60px 15px;
}

.section-title {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text);
    margin: 0 0 28px;
}

.section-body p {
    font-size: clamp(.84rem, 1.1vw, .92rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0 0 18px;
}

    .section-body p:last-child {
        margin-bottom: 0;
    }

/* ── Image side ────────────────────────────────────── */
.img-side {
    overflow: hidden;
    line-height: 0;
}

    .img-side img {
        width: 100%;
        height: 100%;
        min-height: 340px;
        max-height: 420px;
        object-fit: cover;
        display: block;
        transition: transform .4s ease;
    }

    .img-side:hover img {
        transform: scale(1.03);
    }

/* ── Odd: text left, image right ───────────────────── */
.content-section.text-left .inner-wrap {
    grid-template-areas: "text img";
}

.content-section.text-left .text-side {
    grid-area: text;
}

.content-section.text-left .img-side {
    grid-area: img;
}

/* ── Even: image left, text right ──────────────────── */
.content-section.text-right .inner-wrap {
    grid-template-areas: "img text";
}

.content-section.text-right .img-side {
    grid-area: img;
}

.content-section.text-right .text-side {
    grid-area: text;
    padding: 60px 48px 60px 56px;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
    .inner-wrap,
    .content-section.text-left .inner-wrap,
    .content-section.text-right .inner-wrap {
        grid-template-columns: 1fr;
        grid-template-areas:
            "img"
            "text" !important;
    }

    .text-side,
    .content-section.text-right .text-side {
        padding: 32px 24px;
    }

    .img-side img {
        min-height: 220px;
        max-height: 260px;
    }
}
