/* ── Base ── */
body {
    background-color: #f5f7f9;
    font-family: "Red Hat Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ── Viz page layout ── */
.viz-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.content-container {
    background-color: transparent;
    box-shadow: none;
}


/* ── Decorative divider (gold bar under page h1) ── */
.decorative-divider {
    display: block;
    height: 2px;
    max-width: 480px;
    background-color: #fe9903;
}

/* ── Section divider (gold bar flanking title) ── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: #fdb714;
}

.section-divider-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00284d;
    margin: 0;
    letter-spacing: -0.005em;
    white-space: nowrap;
}

/* ── Tableau viz wrapper ── */
.tableau-viz-wrapper {
    flex: 1;
    min-height: 400px;
}

.tableau-viz-wrapper tableau-viz,
.tableau-viz-wrapper iframe {
    width: 100%;
    display: block;
}
