.section-why-panel .boxes-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.section-why-panel .box-item {
    border: 1px solid #E9EBEE;
    border-radius: 1rem;
    padding: 1.25rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-why-panel .box-item-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.section-why-panel .box-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 4rem;
    max-height: 4rem;
}

.section-why-panel .box-item-title {
    color: #242424;
    font-variation-settings: "wght" 500, "wdth" 100;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.78;
    margin-bottom: 0.25rem;
}

.section-why-panel .box-item-desc {
    color: #5B5C5F;
    font-variation-settings: "wght" 400, "wdth" 100;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.78;
}

@media screen and (max-width: 576.99px) {
    .section-why-panel .boxes-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}

@media screen and (min-width: 576px) and (max-width: 991.99px) {
    .section-why-panel .boxes-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}