@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');

.hw-routing-section-2313 {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 15px;
    background-color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.hw-routing-header-2313 {
    text-align: center;
    margin-bottom: 48px;
}

.hw-routing-h2-2313 {
    color: #002c77;
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 16px 0;
}

.hw-routing-subhead-2313 {
    color: rgba(0, 44, 119, 0.75);
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    margin: 0;
}

.hw-routing-grid-2313 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hw-routing-card-2313 {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 44, 119, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    opacity: 0;
}

.hw-routing-card-privat {
    border-top: 4px solid #ff5800;
    transform: translateX(-24px);
}
.hw-routing-card-gewerbe {
    border-top: 4px solid #002c77;
    transform: translateX(24px);
}

.hw-routing-card-2313.hw-is-visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hw-routing-card-privat.hw-is-visible:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 44, 119, 0.12);
    border-top-color: #e04a00;
}

.hw-routing-card-gewerbe.hw-is-visible:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 44, 119, 0.12);
    border-top-color: #001b4d;
}

.hw-routing-eyebrow-2313 {
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hw-eyebrow-privat { color: #ff5800; }
.hw-eyebrow-gewerbe { color: #002c77; }

.hw-routing-title-2313 {
    color: #002c77;
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 16px 0;
}

.hw-routing-body-2313 {
    color: #002c77;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 32px 0;
}

.hw-routing-cta-wrap-2313 {
    margin-top: auto;
}

.hw-routing-cta-2313 {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    text-align: center;
    cursor: pointer;
}

.hw-cta-privat {
    background-color: #ff5800;
    color: #ffffff;
    border: 2px solid #ff5800;
}
.hw-cta-privat:hover {
    background-color: #e04a00;
    border-color: #e04a00;
}

.hw-cta-gewerbe {
    background-color: transparent;
    color: #002c77;
    border: 2px solid #002c77;
}
.hw-cta-gewerbe:hover {
    background-color: #002c77;
    color: #ffffff;
}

@media (max-width: 767px) {
    .hw-routing-section-2313 {
        padding: 60px 15px;
    }
    .hw-routing-h2-2313 {
        font-size: 22px;
    }
    .hw-routing-grid-2313 {
        grid-template-columns: 1fr;
    }
    .hw-routing-card-2313 {
        padding: 32px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hw-routing-card-2313 {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hw-routing-card-2313:hover {
        transform: none !important;
    }
    .hw-routing-card-privat.hw-is-visible:hover {
        border-top-color: #ff5800 !important;
    }
    .hw-routing-card-gewerbe.hw-is-visible:hover {
        border-top-color: #002c77 !important;
    }
}