/* ══════════════════════════════════════════════════════════
   GLOBAL FEATURES SECTION
   woodworkstore.fr / ustolarzy theme
══════════════════════════════════════════════════════════ */

.global-features {
    padding-block: var(--spacing-section-md);
    background-color: var(--color-bg-page);
}

.global-features-bg-card {
    background-color: var(--color-bg-card);
}

.global-features__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    gap: clamp(24px, 4vw, 80px);
    flex-wrap: wrap;
}

.global-features__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.global-features__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--color-navs);
    flex-shrink: 0;
    opacity: 0.8;
}

.global-features__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.25px;
}

.global-features__label {
    font-family: var(--font-label);
    font-size: clamp(16px, 1.1vw, 18px);
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .global-features__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: fit-content;
        margin-inline: auto;
        gap: 32px;
        padding-inline: var(--container-pad);
    }

    .global-features__label {
        white-space: normal;
        line-height: 1.2;
    }
}