/* =============================================================
   PHB Radiology Transformation Dashboard
   Styles scoped to #phb-root to isolate from active WP theme.
   All colors hardcoded as hex per PHB WordPress embed pattern.
   ============================================================= */

#phb-root,
#phb-root *,
#phb-root *::before,
#phb-root *::after {
    box-sizing: border-box;
}

#phb-root {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1d2533;
    background: #fbfaf5;
    line-height: 1.55;
    font-size: 16px;
    padding: 28px;
    margin: 0 auto;
    max-width: 1280px;
    border: 1px solid #e8e3d4;
    border-top: 6px solid #ba7517;
}

body.phb-rtd-body {
    background: transparent !important;
}

#phb-root .phb-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

#phb-root h1,
#phb-root h2,
#phb-root h3,
#phb-root h4 {
    margin: 0 0 12px;
    color: #0d2b4e;
}

#phb-root a {
    color: #1d9e75;
    text-decoration: none;
}

#phb-root a:hover {
    text-decoration: underline;
}

/* =========================================================
   HEADER
   ========================================================= */

#phb-root .phb-header {
    margin-bottom: 28px;
}

#phb-root .phb-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 600;
    color: #ba7517;
    text-transform: uppercase;
    margin-bottom: 14px;
}

#phb-root .phb-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 44px;
    font-weight: 700;
    color: #0d2b4e;
    margin: 0 0 8px;
    line-height: 1.05;
    letter-spacing: -0.015em;
}

#phb-root .phb-subtitle {
    font-size: 17px;
    color: #5f6468;
    margin: 0 0 4px;
    max-width: 820px;
}

#phb-root .phb-byline {
    font-size: 14px;
    color: #8a8d92;
    margin-bottom: 18px;
}

#phb-root .phb-rule {
    width: 80px;
    height: 2px;
    background: #ba7517;
    border: 0;
    margin: 14px 0 22px;
}

/* KPI hero row */
#phb-root .phb-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
}

#phb-root .phb-kpi {
    padding: 22px 24px;
    color: #ffffff;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

#phb-root .phb-kpi-navy { background: #0d2b4e; }
#phb-root .phb-kpi-teal { background: #1d9e75; }
#phb-root .phb-kpi-gold { background: #ba7517; }

#phb-root .phb-kpi-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

#phb-root .phb-kpi-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: 500;
}

/* =========================================================
   TAB NAV
   ========================================================= */

#phb-root .phb-tabs {
    display: flex;
    gap: 2px;
    background: #ffffff;
    border-bottom: 2px solid #0d2b4e;
    margin: 32px 0 24px;
    overflow-x: auto;
    scrollbar-width: thin;
    position: sticky;
    top: 0;
    z-index: 5;
}

#phb-root .phb-tab {
    background: transparent;
    border: 0;
    padding: 14px 20px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #5f6468;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

#phb-root .phb-tab:hover {
    color: #0d2b4e;
    background: #f4f1e8;
}

#phb-root .phb-tab-active {
    color: #0d2b4e;
    border-bottom-color: #ba7517;
    background: #ffffff;
}

/* =========================================================
   PANELS
   ========================================================= */

#phb-root .phb-panel {
    display: none;
    animation: phb-fade 0.25s ease;
}

#phb-root .phb-panel-active {
    display: block;
}

@keyframes phb-fade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

#phb-root .phb-panel-head {
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8e3d4;
}

#phb-root .phb-panel-head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    margin: 0 0 6px;
    color: #0d2b4e;
}

#phb-root .phb-panel-head p {
    margin: 0;
    color: #5f6468;
    font-size: 15px;
}

/* =========================================================
   CARDS
   ========================================================= */

#phb-root .phb-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

#phb-root .phb-card {
    background: #ffffff;
    padding: 22px;
    border: 1px solid #e8e3d4;
    border-radius: 2px;
    grid-column: span 6;
}

#phb-root .phb-card-span-3.phb-card-span-3   { grid-column: span 3; }
#phb-root .phb-card-span-4.phb-card-span-4   { grid-column: span 4; }
#phb-root .phb-card-span-6.phb-card-span-6   { grid-column: span 6; }
#phb-root .phb-card-span-8.phb-card-span-8   { grid-column: span 8; }
#phb-root .phb-card-span-12.phb-card-span-12 { grid-column: span 12; }

#phb-root .phb-card-kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #ba7517;
    margin-bottom: 10px;
}

#phb-root .phb-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    margin: 0 0 8px;
    color: #0d2b4e;
}

#phb-root .phb-card p {
    margin: 0 0 10px;
    color: #404652;
    font-size: 14px;
}

#phb-root .phb-card p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   GAUGE (Overview)
   ========================================================= */

