




/* =========================================================
   AcourA Quick Navigation
   Hurtigmenu til lange landingssider
   Version 1.0 - 07.09.2026
   ========================================================= */

.acoura-quicknav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 12px 0 24px;
}

/* Knap */
.acoura-quicknav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    flex: 1 1 calc(25% - 14px);

    min-width: 0;
    min-height: 48px;
    padding: 12px 14px;

    box-sizing: border-box;

    background: #ffffff;
    border: 1px solid #c8b9a5;
    border-radius: 5px;

    color: #24351f;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;

    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

/* Tekst */
.acoura-quicknav__text {
    min-width: 0;
}

/* Pil */
.acoura-quicknav__arrow {
    flex: 0 0 auto;
    font-size: 1.1em;
    line-height: 1;
    color: #8b1e1e;
}

/* Hover */
.acoura-quicknav__link:hover {
    background: #f7f2eb;
    border-color: #8b1e1e;
    color: #8b1e1e;
    text-decoration: none;
}

/* Tastatur */
.acoura-quicknav__link:focus-visible {
    outline: 3px solid rgba(139, 30, 30, 0.28);
    outline-offset: 2px;
    border-color: #8b1e1e;
}

/* Ankeroverskrifter:
   giver luft under fast header efter klik */
.acoura-anchor {
    scroll-margin-top: 120px;
}


/* =========================================================
   TABLET / MOBIL
   Maks. 2 knapper pr. r&aelig;kke
   ========================================================= */

@media (max-width: 850px) {

    .acoura-quicknav {
        gap: 10px;
    }

    .acoura-quicknav__link {
        flex-basis: calc(50% - 10px);
        padding: 12px;
    }
}


/* =========================================================
   MEGET SMAL MOBIL
   1 knap pr. r&aelig;kke
   ========================================================= */

@media (max-width: 480px) {

    .acoura-quicknav__link {
        flex-basis: 100%;
        width: 100%;
    }
}

.acoura-quicknav {
    outline: 5px solid red !important;
}