/* ==================================================
   Sitemap Wrapper
================================================== */
.mrhost-sitemap {
    border: 1px solid #D5DFFF;
    background-color: #FAFBFF;
    border-radius: 10px;
    padding: 24px;
    font-family: "DM Sans", sans-serif;
}

/* ==================================================
   Desktop layout (5 kolumner)
================================================== */
.mrhost-sitemap-desktop {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* Sektion rubrik */
.mrhost-sitemap-section h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

/* Lista */
.mrhost-sitemap-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mrhost-sitemap-section li + li {
    margin-top: 8px;
}

/* Länkar */
.mrhost-sitemap-section a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: 0.25s ease;
}

.mrhost-sitemap-section a:hover {
    color: #7253ED;
}

.mrhost-sitemap-section a.is-active {
    color: #7253ED;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==================================================
   iPad (3 kolumner inline)
================================================== */
@media (max-width: 1024px) {
    .mrhost-sitemap-desktop {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ==================================================
   Mobil (kolumniserade sektioner)
================================================== */
@media (max-width: 768px) {
    .mrhost-sitemap-desktop {
        grid-template-columns: 1fr;
    }

    .mrhost-sitemap-section {
        padding-bottom: 20px;
        border-bottom: 1px solid #E6EAF5;
    }

    .mrhost-sitemap-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mrhost-sitemap-section h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .mrhost-sitemap-section a {
        font-size: 14px;
    }
}