/* =============================================================
   Custom Sitemap Plugin — Stylesheet v1.1.0
   ============================================================= */

/* ---------- Wrapper ---------- */
.custom-sitemap-wrap {
    margin: 0 auto;
    padding: 0;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.5em;
}

/* ---------- Two-Column Grid ---------- */
.custom-sitemap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 767px) {
    .custom-sitemap-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .custom-sitemap-column {
        padding: 1.5rem 1rem;
    }
}

/* ---------- Column Card ---------- */
.custom-sitemap-column {
    border: 1px solid #000;
    border-radius: 0px;
    padding: 1.75rem 1.5rem;
    background: #ffffff;
    box-shadow: 5px 5px 1px 1px #000;
}

/* ---------- Column Title ---------- */
.sitemap-col-title {
    font-size: 24px;
    font-weight: 700;
    font-family: "Parkinsans", sans-serif;
    color: #000;
    margin: 0 0 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid #64B721;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.sitemap-col-icon {
    font-style: normal;
    font-size: 1.1em;
}

/* ---------- Base List ---------- */
.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---------- List Items ---------- */
.sitemap-list > .sitemap-item,
.sitemap-list > .sitemap-year-group {
    border-bottom: 1px solid #DEDEDE;
}

.sitemap-list > .sitemap-item:last-child,
.sitemap-list > .sitemap-year-group:last-child {
    border-bottom: none;
}

/* ---------- Links ---------- */
.sitemap-item a {
    display: inline-block;
    padding: .45rem 0;
    color: #000;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
}

.sitemap-item a:hover {
    color: #663694;
    text-decoration: none !important;
}

/* ---------- Child / Sub-pages ---------- */
.sitemap-child-list {
    list-style: none;
    margin: 0;
    padding: 0 0 .25rem 1.1rem;
    border-left: 2px solid #64B721;
}

.sitemap-child-list .sitemap-item a {
    color: #663694;
}

.sitemap-child-list a {
    padding: .15rem 0;
}

/* ---------- Empty State ---------- */
.sitemap-empty {
    color: #bbb;
    font-style: italic;
    font-size: .9rem;
    margin: 0;
}