/* Storefront HTML sitemap — adapted from legacy Unilab sitemap.css */
:root {
    --sitemap-ink: #1a2b3c;
    --sitemap-accent: #0077c8;
    --sitemap-band: #e8f4fb;
    --sitemap-link: #0180af;
    --sitemap-max: 52rem;
}

body {
    margin: 0;
    text-align: center;
    color: var(--sitemap-ink);
    font: normal 100%/1.5 "Segoe UI", "Trebuchet MS", Helvetica, Arial, sans-serif;
    background: #f7fafc;
}

#cont {
    margin: 0 auto;
    max-width: var(--sitemap-max);
    text-align: left;
    background: #fff;
    min-height: 100vh;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

a:link,
a:visited {
    color: var(--sitemap-link);
    text-decoration: underline;
}

a:hover,
a:focus-visible {
    color: var(--sitemap-accent);
}

h1 {
    margin: 0;
    padding: 1.25rem 1.25rem 0.75rem;
    color: var(--sitemap-accent);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    text-align: left;
}

h3 {
    margin: 0;
    padding: 0.75rem 1.25rem;
    font-size: inherit;
    font-weight: 600;
    background-color: var(--sitemap-band);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
}

h3 a {
    font-weight: 500;
}

#footer {
    margin-top: 1.5rem;
    padding: 0.85rem 1.25rem;
    background-color: var(--sitemap-band);
    font-size: 0.9rem;
}

.lcount {
    display: block;
    margin: 0.75rem 0 0.25rem;
    padding: 0.15rem 1.25rem;
    color: var(--sitemap-ink);
    font-weight: 700;
    font-size: 0.95rem;
}

.link-container {
    width: 100%;
    position: relative;
    padding-bottom: 0.5rem;
}

.link-a {
    width: 100%;
    padding: 0.2rem 1.25rem;
    box-sizing: border-box;
}

.link-a a {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.empty {
    margin: 0.5rem 1.25rem 1rem;
    color: #5a6a7a;
}

@media screen and (max-width: 640px) {
    h1 {
        padding: 1rem 1rem 0.5rem;
    }

    h3,
    .lcount,
    .link-a,
    #footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
