/* =====================================================================
   nyheter-galleri-lightbox.css — Isbaneteknikk AS · ISHELLA 2.5
   Dedikert galleri-scroll-viewport + Swiper-lightbox for nyhetsartikler.
   Klonet og redusert fra assets/css/prosjekter.css (master: maier-arena-2019).
   Bruker ICE-aksenter (ingen RED), scoped via #svGalGrid / .sv-lb-overlay.
   ===================================================================== */

/* ---------- Galleri scroll-viewport ---------- */
.sv-gal-viewport {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    max-height: min(56vh, 620px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    background: rgba(15, 23, 42, .40);
    padding: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(56, 189, 248, .45) rgba(15, 23, 42, .40);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .04),
        0 20px 60px rgba(0, 0, 0, .45);
}
.sv-gal-viewport::-webkit-scrollbar { width: 10px; }
.sv-gal-viewport::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, .45); border-radius: 8px;
}
.sv-gal-viewport::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(56, 189, 248, .55), rgba(56, 189, 248, .30));
    border-radius: 8px; border: 2px solid rgba(15, 23, 42, .40);
}
.sv-gal-viewport::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(56, 189, 248, .75), rgba(56, 189, 248, .45));
}
.sv-gal-viewport:focus-visible {
    outline: 2px solid rgba(56, 189, 248, .6); outline-offset: 3px;
}
.sv-gal-viewport::after {
    content: ""; position: sticky; bottom: 0; left: 0; right: 0;
    display: block; height: 36px; margin: -36px -18px 0;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, .85));
    pointer-events: none;
}

/* ---------- Galleri-grid ---------- */
.sv-gal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: clamp(10px, 1.2vw, 16px);
    padding: 0;
}
@media (max-width: 768px) {
    .sv-gal-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-gal-viewport { max-height: 70vh; padding: 12px; }
}
@media (max-width: 420px) {
    .sv-gal-grid { grid-template-columns: 1fr; }
}

/* ---------- Galleri-items ---------- */
.sv-gal-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: #0a0f1e;
    cursor: zoom-in;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .35);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1),
                box-shadow .3s ease,
                border-color .2s ease;
}
.sv-gal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .50), 0 0 0 1px rgba(56, 189, 248, .35);
    border-color: rgba(56, 189, 248, .45);
}
.sv-gal-item:focus-visible {
    outline: 2px solid #38bdf8; outline-offset: 2px;
}
.sv-gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}
.sv-gal-item:hover img { transform: scale(1.05); }

/* =====================================================================
   LIGHTBOX — ISBAT-farger, fullskjerm, sveip sideveis
   - Fyller hele viewport (100vw × 100vh)
   - Bildet fyller naturlig høyde med god luft
   - Sveip sideveis (Swiper touch) + piltaster + escape
   - ISBAT-rød + ice-blå aksenter
   ===================================================================== */
.sv-lb-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* dynamic viewport for mobil-browsers */
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(120% 80% at 50% 0%, rgba(255, 0, 51, 0.10) 0%, transparent 55%),
        radial-gradient(80% 60% at 50% 100%, rgba(56, 189, 248, 0.08) 0%, transparent 55%),
        rgba(3, 8, 18, 0.96);
    backdrop-filter: blur(22px) saturate(1.25);
    -webkit-backdrop-filter: blur(22px) saturate(1.25);

    opacity: 0;
    visibility: hidden;
    transition:
        opacity .35s cubic-bezier(.22, 1, .36, 1),
        visibility 0s linear .35s;
    overscroll-behavior: contain;
}
.sv-lb-overlay.is-active {
    opacity: 1;
    visibility: visible;
    transition:
        opacity .35s cubic-bezier(.22, 1, .36, 1),
        visibility 0s linear 0s;
}

/* Subtil grid-tekstur (fade ved kantene) */
.sv-lb-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(125, 211, 252, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 211, 252, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .55;
    mask-image: radial-gradient(ellipse at center, black 35%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 80%);
}

/* Tynn rød/blå accent-stripe på toppen (ISBAT-signatur) */
.sv-lb-overlay::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--isbat-red, #FF0033) 20%,
        var(--is25-ice, #38bdf8) 50%,
        var(--isbat-red, #FF0033) 80%,
        transparent 100%
    );
    opacity: .85;
    pointer-events: none;
}

