/**
 * ZorgCursus – Sitemappagina: alle teksten ZWART of ORANJE (geen wit/blauw).
 */

/* ========== HERO – zwart/oranje ========== */
.sitemap-page .zc-page-hero .zc-page-title {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 0 transparent;
}
.sitemap-page .zc-page-hero .zc-page-subtitle {
    color: #FF8C00 !important;
    -webkit-text-fill-color: #FF8C00 !important;
    font-size: 1.05rem;
    line-height: 1.4;
}

/* ========== SITEMAP SECTIES – tekst zwart/oranje ========== */
.sitemap-page .sitemap-section,
.sitemap-page .sitemap-section * {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}
.sitemap-page .sitemap-section {
    background: #fff !important;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sitemap-page .sitemap-section:hover {
    border-color: #FF8C00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Sectie-header */
.sitemap-page .sitemap-section .section-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #FF8C00 !important;
    -webkit-text-fill-color: #FF8C00 !important;
}
.sitemap-page .sitemap-section .section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    margin-bottom: 1rem;
}

/* Lijst links – zwart/oranje */
.sitemap-page .sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sitemap-page .sitemap-links li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}
.sitemap-page .sitemap-links li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.sitemap-page .sitemap-links a {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s, text-decoration 0.2s;
}
.sitemap-page .sitemap-links a:hover {
    color: #FF8C00 !important;
    -webkit-text-fill-color: #FF8C00 !important;
    text-decoration: underline;
}
.sitemap-page .sitemap-links a i {
    color: #FF8C00 !important;
    -webkit-text-fill-color: #FF8C00 !important;
    width: 1.25rem;
    text-align: center;
}
.sitemap-page .sitemap-links .description {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    margin-left: 1.75rem;
    font-style: normal;
    line-height: 1.4;
}

/* Grid */
.sitemap-page .sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Alle overige tekst op sitemap zwart of oranje (override brand-style) */
.sitemap-page .zc-section,
.sitemap-page .zc-section .container {
    color: #000000 !important;
}
.sitemap-page main a:not(.sitemap-links a) {
    color: #FF8C00 !important;
    -webkit-text-fill-color: #FF8C00 !important;
}
.sitemap-page main a:not(.sitemap-links a):hover {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}
