.ratgeber-page {
    background: #f8f6ef;
    color: #2f2f2f;
}

.ratgeber-hero {
    padding: 90px 24px 80px;
    background: linear-gradient(135deg, #006d77 0%, #1c92a6 100%);
    color: #ffffff;
}

.ratgeber-hero-inner {
    max-width: 980px;
    margin: 0 auto;
}

.ratgeber-kicker {
    margin: 0 0 18px;
    color: #ffde59;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ratgeber-hero h1 {
    max-width: 880px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4.3rem);
    line-height: 1.08;
}

.ratgeber-hero p:not(.ratgeber-kicker) {
    max-width: 760px;
    margin-top: 28px;
    font-size: 1.22rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.ratgeber-overview {
    padding: 70px 24px 90px;
    background: #f8f6ef;
}

.ratgeber-overview-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.ratgeber-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.ratgeber-card {
    display: block;
    width: 100%;
    background: #ffffff;
    color: #2f2f2f;
    border-radius: 18px;
    border: 1px solid rgba(0, 109, 119, 0.14);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.055);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ratgeber-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 109, 119, 0.32);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.085);
}

.ratgeber-card-content {
    position: relative;
    padding: 36px 42px 34px;
}

.ratgeber-card-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    bottom: 28px;
    width: 6px;
    background: #cfaf5f;
    border-radius: 0 6px 6px 0;
}

.ratgeber-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin: 0 0 16px;
}

.ratgeber-card-label {
    color: #006d77;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ratgeber-meta-item {
    color: #6d6d6d;
    font-size: 0.88rem;
    line-height: 1.4;
}

.ratgeber-meta-item::before {
    content: "•";
    margin-right: 12px;
    color: #cfaf5f;
}

.ratgeber-card h2 {
    max-width: 920px;
    margin: 0 0 16px;
    color: #006d77;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.25;
}

.ratgeber-card p {
    max-width: 920px;
    margin: 0 0 24px;
    color: #4a4a4a;
    font-size: 1.04rem;
    line-height: 1.75;
}

.ratgeber-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #006d77;
    font-weight: 700;
    text-decoration: none;
}

.ratgeber-card-link::after {
    content: "→";
    color: #cfaf5f;
    transition: transform 0.22s ease;
}

.ratgeber-card:hover .ratgeber-card-link::after {
    transform: translateX(5px);
}

.ratgeber-empty {
    max-width: 760px;
    padding: 38px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 109, 119, 0.14);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.055);
}

.ratgeber-empty h2 {
    margin-top: 0;
    color: #006d77;
}

.ratgeber-empty code {
    background: #f1eee2;
    padding: 2px 6px;
    border-radius: 5px;
}

@media (max-width: 820px) {
    .ratgeber-hero {
        padding: 64px 20px 58px;
    }

    .ratgeber-overview {
        padding: 48px 20px 70px;
    }

    .ratgeber-card-content {
        padding: 30px 26px 30px 30px;
    }

    .ratgeber-card-content::before {
        top: 24px;
        bottom: 24px;
        width: 5px;
    }

    .ratgeber-meta-row {
        gap: 6px 12px;
    }

    .ratgeber-meta-item {
        display: block;
        width: 100%;
        font-size: 0.84rem;
    }

    .ratgeber-meta-item::before {
        margin-right: 8px;
    }

    .ratgeber-card h2 {
        font-size: 1.36rem;
    }

    .ratgeber-card p {
        font-size: 1rem;
    }
}