.pxl-health-problems-box {
    padding: 60px 20px 80px;
    border: 1px solid var(--e-global-color-c01fb4e);
    border-radius: 24px;
    background-image: linear-gradient(327.61deg, #D1ECC7 23.68%, #FFFFFF 68.15%);
    z-index: 1;
    position: relative;
}
.pxl-health-problems-box .item-inner {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    width:1040px;
    max-width:100%;
    margin:0 auto;
}
.pxl-health-problems-box .main-title {
    margin-bottom: 24px;
    padding-left:180px;
}
.pxl-health-problems-box .item {
    padding:10px 20px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid var(--e-global-color-c01fb4e);
    width:248px;
    min-height:128px;
    display:flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
}
.pxl-health-problems-box .item:hover {
    box-shadow: 0px 0px 12px 0px #00000029;
}
.pxl-health-problems-box .item .title {
    font-size: 1rem;
    font-weight: 600;
    line-height:1.25;
    color: var(--e-global-color-9797da3);
    margin: 0 0 4px;
}
.pxl-health-problems-box .item .count {
    color: var(--e-global-color-primary);
}
.pxl-health-problems-box .item .icon {
    width: 48px;
    height: 48px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}
.pxl-health-problems-box .item .icon img {
    display:block;
    width: auto;
    height:auto;
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width: 991px) {
    .pxl-health-problems-box {
        border: 0;
        border-radius:0;
        padding: 25px 20px 30px;
    }
    .pxl-health-problems-box .item-inner {
        gap: 4px;
    }
    .pxl-health-problems-box .main-title {
        padding-left:0;
        text-align:center;
    }
    .pxl-health-problems-box .item {
        width: 100%;
        gap: 12px;
        padding: 6px 20px;
        min-height:0;
    }
    .pxl-health-problems-box .item .icon {
        width: 34px;
        height: 34px;
    }
    .pxl-health-problems-box .item .icon img {
        max-width: 24px;
        max-height: 24px;
    }
    .pxl-health-problems-box .item .title {
        font-size: 0.875rem;
        font-weight:500;
        margin-bottom:0;
    }
    .pxl-health-problems-box .item .count {
        line-height:1.2;
    }
}