#phb-root .phb-gauge-card {
    background: linear-gradient(180deg, #0d2b4e 0%, #103458 100%);
    color: #ffffff;
    padding: 28px;
    grid-column: span 5;
    border-radius: 2px;
    border: 1px solid #0d2b4e;
}

#phb-root .phb-gauge-card .phb-card-kicker {
    color: #f3c97a;
}

#phb-root .phb-gauge-card h3 {
    color: #ffffff;
    margin-bottom: 16px;
}

#phb-root .phb-gauge-wrap {
    position: relative;
    margin: 4px 0 14px;
}

#phb-root .phb-gauge-readout {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

#phb-root .phb-gauge-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

#phb-root .phb-gauge-suffix {
    font-size: 22px;
    color: #f3c97a;
    margin-left: 2px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 500;
}

#phb-root .phb-gauge-caption {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a8c4d8;
    margin-top: 6px;
}

#phb-root .phb-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 6px;
}

#phb-root .phb-status-met       { background: #1d9e75; color: #ffffff; }
#phb-root .phb-status-on-track  { background: #2faa84; color: #ffffff; }
#phb-root .phb-status-watch     { background: #d4a13f; color: #ffffff; }
#phb-root .phb-status-at-risk   { background: #c0524a; color: #ffffff; }

#phb-root .phb-status-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
}

/* =========================================================
   COMPONENT BARS (Overview)
   ========================================================= */

#phb-root .phb-components {
    grid-column: span 7;
    background: #ffffff;
    padding: 24px;
    border: 1px solid #e8e3d4;
    border-radius: 2px;
}

#phb-root .phb-components h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    color: #0d2b4e;
    margin: 0 0 4px;
}

#phb-root .phb-components-sub {
    font-size: 13px;
    color: #5f6468;
    margin: 0 0 18px;
}

#phb-root .phb-component {
    margin-bottom: 16px;
}

#phb-root .phb-component:last-child {
    margin-bottom: 0;
}

#phb-root .phb-component-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    font-size: 14px;
}

#phb-root .phb-component-label {
    color: #1d2533;
    font-weight: 500;
}

#phb-root .phb-component-pct {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #0d2b4e;
}

#phb-root .phb-component-pct-neg { color: #c0524a; }

#phb-root .phb-component-track {
    height: 8px;
    background: #f0ebd9;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

#phb-root .phb-component-fill {
    height: 100%;
    background: linear-gradient(90deg, #1d9e75 0%, #2faa84 100%);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

#phb-root .phb-component-fill-neg {
    background: linear-gradient(90deg, #c0524a 0%, #d4655c 100%);
}

#phb-root .phb-component-aim {
    position: absolute;
    top: -2px;
    bottom: -2px;
    width: 2px;
    background: #ba7517;
    z-index: 2;
}

/* =========================================================
   MONTHLY PULSE (Overview)
   ========================================================= */

#phb-root .phb-pulse-card {
    grid-column: span 7;
    background: #f4f1e8;
    border: 1px solid #e8e3d4;
    padding: 22px;
    border-radius: 2px;
}

#phb-root .phb-pulse-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

#phb-root .phb-pulse-head h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: #0d2b4e;
    margin: 0;
}

#phb-root .phb-pulse-month {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #ba7517;
}

#phb-root .phb-pulse-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #d8d1bd;
    border-radius: 999px;
    outline: 0;
    margin: 10px 0 14px;
}

#phb-root .phb-pulse-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #ba7517;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 1px 3px rgba(13, 43, 78, 0.3);
}

#phb-root .phb-pulse-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ba7517;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #ffffff;
}

#phb-root .phb-pulse-coaching {
    font-size: 14px;
    color: #404652;
    background: #ffffff;
    padding: 12px 14px;
    border-left: 3px solid #1d9e75;
    border-radius: 2px;
    line-height: 1.5;
}

/* =========================================================
   SIGNALS (Overview)
   ========================================================= */

#phb-root .phb-signals-card {
    grid-column: span 5;
    background: #ffffff;
    border: 1px solid #e8e3d4;
    padding: 22px;
    border-radius: 2px;
}

#phb-root .phb-signals-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: #0d2b4e;
    margin: 0 0 14px;
}

#phb-root .phb-signal {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #e8e3d4;
    font-size: 14px;
    color: #404652;
}

#phb-root .phb-signal:last-child {
    border-bottom: 0;
}

#phb-root .phb-signal-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
}

#phb-root .phb-signal-icon-ok    { background: #1d9e75; }
#phb-root .phb-signal-icon-watch { background: #d4a13f; }
#phb-root .phb-signal-icon-risk  { background: #c0524a; }

/* =========================================================
   TOOLBAR
   ========================================================= */