/* ---------- Swiper container — fyller hele viewport ---------- */
.sv-lb-overlay .sv-lb-swiper {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: clamp(56px, 8vh, 96px) clamp(60px, 8vw, 120px) clamp(72px, 10vh, 110px);
    overflow: hidden;
    box-sizing: border-box;
}
.sv-lb-overlay .swiper {
    width: 100%;
    height: 100%;
    touch-action: pan-y; /* Tillat vertikal scroll, Swiper fanger horisontal sveip */
}
.sv-lb-overlay .swiper-wrapper {
    height: 100%;
}
.sv-lb-overlay .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.sv-lb-overlay .swiper-slide:active,
.sv-lb-overlay .swiper-slide.swiper-slide-active:active { cursor: grabbing; }
/* Bildet skal IKKE fange pointer-events alene (lar Swiper håndtere) */
.sv-lb-overlay .swiper-slide img {
    pointer-events: none;
}

/* Bildet — fyller naturlig høyde, ingen ramme */
.sv-lb-overlay .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow:
        0 0 0 1px rgba(186, 230, 253, 0.10),
        0 40px 100px rgba(0, 0, 0, 0.65),
        0 0 80px rgba(56, 189, 248, 0.10);
    opacity: 0;
    transition: opacity .3s ease;
    user-select: none;
    -webkit-user-drag: none;
}
.sv-lb-overlay .swiper-slide-active img,
.sv-lb-overlay .swiper-slide-prev img,
.sv-lb-overlay .swiper-slide-next img,
.sv-lb-overlay .swiper-slide-duplicate-active img {
    opacity: 1;
}

/* ---------- Lukke-knapp (øverst høyre) ---------- */
.sv-lb-close-btn {
    position: absolute;
    top: clamp(14px, 2.4vh, 24px);
    right: clamp(14px, 2.4vw, 28px);
    z-index: 100002;

    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #f8fbff;
    font-size: 28px;
    line-height: 1;
    font-family: inherit;
    font-weight: 300;

    background: rgba(12, 18, 30, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);

    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease, color .25s ease;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}
