/*--------------------------------------------------------------
 * Alternating Content Widget — Nordic Elementor
 *------------------------------------------------------------*/

.nordic-ac {
    width: 100%;
}

/* ── Grid Container ───────────────────────────────────────── */
.nordic-ac__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Image RIGHT (default) — content col 1, image col 2 */
.nordic-ac__grid--img-right .nordic-ac__content {
    order: 1;
}
.nordic-ac__grid--img-right .nordic-ac__image {
    order: 2;
}

/* Image LEFT — image col 1, content col 2 */
.nordic-ac__grid--img-left .nordic-ac__image {
    order: 1;
}
.nordic-ac__grid--img-left .nordic-ac__content {
    order: 2;
}

/* ── Image ────────────────────────────────────────────────── */
.nordic-ac__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* ── Content ──────────────────────────────────────────────── */
.nordic-ac__title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0 0 20px;
    color: #000;
}

.nordic-ac__text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.nordic-ac__text p {
    margin: 0 0 1em;
}
.nordic-ac__text p:last-child {
    margin-bottom: 0;
}

.nordic-ac__text ul,
.nordic-ac__text ol {
    padding-left: 20px;
    margin: 0 0 1em;
}

.nordic-ac__text li {
    margin-bottom: 4px;
}

.nordic-ac__text strong {
    font-weight: 700;
}

.nordic-ac__text em {
    font-style: italic;
}

/* ── Mobile Layout ────────────────────────────────────────── */
@media (max-width: 767px) {
    .nordic-ac__grid {
        grid-template-columns: 1fr;
    }

    /* Mobile: Image first — image on top, content below */
    .nordic-ac__grid--mobile-image .nordic-ac__image {
        order: 1;
    }
    .nordic-ac__grid--mobile-image .nordic-ac__content {
        order: 2;
    }

    /* Mobile: Text first — content on top, image below */
    .nordic-ac__grid--mobile-text .nordic-ac__content {
        order: 1;
    }
    .nordic-ac__grid--mobile-text .nordic-ac__image {
        order: 2;
    }

    .nordic-ac__title {
        font-size: 26px;
    }
}
