.hero-strip {
    position: relative;
    min-height: 30svh;
    background-color: #05070a;
}

.hero-strip__media,
.hero-strip__overlay {
    position: absolute;
    inset: 0;
}

.hero-strip__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 48%;
}

.hero-strip__overlay {
    z-index: 1;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.54) 32%,
      rgba(0, 0, 0, 0.26) 58%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.hero-strip__content {
    z-index: 2;
    position: relative;
}

.hero-strip__row {
    min-height: 30svh;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.hero-strip__panel {
    max-width: 620px;
}

.hero-strip__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,.92);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-strip__title {
    margin-bottom: 0.85rem;
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 3.6rem);
    line-height: 1.02;
    font-weight: 800;
    text-wrap: balance;
}

.hero-strip__text {
    margin-bottom: 1.25rem;
    max-width: 56ch;
    color: rgba(255,255,255,.94);
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.5;
    text-shadow: 1 1 2 rgba(0, 0, 0, 0.86);
}

.hero-strip .btn {
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .hero-strip,
    .hero-strip__row {
        min-height: 38svh;
    }

    .hero-strip__row {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem;
    }

    .hero-strip__overlay {
        background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.34) 55%,
        rgba(0, 0, 0, 0.20) 100%
      );
    }
}

@media (max-width: 575.98px) {
    .hero-strip,
    .hero-strip__row {
        min-height: 52svh;
    }

    .hero-strip__title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-strip__text {
        font-size: 1.1rem;
    }

    .hero-strip__actions .btn {
        width: 100%;
    }
}

.symback {
    background-image: url('assets/img/symbolwhite.svg');
    background-color: rgba(243, 243, 243, 0.4);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 80%;
    background-attachment: fixed;
}

.btn {
    text-transform: uppercase;
}

.lev-card {
    height: 80px;

    /* styr höjden på alla loggor */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lev-logo {
    max-height: 60px;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%) contrast(90%);
    opacity: 0.85;
}

.lev-card:hover {
    transform: scale(1.05);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.lev-card:hover .lev-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Aktiv (öppen) accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--bs-danger);
    color: #fff;
}

/* Ikon (pilen) ska bli vit när aktiv */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:hover {
    background-color: rgb(0, 0, 0);
    color: #fff;
}

iconify-icon {
    margin-bottom: -2px;
}