.sv-lb-close-btn:hover,
.sv-lb-close-btn:focus-visible {
    background: var(--isbat-red, #FF0033);
    border-color: var(--isbat-red, #FF0033);
    color: #fff;
    transform: scale(1.08) rotate(90deg);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.5),
        0 0 28px var(--isbat-red-glow, rgba(255, 0, 51, 0.45));
}
.sv-lb-close-btn:focus-visible {
    outline: 2px solid var(--is25-ice-bright, #7dd3fc);
    outline-offset: 3px;
}

/* ---------- Teller (nederst, sentrert) ---------- */
.sv-lb-counter {
    position: absolute;
    bottom: clamp(20px, 3.4vh, 32px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100002;

    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px 11px 16px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #f8fbff;

    background: rgba(12, 18, 30, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}
.sv-lb-counter::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--isbat-red, #FF0033);
    box-shadow: 0 0 12px var(--isbat-red-glow, rgba(255, 0, 51, 0.55));
    animation: is25LbPulse 2.4s ease-in-out infinite;
}
@keyframes is25LbPulse {
    0%, 100% { opacity: .9; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.3); }
}

/* ---------- Sveip-hint (kun mobil, første 4 sek) ---------- */
.sv-lb-overlay .sv-lb-swipe-hint {
    position: absolute;
    bottom: clamp(70px, 10vh, 100px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100002;
    display: none;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(248, 251, 255, 0.85);
    background: rgba(12, 18, 30, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    animation: is25LbHintFade 4s ease-out forwards;
}
.sv-lb-overlay.is-active .sv-lb-swipe-hint { display: inline-flex; }
@keyframes is25LbHintFade {
    0%, 80% { opacity: 1; }
    100%    { opacity: 0; visibility: hidden; }
}
@media (max-width: 640px) {
    .sv-lb-overlay .sv-lb-swipe-hint { display: inline-flex; }
}
@media (min-width: 641px) {
    .sv-lb-overlay .sv-lb-swipe-hint { display: none; }
}

/* ---------- Prev / next (skjult på små skjermer, sveip i stedet) ---------- */
.sv-lb-overlay .swiper-button-prev,
.sv-lb-overlay .swiper-button-next {
    width: 56px !important;
    height: 56px !important;
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 100002;

    color: #f8fbff !important;
    background: rgba(12, 18, 30, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .25s ease,
        color .25s ease;
}
.sv-lb-overlay .swiper-button-prev:hover,
.sv-lb-overlay .swiper-button-next:hover {
    background: var(--isbat-red, #FF0033);
    border-color: var(--isbat-red, #FF0033);
    color: #fff !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.5),
        0 0 28px var(--isbat-red-glow, rgba(255, 0, 51, 0.45));
}
.sv-lb-overlay .swiper-button-prev:focus-visible,
.sv-lb-overlay .swiper-button-next:focus-visible {
    outline: 2px solid var(--is25-ice-bright, #7dd3fc);
    outline-offset: 3px;
}
.sv-lb-overlay .swiper-button-prev { left: clamp(8px, 1.8vw, 22px) !important; }
.sv-lb-overlay .swiper-button-next { right: clamp(8px, 1.8vw, 22px) !important; }
.sv-lb-overlay .swiper-button-prev::after,
.sv-lb-overlay .swiper-button-next::after {
    font-size: 18px !important;
    font-weight: 900;
}
.sv-lb-overlay .swiper-button-disabled {
    opacity: .35 !important;
    cursor: default;
    pointer-events: none;
}

/* ---------- Mobil — skjul prev/next, bruk sveip ---------- */
@media (max-width: 640px) {
    .sv-lb-overlay .sv-lb-swiper {
        padding: 56px 12px 86px;
    }
    .sv-lb-overlay .swiper-slide img {
        border-radius: 10px;
    }
    .sv-lb-overlay .swiper-button-prev,
    .sv-lb-overlay .swiper-button-next {
        display: none !important;
    }
    .sv-lb-close-btn {
        width: 44px;
        height: 44px;
        font-size: 24px;
        top: 12px;
        right: 12px;
    }
    .sv-lb-counter {
        bottom: 18px;
        font-size: 12px;
        padding: 8px 16px 8px 12px;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .sv-lb-overlay,
    .sv-lb-overlay .swiper-button-prev,
    .sv-lb-overlay .swiper-button-next,
    .sv-lb-close-btn,
    .sv-lb-counter::before {
        transition: opacity .2s linear !important;
        animation: none !important;
    }
    .sv-lb-overlay { transform: none !important; }
}

/* =====================================================================
   NYHETS-ARKIV — kompakt CTA-blokk
   Erstatter "Relaterte nyheter". Lenker til hele arkivet.
   ===================================================================== */
.nh-archive-cta {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
    border-radius: 22px;
    background:
        radial-gradient(80% 80% at 0% 0%, rgba(255, 0, 51, 0.10) 0%, transparent 60%),
        radial-gradient(80% 80% at 100% 100%, rgba(56, 189, 248, 0.10) 0%, transparent 60%),
        rgba(8, 14, 28, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .42);
    overflow: hidden;
    text-align: center;
}
.nh-archive-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--isbat-red, #FF0033) 30%,
        var(--is25-ice, #38bdf8) 70%,
        transparent 100%);
    opacity: .85;
}
.nh-archive-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--is25-ice-bright, #7dd3fc);
    background: rgba(56, 189, 248, 0.10);
    border: 1px solid rgba(56, 189, 248, 0.28);
    margin-bottom: 18px;
}
.nh-archive-cta-eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--is25-ice-bright, #7dd3fc);
    box-shadow: 0 0 8px rgba(125, 211, 252, .55);
}
.nh-archive-cta h2 {
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.1;
    margin: 0 0 14px;
    color: #f8fbff;
    font-weight: 800;
    letter-spacing: -.02em;
}
.nh-archive-cta h2 .accent {
    background: linear-gradient(135deg, var(--is25-ice-bright, #7dd3fc), var(--is25-ice, #38bdf8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nh-archive-cta-lede {
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.6;
    color: rgba(215, 226, 238, .85);
}
.nh-archive-cta-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.nh-archive-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    transition: transform .25s cubic-bezier(.22, 1, .36, 1),
                box-shadow .25s ease,
                background .25s ease,
                border-color .25s ease;
    cursor: pointer;
}
.nh-archive-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--isbat-red, #FF0033) 0%, var(--isbat-red-deep, #CC0029) 100%);
    border: 1px solid transparent;
    box-shadow: 0 8px 26px var(--isbat-red-glow, rgba(255, 0, 51, 0.45));
}
.nh-archive-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px var(--isbat-red-glow, rgba(255, 0, 51, 0.55));
}
.nh-archive-btn--ghost {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(125, 211, 252, 0.30);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.nh-archive-btn--ghost:hover {
    transform: translateY(-3px);
    background: rgba(56, 189, 248, 0.14);
    border-color: var(--is25-ice-bright, #7dd3fc);
    color: #fff;
}

/* =====================================================================
   KONTAKT OSS — ISBAT-design med 2-kolonne UX
   ===================================================================== */
.nh-contact {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 6vw, 80px) 0;
}
.nh-contact-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(8, 14, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.nh-contact-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--isbat-red, #FF0033) 0%,
        var(--is25-ice, #38bdf8) 50%,
        var(--isbat-red, #FF0033) 100%);
    background-size: 200% 100%;
    animation: nhContactStripe 14s linear infinite;
    z-index: 2;
}
@keyframes nhContactStripe {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Venstre kolonne: budskap */
.nh-contact-intro {
    padding: clamp(36px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    background:
        radial-gradient(80% 70% at 0% 0%, rgba(255, 0, 51, 0.10) 0%, transparent 60%),
        rgba(12, 18, 30, 0.55);
}
.nh-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffb3c0;
    background: var(--isbat-red-soft, rgba(255, 0, 51, 0.18));
    border: 1px solid rgba(255, 0, 51, 0.30);
    align-self: flex-start;
}
.nh-contact-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--isbat-red, #FF0033);
    animation: nhContactPulse 2.2s ease-in-out infinite;
}
@keyframes nhContactPulse {
    0%, 100% { transform: scale(1); opacity: .9; }
    50%      { transform: scale(1.3); opacity: 1; }
}
.nh-contact-intro h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.1;
    margin: 0;
    color: #f8fbff;
    font-weight: 800;
    letter-spacing: -.02em;
}
.nh-contact-intro h2 .accent {
    background: linear-gradient(135deg, var(--isbat-red, #FF0033), #ff5577);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nh-contact-intro p {
    color: rgba(215, 226, 238, .85);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0;
}

/* Trust-stripe */
.nh-contact-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.nh-contact-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(186, 230, 253, .9);
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.22);
}
.nh-contact-trust-pill i {
    font-size: 11px;
    color: var(--is25-ice-bright, #7dd3fc);
}

/* Høyre kolonne: handlinger */
.nh-contact-actions {
    padding: clamp(36px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    background: rgba(8, 14, 28, 0.4);
}
.nh-contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform .25s cubic-bezier(.22, 1, .36, 1),
                box-shadow .25s ease,
                border-color .25s ease,
                background .25s ease;
}
.nh-contact-row:hover {
    transform: translateY(-2px);
    background: rgba(15, 23, 42, 0.75);
    border-color: var(--is25-ice-bright, #7dd3fc);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(56, 189, 248, 0.25);
}
.nh-contact-row--primary {
    background: linear-gradient(135deg, var(--isbat-red, #FF0033) 0%, var(--isbat-red-deep, #CC0029) 100%);
    border-color: transparent;
    box-shadow: 0 8px 26px var(--isbat-red-glow, rgba(255, 0, 51, 0.45));
    color: #fff;
}
.nh-contact-row--primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ff1f47 0%, var(--isbat-red, #FF0033) 100%);
    border-color: transparent;
    box-shadow: 0 14px 36px var(--isbat-red-glow, rgba(255, 0, 51, 0.55));
}
.nh-contact-row-icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.22);
    color: var(--is25-ice-bright, #7dd3fc);
    font-size: 18px;
}
.nh-contact-row--primary .nh-contact-row-icon {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.nh-contact-row-body {
    flex: 1;
    min-width: 0;
}
.nh-contact-row-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(186, 230, 253, .75);
    margin-bottom: 4px;
}
.nh-contact-row--primary .nh-contact-row-label {
    color: rgba(255, 255, 255, .8);
}
.nh-contact-row-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #f8fbff;
    line-height: 1.3;
    word-break: break-word;
}
.nh-contact-row-arrow {
    flex: none;
    font-size: 14px;
    color: rgba(186, 230, 253, .55);
    transition: transform .25s ease, color .25s ease;
}
.nh-contact-row:hover .nh-contact-row-arrow {
    color: var(--is25-ice-bright, #7dd3fc);
    transform: translateX(4px);
}
.nh-contact-row--primary .nh-contact-row-arrow {
    color: rgba(255, 255, 255, .8);
}
.nh-contact-row--primary:hover .nh-contact-row-arrow {
    color: #fff;
}

@media (max-width: 760px) {
    .nh-contact-card { grid-template-columns: 1fr; }
    .nh-contact-intro { border-bottom: 1px solid rgba(255, 255, 255, .08); }
}