#phb-root .phb-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e8e3d4;
    border-radius: 2px;
}

#phb-root .phb-btn {
    background: #0d2b4e;
    color: #ffffff;
    border: 0;
    padding: 9px 18px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.18s ease, transform 0.1s ease;
}

#phb-root .phb-btn:hover {
    background: #163d6b;
}

#phb-root .phb-btn:active {
    transform: translateY(1px);
}

#phb-root .phb-btn-teal { background: #1d9e75; }
#phb-root .phb-btn-teal:hover { background: #25b487; }
#phb-root .phb-btn-gold { background: #ba7517; }
#phb-root .phb-btn-gold:hover { background: #d3851b; }
#phb-root .phb-btn-ghost {
    background: transparent;
    color: #0d2b4e;
    border: 1px solid #0d2b4e;
}
#phb-root .phb-btn-ghost:hover {
    background: #0d2b4e;
    color: #ffffff;
}

#phb-root .phb-toolbar-note {
    margin-left: auto;
    align-self: center;
    font-size: 12px;
    color: #5f6468;
}

/* =========================================================
   EDITABLE METRICS (Stakeholders / Operations)
   ========================================================= */

#phb-root .phb-metric-edit {
    background: #ffffff;
    border: 1px solid #e8e3d4;
    padding: 22px;
    border-radius: 2px;
    grid-column: span 6;
}

#phb-root .phb-metric-edit h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    color: #0d2b4e;
    margin: 0 0 4px;
}

#phb-root .phb-metric-edit .phb-card-kicker {
    margin-bottom: 4px;
}

#phb-root .phb-metric-note {
    font-size: 13px;
    color: #5f6468;
    margin: 0 0 18px;
}

#phb-root .phb-metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 12px;
}

#phb-root .phb-input-group {
    display: flex;
    flex-direction: column;
}

#phb-root .phb-input-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #5f6468;
    margin-bottom: 4px;
}

#phb-root .phb-input-group input {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    padding: 8px 10px;
    border: 1px solid #d8d1bd;
    border-radius: 2px;
    background: #fbfaf5;
    color: #0d2b4e;
    font-weight: 600;
    width: 100%;
    transition: border-color 0.18s ease;
}

#phb-root .phb-input-group input:focus {
    outline: 0;
    border-color: #1d9e75;
    background: #ffffff;
}

#phb-root .phb-metric-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #f0ebd9;
}

#phb-root .phb-metric-summary-label {
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #5f6468;
    font-weight: 600;
}

#phb-root .phb-metric-summary-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #0d2b4e;
}

#phb-root .phb-metric-summary-value-neg {
    color: #c0524a;
}

#phb-root .phb-direction-flag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #f0ebd9;
    color: #5f6468;
    padding: 2px 7px;
    border-radius: 2px;
    margin-left: 8px;
    font-weight: 600;
}

/* =========================================================
   WORKSTREAMS TABLE
   ========================================================= */

#phb-root .phb-table-wrap {
    background: #ffffff;
    border: 1px solid #e8e3d4;
    border-radius: 2px;
    overflow: hidden;
}

#phb-root .phb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

#phb-root .phb-table thead {
    background: #0d2b4e;
    color: #ffffff;
}

#phb-root .phb-table th {
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

#phb-root .phb-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #f0ebd9;
    color: #1d2533;
    vertical-align: top;
}

#phb-root .phb-table tr:hover td {
    background: #fdfcf6;
}

#phb-root .phb-table tr:last-child td {
    border-bottom: 0;
}

#phb-root .phb-editable {
    cursor: text;
    border-radius: 2px;
    padding: 4px 6px;
    margin: -4px -6px;
    transition: background 0.15s ease;
    min-height: 22px;
}

#phb-root .phb-editable:hover {
    background: #f4f1e8;
}

#phb-root .phb-editable:focus {
    background: #ffffff;
    outline: 2px solid #1d9e75;
}

#phb-root .phb-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s ease;
}

#phb-root .phb-pill:hover {
    transform: translateY(-1px);
}

#phb-root .phb-pill-ontrack { background: #1d9e75; }
#phb-root .phb-pill-watch   { background: #d4a13f; }
#phb-root .phb-pill-atrisk  { background: #c0524a; }

/* =========================================================
   SCENARIO LAB
   ========================================================= */

#phb-root .phb-scenario-controls {
    background: #ffffff;
    border: 1px solid #e8e3d4;
    padding: 22px;
    border-radius: 2px;
    grid-column: span 4;
}

#phb-root .phb-scenario-chart {
    background: #ffffff;
    border: 1px solid #e8e3d4;
    padding: 22px;
    border-radius: 2px;
    grid-column: span 8;
}

