/* ============================================================
   FACILITATOR HUB — /facilitate/
   Builds on css/style.css and css/tools.css (reuses .tools-header,
   .eyebrow, .fac-btn is local). Print styles at the bottom render
   the handout.
   ============================================================ */

.fac-section {
    padding: var(--space-9) 0;
    background: var(--bg-base);
}

.fac-section + .fac-section {
    border-top: 1px solid var(--border-subtle);
}

.fac-section-head {
    max-width: 640px;
    margin-bottom: var(--space-7);
}

.fac-section-head h2 {
    font-size: var(--text-h2);
    line-height: var(--lh-h2, 1.2);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--tracking-snug);
    color: var(--text-primary);
    margin: 0 0 var(--space-3);
}

.fac-section-head p {
    color: var(--text-secondary);
    font-size: var(--text-body);
    line-height: var(--lh-body);
    margin: 0;
}

/* ---- Buttons ---- */
.fac-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: var(--radius-pill, 9999px);
    border: 1px solid var(--border-default);
    background: var(--surface-1);
    color: var(--text-primary);
    font: var(--fw-medium) 13px/1 var(--font-sans);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--dur-fast) var(--ease-out);
}

.fac-btn:hover {
    background: var(--surface-2);
    border-color: var(--border-strong);
}

/* display:inline-flex above would otherwise defeat the hidden attribute
   (used to hide "Open tool" on segment blocks in the runner). */
.fac-btn[hidden] {
    display: none;
}

.fac-btn.primary {
    background: #3D8BFF;
    border-color: #3D8BFF;
    color: #fff;
}

.fac-btn.primary:hover {
    filter: brightness(1.1);
}

.fac-btn.subtle {
    background: transparent;
    border-color: transparent;
    color: var(--text-secondary);
}

.fac-btn.subtle:hover {
    color: var(--text-primary);
    border-color: var(--border-default);
}

/* ---- Blueprints ---- */
.blueprint-grid {
    display: grid;
    /* min(100%, …) lets the track shrink below 320px on narrow phones
       instead of overflowing the viewport. */
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: var(--space-5);
}

.blueprint-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-6);
    background: var(--surface-1);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: border-color var(--dur-fast) var(--ease-out);
}

.blueprint-card:hover {
    border-color: var(--border-strong);
}

.blueprint-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blueprint-card h3 {
    margin: 0;
    font-size: var(--text-h4, 20px);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    letter-spacing: var(--tracking-snug);
}

.blueprint-card > p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
    flex-grow: 1;
}

.blueprint-outcomes {
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.blueprint-outcomes li::marker {
    color: #3D8BFF;
}

.blueprint-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border-subtle);
}

.blueprint-count {
    color: var(--text-tertiary, var(--text-secondary));
    font-size: 12px;
}

/* ---- Builder layout ---- */
.builder-layout {
    display: grid;
    grid-template-columns: minmax(300px, 2fr) minmax(360px, 3fr);
    gap: var(--space-6);
    align-items: start;
}

.builder-library,
.builder-agenda {
    background: var(--surface-1);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ---- Library ---- */
.library-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3);
    padding: var(--space-4);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--surface-2);
}

.library-toolbar input,
.library-toolbar select {
    padding: 9px 12px;
    background: var(--bg-base);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md, 8px);
    color: var(--text-primary);
    font: 400 13px/1.3 var(--font-sans);
}

.library-toolbar input:focus,
.library-toolbar select:focus {
    outline: none;
    border-color: #3D8BFF;
}

.library-list {
    max-height: 640px;
    overflow-y: auto;
}

.library-item {
    border-bottom: 1px solid var(--border-subtle);
}

.library-item:last-child {
    border-bottom: none;
}

.library-item-row {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
}

.library-item-main {
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}

.library-item-title {
    display: block;
    font-size: 14px;
    font-weight: var(--fw-medium);
    color: var(--text-primary);
}

.library-item-sub {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--text-secondary);
}

.library-item-add {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-default);
    background: var(--surface-2);
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-out);
}

.library-item-add:hover {
    background: #3D8BFF;
    border-color: #3D8BFF;
    color: #fff;
}

.library-item-detail {
    padding: 0 var(--space-4) var(--space-4);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.library-item-detail .fac-guide-use {
    margin: 0 0 var(--space-2);
    color: var(--text-primary);
}

.library-item-detail h4 {
    margin: var(--space-2) 0 4px;
    font-size: 11px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary, var(--text-secondary));
}

