.mega-stat-block {
    position: relative;
    z-index: 1;
}

.mega-stat-block > * {
    position: relative;
    z-index: 1;
}

.mega-stat-block__title {
    margin-bottom: 32px;

    @media screen and (max-width: 1199px) {
        margin-bottom: 24px;
    }
}

.mega-stat-block__bg_image {
    max-width: 350px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;

    @media screen and (max-width: 1199px) {
        max-width: 200px;
    }
}

.mega-stat-block .statys {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    grid-auto-flow: row dense;
    gap: 16px;
}

.mega-stat-block .statys .staty {
    min-height: 248px;
    text-align: center;
    padding: 48px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 60px;

    @media screen and (max-width: 1199px) {
        min-height: unset;
        grid-column: 1 !important;
        padding: 16px;
        gap: 0;
    }
}

.mega-stat-block .staty__text {
    line-height: 72px;
}

.mega-stat-block .staty__subtext {
    margin-top: auto;
    margin-bottom: 0;

    @media screen and (max-width: 1199px) {
        /*margin-top: 8px;*/
    }
}