.stats {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 48px;
    border-radius: 36px;
    background: var(--color-teal);
    color: #fff;
}

.stats__title {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 40px;
}

.stats__item {
    padding: 16px 24px;
    margin-top: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 40%);

}

.stats__item:not(:last-child) {
    margin-right: 16px;
}