:root {
    --ratgeber-max-width: 1320px;
    --ratgeber-padding: 20px;
}

@media (max-width: 767px) {
    :root {
        --ratgeber-padding: 16px;
    }
}

/* ============ HERO ============ */
.ratgeber-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    height: 675px;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--ratgeber-padding) 60px;
}

.ratgeber-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #1D2327;
    opacity: 0.55;
    z-index: 1;
}

.ratgeber-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--ratgeber-max-width);
    width: 100%;
    margin: 0 auto;
    color: #ffffff;
}

body .ratgeber-hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 900px;
	margin-top: 0;
	margin-bottom: 24px;
    color: #ffffff;
}

body .ratgeber-hero-description {
    font-size: 16px;
    line-height: 1.2;
    max-width: 560px;
    margin-bottom: 32px;
    color: #ffffff;
}

body .ratgeber-hero-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

body .ratgeber-hero-icons .icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

body .ratgeber-hero-icons .icon-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* ============ INTRO ============ */
.ratgeber-intro {
    padding: 88px var(--ratgeber-padding);
    background: #ffffff;
}

.ratgeber-intro-container {
    max-width: var(--ratgeber-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 134px;
    align-items: center;
}

body .ratgeber-intro-text .eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3A2A22;
    margin-bottom: 12px;
}

body .ratgeber-intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
	margin-top: 0;
    margin-bottom: 24px;
    color: #1D2327;
}

body .ratgeber-intro .ratgeber-intro-container .ratgeber-intro-text .intro-text p {
    font-size: 16px;
	margin-bottom: 12px;
	margin-top: 0;
    line-height: 1.2;
    color: #3A2A22;
}

body .ratgeber-intro .ratgeber-intro-container .intro-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

body .ratgeber-intro .ratgeber-intro-container .intro-buttons .btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700 !important;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}

body .ratgeber-intro .ratgeber-intro-container .intro-buttons .btn-primary {
    background: #437575;
    color: #ffffff;
    border: 2px solid #437575;
}

body .ratgeber-intro .ratgeber-intro-container .intro-buttons .btn-primary:hover {
    background: #ffffff;
	color: #437575;
}

body .ratgeber-intro .ratgeber-intro-container .intro-buttons .btn-outline {
    background: transparent;
    color: #437575 !important;
    border: 2px solid #437575;
}

body .ratgeber-intro .ratgeber-intro-container .intro-buttons .btn-outline:hover {
    background: #437575 !important;
	color: #ffffff !important;
}

body .ratgeber-intro .ratgeber-intro-container .ratgeber-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

/* ============ MOBILE ============ */
@media (max-width: 767px) {
    .ratgeber-hero {
        height: auto;
        min-height: 500px;
        padding: 50px 16px 40px;
    }

    .ratgeber-hero h1 {
        font-size: 28px;
        max-width: 100%;
    }

    .ratgeber-hero-description {
        max-width: 100%;
    }

    .ratgeber-hero-icons {
        flex-direction: column;
        gap: 14px;
    }

    .ratgeber-intro {
        padding: 50px 16px;
    }

    .ratgeber-intro-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-buttons {
        flex-direction: column;
    }

    .intro-buttons .btn {
        width: 100%;
    }
}