.korh-care-section {
    background: #fff;
    padding: 48px 20px 32px;
}

.korh-care-inner {
    max-width: 1230px;
    margin: 0 auto;
}

.korh-care-section h2 {
    margin: 0 0 32px;
    text-align: center;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 1px;
    color: #28313d;
}

.korh-care-grid {
    display: grid;
    grid-template-columns: 315px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
    justify-content: center;
}

.korh-care-media {
    width: 315px;
}

.korh-care-image {
    width: 100%;
    max-width: 100vw;
    height: auto;
    aspect-ratio: 315 / 460;
    object-fit: cover;
    display: block;
}

.korh-care-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.korh-care-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.korh-care-icon {
    width: 120px;
    /* an dein echtes Seitenverhältnis anpassen */
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.korh-care-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.korh-care-item p {
    margin: 0;
    max-width: 720px;
    line-height: 1.35;
    text-align: left;
}

@media (max-width: 900px) {
    .korh-care-section {
        padding: 40px 18px 28px;
    }

    .korh-care-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .korh-care-media {
        width: min(100%, 360px);
        margin: 0 auto;
    }

    .korh-care-item {
        grid-template-columns: 76px 1fr;
        gap: 18px;
    }

    .korh-care-icon,
    .korh-care-icon img {
        width: 100px;
        height: 72px;
    }

    .korh-care-item p {
        line-height: 1.45;
        font-size: 14px
    }
}

@media (max-width: 520px) {
    .korh-care-section h2 {
        font-size: 16px;
    }

    .korh-care-list {
        gap: 24px;
    }

}