.library-item-detail ul {
    margin: 0;
    padding-left: 18px;
}

.library-item-detail a {
    color: #3D8BFF;
    text-decoration: none;
}

.library-item-detail a:hover {
    text-decoration: underline;
}

.fac-chip {
    display: inline-block;
    padding: 3px 9px;
    border-radius: var(--radius-pill, 9999px);
    border: 1px solid var(--border-default);
    background: var(--surface-2);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.fac-chip.accent {
    border-color: rgba(61, 139, 255, 0.4);
    color: #3D8BFF;
    background: rgba(61, 139, 255, 0.08);
}

/* ---- Agenda ---- */
.agenda-meta {
    padding: var(--space-4);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--surface-2);
}

.agenda-title-input {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font: var(--fw-semibold) 20px/1.3 var(--font-sans);
    letter-spacing: var(--tracking-snug);
    padding: 0 0 var(--space-2);
}

.agenda-title-input:focus {
    outline: none;
}

.agenda-title-input::placeholder {
    color: var(--text-tertiary, var(--text-secondary));
}

.agenda-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    font-size: 13px;
    color: var(--text-secondary);
}

.agenda-meta-row label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.agenda-meta-row input[type="time"] {
    padding: 6px 8px;
    background: var(--bg-base);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md, 8px);
    color: var(--text-primary);
    font: 400 13px/1 var(--font-sans);
}

.agenda-total {
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
}

.agenda-list {
    list-style: none;
    margin: 0;
    padding: var(--space-2) 0;
}

.agenda-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--border-subtle);
    align-items: start;
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-item-time {
    font-size: 12px;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
    padding-top: 3px;
}

.agenda-item-body {
    min-width: 0;
}

.agenda-item-title {
    font-size: 14px;
    font-weight: var(--fw-medium);
    color: var(--text-primary);
}

.agenda-item-title a {
    color: inherit;
    text-decoration: none;
}

.agenda-item-title a:hover {
    color: #3D8BFF;
}

.agenda-item-kind {
    margin-left: 8px;
}

.agenda-item-note {
    width: 100%;
    margin-top: 6px;
    padding: 6px 8px;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md, 8px);
    color: var(--text-secondary);
    font: 400 12px/1.5 var(--font-sans);
    resize: vertical;
    min-height: 30px;
}

.agenda-item-note:focus {
    outline: none;
    border-color: #3D8BFF;
    color: var(--text-primary);
}

.agenda-item-controls {
    display: flex;
    align-items: center;
    gap: 4px;
}

.agenda-mins {
    width: 52px;
    padding: 6px 4px;
    text-align: center;
    background: var(--bg-base);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md, 8px);
    color: var(--text-primary);
    font: 400 13px/1 var(--font-sans);
    font-variant-numeric: tabular-nums;
}

.agenda-mins:focus {
    outline: none;
    border-color: #3D8BFF;
}

.agenda-ctl {
    width: 26px;
    height: 26px;
    border-radius: var(--radius-md, 8px);
    border: 1px solid transparent;
    background: none;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-out);
}

.agenda-ctl:hover {
    color: var(--text-primary);
    border-color: var(--border-default);
    background: var(--surface-2);
}

.agenda-ctl.remove:hover {
    color: #ff5d5d;
    border-color: rgba(255, 93, 93, 0.4);
}

.agenda-empty {
    padding: var(--space-6) var(--space-5);
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.agenda-empty p {
    margin: 0;
}

.agenda-add-custom {
    padding: 0 var(--space-4) var(--space-3);
}

.agenda-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    padding: var(--space-4);
    border-top: 1px solid var(--border-subtle);
    background: var(--surface-2);
}

.agenda-saved {
    padding: var(--space-4);
    border-top: 1px solid var(--border-subtle);
}

.agenda-saved h3 {
    margin: 0 0 var(--space-2);
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
}

.agenda-saved-note {
    font-weight: 400;
    color: var(--text-tertiary, var(--text-secondary));
}

.agenda-saved ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.agenda-saved li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 13px;
    color: var(--text-secondary);
}

.agenda-saved li:last-child {
    border-bottom: none;
}

.agenda-saved .saved-load {
    background: none;
    border: none;
    padding: 0;
    color: #3D8BFF;
    font: var(--fw-medium) 13px/1.4 var(--font-sans);
    cursor: pointer;
    text-align: left;
}

.agenda-saved .saved-load:hover {
    text-decoration: underline;
}

