/* ============================================================
   Dream Clean - Sitemap page (/sitemap)
   Loaded ONLY on /sitemap alongside dcs-global.css,
   dcs-service-page.css and dcs-individual-service.css.

   Component: .dcs-sitemap
   Simple bulleted URL list - one column, brand-green dot bullets,
   clean typography for a lot of links stacked vertically.
   ============================================================ */

.dcs-sitemap {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.dcs-sitemap__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dcs-sitemap__list li {
    padding: 0.55rem 0 0.55rem 1.5rem;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
    /* Long URLs need to wrap gracefully on narrow screens */
    word-break: break-word;
    overflow-wrap: anywhere;
}

.dcs-sitemap__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
}

.dcs-sitemap__list a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--brand);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .18s var(--ease), text-decoration-thickness .18s var(--ease);
}

.dcs-sitemap__list a:hover,
.dcs-sitemap__list a:focus {
    color: var(--brand-dark);
    text-decoration-thickness: 2px;
}