#phb-root .phb-control {
    margin-bottom: 18px;
}

#phb-root .phb-control:last-child {
    margin-bottom: 0;
}

#phb-root .phb-control label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #5f6468;
    margin-bottom: 6px;
}

#phb-root .phb-control input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    background: #d8d1bd;
    border-radius: 999px;
}

#phb-root .phb-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #1d9e75;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #ffffff;
}

#phb-root .phb-control input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #1d9e75;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #ffffff;
}

#phb-root .phb-control-readout {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

#phb-root .phb-control-readout strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    color: #0d2b4e;
}

#phb-root .phb-control-readout span {
    font-size: 12px;
    color: #5f6468;
}

#phb-root .phb-scenario-readouts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

#phb-root .phb-readout-card {
    background: #f4f1e8;
    padding: 12px 14px;
    border-radius: 2px;
    border-left: 3px solid #1d9e75;
}

#phb-root .phb-readout-card-gold { border-left-color: #ba7517; }

#phb-root .phb-readout-card-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #5f6468;
    margin-bottom: 4px;
}

#phb-root .phb-readout-card-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #0d2b4e;
}

#phb-root .phb-chart-wrap {
    position: relative;
    height: 340px;
}

/* =========================================================
   LEVERS
   ========================================================= */

#phb-root .phb-lever {
    background: #ffffff;
    border: 1px solid #e8e3d4;
    border-top: 4px solid #ba7517;
    padding: 22px;
    border-radius: 2px;
    grid-column: span 4;
    display: flex;
    flex-direction: column;
}

#phb-root .phb-lever:nth-child(2) { border-top-color: #1d9e75; }
#phb-root .phb-lever:nth-child(3) { border-top-color: #0d2b4e; }

#phb-root .phb-lever-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: #ba7517;
    line-height: 1;
    margin-bottom: 6px;
}

#phb-root .phb-lever:nth-child(2) .phb-lever-number { color: #1d9e75; }
#phb-root .phb-lever:nth-child(3) .phb-lever-number { color: #0d2b4e; }

#phb-root .phb-lever h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    color: #0d2b4e;
    margin: 0 0 8px;
}

#phb-root .phb-lever-summary {
    font-size: 14px;
    color: #404652;
    margin: 0 0 14px;
}

#phb-root .phb-lever ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #404652;
}

#phb-root .phb-lever li {
    padding: 6px 0 6px 18px;
    position: relative;
    line-height: 1.5;
}

#phb-root .phb-lever li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 2px;
    background: #ba7517;
}

#phb-root .phb-lever:nth-child(2) li::before { background: #1d9e75; }
#phb-root .phb-lever:nth-child(3) li::before { background: #0d2b4e; }

/* =========================================================
   METHODS / GLOSSARY
   ========================================================= */

#phb-root .phb-method-card {
    background: #ffffff;
    border: 1px solid #e8e3d4;
    padding: 22px;
    border-radius: 2px;
    grid-column: span 6;
}

#phb-root .phb-method-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    color: #0d2b4e;
    margin: 0 0 12px;
}

#phb-root .phb-method-card p {
    font-size: 14px;
    color: #404652;
    margin: 0 0 10px;
}

#phb-root .phb-method-card em {
    color: #ba7517;
    font-style: normal;
    font-weight: 600;
}

#phb-root .phb-glossary {
    margin: 0;
    grid-column: span 12;
}

#phb-root .phb-glossary dt {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #0d2b4e;
    margin-top: 12px;
}

#phb-root .phb-glossary dt:first-child {
    margin-top: 0;
}

#phb-root .phb-glossary dd {
    margin: 2px 0 0;
    font-size: 14px;
    color: #404652;
    line-height: 1.5;
}

/* =========================================================
   FOOTER
   ========================================================= */

#phb-root .phb-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid #e8e3d4;
    font-size: 13px;
    color: #5f6468;
    flex-wrap: wrap;
    gap: 10px;
}

#phb-root .phb-footer-site {
    color: #ba7517;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
    #phb-root { padding: 18px; }
    #phb-root .phb-title { font-size: 32px; }
    #phb-root .phb-kpi-row { grid-template-columns: 1fr; }
    #phb-root .phb-grid > * { grid-column: span 12 !important; }
    #phb-root .phb-kpi-value { font-size: 36px; }
    #phb-root .phb-gauge-value { font-size: 44px; }
    #phb-root .phb-metric-row { grid-template-columns: 1fr; }
    #phb-root .phb-tab { padding: 12px 14px; font-size: 13px; }
    #phb-root .phb-table { font-size: 13px; }
    #phb-root .phb-table th,
    #phb-root .phb-table td { padding: 9px 10px; }
}
