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

.hw-leistung-section-2305 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 15px 80px 15px;
    background-color: #f5f7fa;
    font-family: 'PT Sans', sans-serif;
    box-sizing: border-box;
}

.hw-leistung-header-2305 {
    text-align: center;
    margin-bottom: 48px;
}

.hw-leistung-h2-2305 {
    color: #002c77;
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 16px 0;
}

.hw-leistung-subhead-2305 {
    color: rgba(0, 44, 119, 0.75);
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.hw-leistung-grid-2305 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hw-leistung-card-2305 {
    background-color: #ffffff;
    padding: 28px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 44, 119, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    transform: translateY(12px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hw-leistung-card-2305:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 44, 119, 0.12);
}

.hw-leistung-card-2305.hw-is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.hw-leistung-card-2305.hw-is-visible:hover {
    transform: translateY(-2px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hw-leistung-icon-2305 {
    font-size: 40px;
    color: #ff5800;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hw-leistung-icon-2305 svg {
    width: 40px;
    height: 40px;
    fill: #ff5800;
    transition: fill 0.25s ease;
}

.hw-leistung-card-2305:hover .hw-leistung-icon-2305 {
    color: #002c77;
}
.hw-leistung-card-2305:hover .hw-leistung-icon-2305 svg {
    fill: #002c77;
}

.hw-leistung-title-2305 {
    color: #002c77;
    font-weight: 700;
    font-size: 18px;
    margin: 16px 0 8px 0;
}

.hw-leistung-body-2305 {
    color: rgba(0, 44, 119, 0.88);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .hw-leistung-section-2305 {
        padding: 80px 20px 64px 20px;
    }
    .hw-leistung-grid-2305 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hw-leistung-section-2305 {
        padding: 60px 15px 48px 15px;
    }
    .hw-leistung-h2-2305 {
        font-size: 22px;
    }
    .hw-leistung-grid-2305 {
        grid-template-columns: 1fr;
    }
    .hw-leistung-header-2305 {
        margin-bottom: 32px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hw-leistung-card-2305 {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hw-leistung-card-2305:hover {
        transform: none !important;
    }
    .hw-leistung-icon-2305,
    .hw-leistung-icon-2305 svg {
        transition: none !important;
    }
}