/* ---- Playbook ---- */
.fac-playbook {
    background:
        radial-gradient(50% 50% at 50% 100%, rgba(61, 139, 255, 0.06), transparent 70%),
        var(--bg-base);
}

.playbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: var(--space-5);
}

.playbook-card {
    padding: var(--space-6);
    background: var(--surface-1);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
}

.playbook-step {
    font-size: 12px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3D8BFF;
    margin-bottom: var(--space-3);
}

.playbook-card h3 {
    margin: 0 0 var(--space-2);
    font-size: 16px;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
}

.playbook-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ---- Session runner ---- */
.runner {
    position: fixed;
    inset: 0;
    /* Above the global theme toggle (z-index 1100 in js/theme.js). */
    z-index: 1200;
    display: flex;              /* agenda sidebar | stage */
    background: var(--bg-base);
}

.runner[hidden] {
    display: none;
}

/* ---- Agenda sidebar (collapsible) ---- */
.runner-sidebar {
    display: flex;
    flex-direction: column;
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
    border-right: 1px solid var(--border-subtle);
    background: var(--surface-1);
    transition: width var(--dur-med, 0.25s) var(--ease-out);
}

.runner.sidebar-collapsed .runner-sidebar {
    width: 0;
    border-right-color: transparent;
}

.runner-sidebar-head {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    min-width: 260px;   /* hold shape while the sidebar animates to width:0 */
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border-subtle);
}

.runner-session-title {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
}

.runner-sidebar-toggle,
.runner-sidebar-show {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: none;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm, 8px);
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
}

.runner-sidebar-toggle:hover,
.runner-sidebar-show:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
}

/* The ☰ re-open button lives in the banner and only shows when collapsed. */
.runner-sidebar-show {
    display: none;
}

.runner.sidebar-collapsed .runner-sidebar-show {
    display: inline-flex;
}

.runner-agenda {
    flex: 1;
    min-width: 260px;
    overflow-y: auto;
    margin: 0;
    padding: var(--space-3);
    list-style: none;
}

.runner-agenda li {
    margin: 0 0 4px;
}

.runner-agenda-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: var(--space-3);
    width: 100%;
    padding: var(--space-3);
    text-align: left;
    background: none;
    border: 1px solid transparent;
    border-radius: var(--radius-md, 10px);
    color: var(--text-secondary);
    cursor: pointer;
    font: inherit;
    transition: background var(--dur-fast) var(--ease-out);
}

.runner-agenda-item:hover {
    background: var(--surface-2);
}

.runner-agenda-item.current {
    background: var(--surface-2);
    border-color: #3D8BFF;
    color: var(--text-primary);
}

.runner-agenda-item.done {
    opacity: 0.5;
}

.runner-agenda-time {
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    padding-top: 1px;
}

.runner-agenda-body {
    min-width: 0;
}

.runner-agenda-title {
    display: block;
    font-size: 13px;
    font-weight: var(--fw-medium);
    line-height: 1.35;
}

.runner-agenda-item.current .runner-agenda-title {
    font-weight: var(--fw-semibold);
}

.runner-agenda-meta {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: var(--text-secondary);
}

.runner-sidebar-foot {
    min-width: 260px;
    padding: var(--space-3) var(--space-5);
    border-top: 1px solid var(--border-subtle);
    font-size: 12px;
    color: var(--text-secondary);
}

/* ---- Stage ---- */
.runner-stage {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* ---- Banner bar (carries the timer, esp. while a tool is embedded) ---- */
.runner-top {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3) var(--space-6);
    border-bottom: 1px solid var(--border-subtle);
}

.runner.embedded .runner-top {
    background: var(--surface-1);
}

.runner-banner-title {
    max-width: 32%;
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.runner-banner-timer {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    min-width: 0;
}

.runner-banner-time {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.runner.embedded .runner-banner-time {
    font-size: 22px;
}

.runner-banner-time.over {
    color: #ff5d5d;
}

.runner-banner-bar {
    flex: 1;
    max-width: 320px;
    height: 4px;
    background: var(--surface-2);
    border-radius: 2px;
    overflow: hidden;
}

.runner-banner-fill {
    height: 100%;
    width: 0;
    background: #3D8BFF;
    border-radius: 2px;
    transition: width 1s linear;
}

.runner-banner-time.over ~ .runner-banner-bar .runner-banner-fill {
    background: #ff5d5d;
}

.runner-close {
    background: none;
    border: 1px solid var(--border-default);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
}

.runner-close:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
}

.runner-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-6);
    overflow-y: auto;
}

