.pahs-school-stats,
.pahs-school-stats * {
    box-sizing: border-box;
}

.pahs-school-stats {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--pahs-stats-text, #fff);
    background: var(--pahs-stats-bg, #875fd1);
    font-family: inherit;
    overflow: hidden;
}

.pahs-school-stats__inner {
    width: min(1200px, 100%);
    min-height: 184px;
    margin: 0 auto;
    padding: 32px 28px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 24px;
}

.pahs-school-stats__item {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: inherit;
}

.pahs-school-stats__icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    background: #fff;
    border-radius: 50%;
}

.pahs-school-stats__icon svg {
    display: block;
    width: 29px;
    height: 29px;
    fill: currentColor;
}

.pahs-school-stats__content {
    min-width: 0;
    text-align: left;
}

.pahs-school-stats__number {
    margin: 0 0 3px;
    color: inherit;
    font-size: clamp(25px, 2.2vw, 34px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: .01em;
    white-space: nowrap;
}

.pahs-school-stats__label {
    color: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    opacity: .98;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .pahs-school-stats__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px 20px;
    }
}

/*@media (max-width: 767px) {*/
/*    .pahs-school-stats__inner {*/
/*        min-height: 0;*/
/*        grid-template-columns: repeat(2, minmax(0, 1fr));*/
/*        padding: 28px 18px;*/
/*        gap: 24px 12px;*/
/*    }*/

/*    .pahs-school-stats__item {*/
/*        justify-content: flex-start;*/
/*    }*/

/*    .pahs-school-stats__icon {*/
/*        width: 52px;*/
/*        height: 52px;*/
/*        flex-basis: 52px;*/
/*    }*/

/*    .pahs-school-stats__icon svg {*/
/*        width: 25px;*/
/*        height: 25px;*/
/*    }*/

/*    .pahs-school-stats__number {*/
/*        font-size: 25px;*/
/*    }*/

/*    .pahs-school-stats__label {*/
/*        font-size: 14px;*/
/*        white-space: normal;*/
/*    }*/
/*}*/

@media (max-width: 460px) {
    .pahs-school-stats__inner {
        grid-template-columns: 1fr;
        padding: 24px 22px;
        gap: 19px;
    }

    .pahs-school-stats__item {
        width: min(250px, 100%);
        margin: 0 auto;
    }
}
