.simple-keynumbers.has-background {
    background: var(--beige);
    padding: 40px 0;
    padding-top: 40px;
    padding-bottom: 40px
}

@media screen and (min-width: 992px) {
    .simple-keynumbers.has-background {
        padding-top: 56px;
        padding-bottom: 56px
    }
}

.simple-keynumbers.has-background .uptitle {
    color: var(--gold)
}

.simple-keynumbers--title {
    text-align: center;
    margin-bottom: 32px
}

@media screen and (min-width: 992px) {
    .simple-keynumbers--title {
        margin-bottom: 56px
    }
}

.simple-keynumbers--container {
    display: flex;
    flex-direction: column;
    gap: 32px
}

@media screen and (min-width: 768px) {
    .simple-keynumbers--container {
        flex-direction: row;
        flex-wrap: wrap
    }
}

@media screen and (min-width: 1024px) {
    .simple-keynumbers--container {
        gap: clamp(16px, 8.33vw, 120px);
        justify-content: center
    }

    .article .simple-keynumbers--container {
        gap: 32px;
        justify-content: flex-start
    }
}

.simple-keynumbers--item {
    width: 100%;
    transform: translateY(24px);
    opacity: 0
}

@media screen and (min-width: 768px) {
    .simple-keynumbers--item {
        width: calc(50% - 16px)
    }
}

@media screen and (min-width: 1024px) {
    .simple-keynumbers--item {
        width: auto;
        min-width: 200px;
        max-width: 290px;
        flex: 1
    }
}

.simple-keynumbers--item span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: var(--title);
    text-align: center;
    color: var(--light-green);
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    white-space: nowrap;
    position: relative;

}

.simple-keynumbers--item span::before,
.simple-keynumbers--item span::after {
    content: '';
    flex-shrink: 0;
    background: var(--dark-green);
    width: 20px;
    height: 40px;
    -webkit-mask: url("../images/ellipse-left.svg") no-repeat center;
    mask: url("../images/ellipse-left.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    flex-shrink: 0;
}

.simple-keynumbers--item span::after {
    transform: rotate(0.5turn)
}

.simple-keynumbers--item p {
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.64px;
    margin-top: 12px
}