.runner-main[hidden] {
    display: none;
}

/* ---- Embedded tool view ---- */
.runner-embed {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.runner-embed[hidden] {
    display: none;
}

.runner-embed-bar {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--surface-1);
}

.runner-embed-title {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.runner-embed-actions {
    display: flex;
    gap: var(--space-2);
    flex-shrink: 0;
}

.runner-frame {
    flex: 1;
    width: 100%;
    border: 0;
    background: #fff;
}

.runner-kind {
    margin-bottom: var(--space-2);
}

.runner-block-title {
    margin: 0 0 var(--space-4);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--tracking-snug);
    color: var(--text-primary);
    max-width: 800px;
}

.runner-timer {
    font-size: clamp(56px, 10vw, 112px);
    font-weight: var(--fw-semibold);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1;
}

.runner-timer.over {
    color: #ff5d5d;
}

.runner-timer-bar {
    width: min(420px, 70vw);
    height: 4px;
    margin: var(--space-4) 0;
    background: var(--surface-2);
    border-radius: 2px;
    overflow: hidden;
}

.runner-timer-fill {
    height: 100%;
    width: 0%;
    background: #3D8BFF;
    border-radius: 2px;
    transition: width 1s linear;
}

.runner-timer.over + .runner-timer-bar .runner-timer-fill {
    background: #ff5d5d;
}

.runner-note {
    max-width: 620px;
    margin: 0 0 var(--space-4);
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.runner-debrief {
    max-width: 620px;
    margin-bottom: var(--space-5);
    text-align: left;
    background: var(--surface-1);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
}

.runner-debrief h3 {
    margin: 0 0 var(--space-2);
    font-size: 12px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3D8BFF;
}

.runner-debrief ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.runner-actions {
    display: flex;
    gap: var(--space-3);
}

.runner-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    border-top: 1px solid var(--border-subtle);
}

.runner-next-up {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---- Toast ---- */
.fac-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1300;
    padding: 10px 18px;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill, 9999px);
    color: var(--text-primary);
    font: var(--fw-medium) 13px/1 var(--font-sans);
    opacity: 0;
    transition: opacity var(--dur-fast) var(--ease-out);
    pointer-events: none;
}

.fac-toast.show {
    opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .builder-layout {
        grid-template-columns: 1fr;
    }

    .library-list {
        max-height: 380px;
    }
}

@media (max-width: 720px) {
    /* The agenda slides over the stage instead of splitting the width. */
    .runner-sidebar {
        position: absolute;
        inset: 0 auto 0 0;
        z-index: 5;
        width: min(85vw, 300px);
        box-shadow: var(--shadow-lg, 0 10px 40px rgba(0, 0, 0, 0.4));
    }

    .runner.sidebar-collapsed .runner-sidebar {
        box-shadow: none;
    }

    .runner-banner-title {
        display: none;
    }

    .runner-banner-bar {
        max-width: none;
    }
}

/* ---- Print handout ---- */
.handout {
    display: none;
}

@media print {
    body > *:not(.handout) {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #111 !important;
        padding: 0 !important;
    }

    .handout {
        display: block;
        font-family: Georgia, 'Times New Roman', serif;
        color: #111;
        padding: 24px;
    }

    .handout h1 {
        font-size: 24px;
        margin: 0 0 4px;
    }

    .handout .handout-meta {
        font-size: 12px;
        color: #555;
        margin: 0 0 18px;
    }

    .handout table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 22px;
        font-size: 12px;
    }

    .handout th,
    .handout td {
        border: 1px solid #bbb;
        padding: 6px 8px;
        text-align: left;
        vertical-align: top;
    }

    .handout th {
        background: #f2f2f2;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .handout .handout-block {
        page-break-inside: avoid;
        margin-bottom: 14px;
    }

    .handout .handout-block h3 {
        font-size: 14px;
        margin: 0 0 2px;
    }

    .handout .handout-block .handout-block-meta {
        font-size: 11px;
        color: #555;
        margin: 0 0 4px;
    }

    .handout .handout-block p,
    .handout .handout-block ul {
        font-size: 12px;
        margin: 4px 0;
        line-height: 1.5;
    }

    .handout .handout-block ul {
        padding-left: 18px;
    }

    .handout .handout-foot {
        margin-top: 24px;
        padding-top: 8px;
        border-top: 1px solid #bbb;
        font-size: 11px;
        color: #555;
    }
}
