/**
 * Nordic Custom Elementor Widgets — Shared Frontend Styles
 *
 * Minimal reset and utility classes used across all Nordic widgets.
 */

/* ─── Box sizing reset for Nordic widgets ─── */
[class^="nordic-"],
[class^="nordic-"] *,
[class^="nordic-"] *::before,
[class^="nordic-"] *::after {
    box-sizing: border-box;
}

/* ─── Clearfix ─── */
.nordic-clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ─── Screen-reader only ─── */
.nordic-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}