/* ===== CMS Page Content ===== */
.cms-page { margin: 0; }

/* Hero Banner */
.cms-hero-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 2rem;
    margin: -2rem -1.5rem 2rem -1.5rem; /* bleed into site-content padding */
}
.cms-hero-content { max-width: 800px; }
.cms-hero-content h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.cms-hero-subheading { font-size: 1.2rem; opacity: 0.9; margin-bottom: 1.5rem; }
.cms-hero-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--color-accent, #ffc107);
    color: #212529;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.15s;
}
.cms-hero-cta:hover { opacity: 0.9; }

/* Call to Action */
.cms-cta {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.cms-cta h2 { margin-bottom: 0.75rem; }
.cms-cta-button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--color-primary, #0d6efd);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}
.cms-cta-button:hover { opacity: 0.9; }

/* Images */
.cms-image { margin: 1.5rem 0; }
.cms-image img { max-width: 100%; height: auto; border-radius: 4px; }
.cms-image figcaption { font-size: 0.85rem; color: #6c757d; margin-top: 0.5rem; text-align: center; }

/* Video */
.cms-video { margin: 1.5rem 0; }
.cms-video video { max-width: 100%; border-radius: 4px; }

/* Accordion */
.cms-accordion { margin: 1.5rem 0; }
.cms-accordion-item { border: 1px solid #dee2e6; border-radius: 4px; margin-bottom: 0.5rem; }
.cms-accordion-title { padding: 0.75rem 1rem; font-weight: 600; cursor: pointer; }
.cms-accordion-title:hover { background: #f8f9fa; }
.cms-accordion-content { padding: 0.75rem 1rem; border-top: 1px solid #dee2e6; }

/* Card Grid */
.cms-card { border: 1px solid #dee2e6; border-radius: 8px; overflow: hidden; background: #fff; }
.cms-card-img { width: 100%; height: 200px; object-fit: cover; }
.cms-card-body { padding: 1rem; }
.cms-card-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.cms-card-title a { color: var(--color-primary, #0d6efd); text-decoration: none; }
.cms-card-title a:hover { text-decoration: underline; }
.cms-card-desc { font-size: 0.9rem; color: #6c757d; }

/* Breadcrumb */
.cms-breadcrumb { margin-bottom: 1.5rem; }
.cms-breadcrumb a { color: var(--color-primary, #0d6efd); text-decoration: none; }
.cms-breadcrumb a:hover { text-decoration: underline; }

/* Spacer */
.cms-spacer { }

/* Rich Text defaults */
.cms-block p { line-height: 1.7; }
.cms-block h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.cms-block h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.cms-block a { color: var(--color-primary, #0d6efd); }
.cms-block ul, .cms-block ol { padding-left: 1.5rem; line-height: 1.7; }

/* Zones */
.cms-zone { margin-bottom: 1.5rem; }
.cms-zone:last-child { margin-bottom: 0; }
