.bsmd-care-section {
    padding: 70px 20px;
    background: #f7faf9;
}

.bsmd-care-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.bsmd-care-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.bsmd-care-eyebrow {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8fc8c4;
    font-weight: 600;
    margin-bottom: 12px;
}

.bsmd-care-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.05;
    color: #4a5563;
    font-weight: 700;
    text-transform: capitalize;
}

.bsmd-care-all {
    font-size: 14px;
    color: #69aaa7;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.bsmd-care-all span {
    font-size: 24px;
    color: #008c95;
}

.bsmd-care-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bsmd-grid-care-card {
    position: relative;
    min-height: 145px;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 8px 22px rgba(30, 70, 80, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.bsmd-grid-care-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(30, 70, 80, .12);
}

.bsmd-care-content {
    position: relative;
    z-index: 2;
    max-width: 68%;
}

.bsmd-grid-care-card h3 {
    margin: 0 0 14px;
    font-size: 15px;
    color: #3f6f74;
    font-weight: 700;
}

.bsmd-grid-care-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: #7d8b91;
}

.bsmd-care-icon {
    position: absolute;
    right: -10px;
    top: 0px;
    z-index: 1;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .08));
    max-width: 125px;
    height: stretch;
}
.bsmd-care-icon img {
    max-width: unset;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .bsmd-care-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bsmd-care-head {
        flex-direction: column;
    }

    .bsmd-care-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .bsmd-care-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bsmd-grid-care-card {
        display: flex;
        justify-content: flex-end;
        min-height: 135px;
        padding: 10px;
    }

    .bsmd-care-content {
        max-width: 98%;
    }

    .bsmd-grid-care-card h3 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 6px;
    }

    .bsmd-care-icon {
        position: relative;
        max-width: 125px;
        height: 100px;
        margin: 0 auto 14px;
        max-height: 100px;
        right: unset;
    }    
}