.counters-section {
    padding-top: var(--spacing-med);
    padding-bottom: var(--spacing-large);
}

.counters-wrapper {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 32px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {

    .counters-wrapper {
        justify-content: space-around;
    }

}