/* ============================================================
   Page: page.php (static CMS pages — /page/<slug>)
   DVS dark theme + accent (replaces old Tailwind blue/grey).
   Loaded via $page_css = 'page'.
   ============================================================ */

.static-page {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.page-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
    color: var(--accent);
}

.page-breadcrumb__current {
    color: var(--ink);
    max-width: 24rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Title */
.page-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 1.25rem;
}

/* Lead / excerpt */
.page-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-left: 4px solid var(--accent);
    padding-left: 1.25rem;
    font-style: italic;
    margin: 0 0 2rem;
}

/* Back link */
.page-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.page-back__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-back__link:hover {
    color: var(--accent-light, #ff9b40);
}

.page-back__link i {
    width: 1rem;
    height: 1rem;
}
