/* ============================================================
   Nordic Elementor — Icon Feature List
   ============================================================ */

.nordic-ifl {
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.nordic-ifl *,
.nordic-ifl *::before,
.nordic-ifl *::after {
    box-sizing: inherit;
}

/* Grid */
.nordic-ifl__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Item */
.nordic-ifl__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nordic-ifl__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

/* Icon circle */
.nordic-ifl__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: #f5f5f5;
    margin-bottom: 16px;
    flex-shrink: 0;
    overflow: hidden;
}

.nordic-ifl__icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

/* Title */
.nordic-ifl__title {
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 6px;
    line-height: 1.3;
}

/* Subtitle */
.nordic-ifl__subtitle {
    font-size: 0.8125rem;
    color: #555555;
    margin: 0;
    line-height: 1.4;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nordic-ifl__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nordic-ifl__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .nordic-ifl__item {
        padding: 18px 12px;
    }

    .nordic-ifl__icon {
        width: 64px;
        height: 64px;
    }

    .nordic-ifl__icon img {
        width: 36px;
        height: 36px;
    }
}
