/* ============================================
   SIRRUNA WEEKEND MAGAZINE
   Saturday Morning Coffee Edition
   ============================================ */

/* =====================
   CSS VARIABLES
   ===================== */
:root {
    --serif-display: 'Bodoni Moda', Georgia, serif;
    --serif: 'New York', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --burgundy: #8A123C;
    --teal: #12728A;
    --gold: #b8934c;
    --ink: #1a1a1a;
    --ink-secondary: #4a4a4a;
    --ink-tertiary: #7a7a7a;
    --paper: #FFF8F2;
    --paper-dark: #F5EDE5;
    --rule: #E8DFD5;
    --white: #ffffff;
}

/* =====================
   MAGAZINE COVER
   ===================== */
.magazine-cover {
    max-width: 900px;
    margin: 0 auto;
    padding: 160px 40px 80px;
    text-align: center;
}

.cover-content {
    max-width: 720px;
    margin: 0 auto;
}

.cover-edition {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.cover-edition-label,
.cover-edition-date {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.cover-headline {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 28px;
}

.cover-deck {
    font-family: var(--sans);
    font-size: 18px;
    color: var(--ink-secondary);
    line-height: 1.6;
    margin-bottom: 56px;
}

/* Table of Contents */
.cover-toc {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--rule);
}

.toc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.toc-item:hover {
    opacity: 0.7;
}

.toc-number {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--burgundy);
}

.toc-label {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-secondary);
    text-align: center;
    white-space: nowrap;
}

/* =====================
   MAIN CONTENT
   ===================== */
.magazine-main {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 !important;
}

/* =====================
   SECTION HEADER (Shared)
   ===================== */
.section-header {
    margin-bottom: 16px;
    padding-top: 48px;
}

.section-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
}

.section-number {
    color: var(--teal);
}

.section-number::after {
    content: ' · ';
}

.section-title {
    display: inline;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
}

/* Scroll offset for anchor links - ensures header visible below masthead */
section[id] {
    scroll-margin-top: 100px;
}

/* Section Intro (headline + summary) */
.section-intro {
    margin-bottom: 40px;
}

.section-headline {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 16px;
}

.section-summary {
    font-family: var(--sans);
    font-size: 17px;
    color: var(--ink-secondary);
    line-height: 1.6;
    max-width: 800px;
}

/* =====================
   01 · THE WEEK AHEAD
   ===================== */
.section-week-ahead {
    padding-bottom: 64px;
}

.week-ahead-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
}

/* Calendar Column */
.calendar-column {
    background: var(--white);
    border: 1px solid var(--rule);
    padding: 24px;
}

.calendar-title {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
}

.calendar-days {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calendar-day {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
}

.calendar-day:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.day-name {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-tertiary);
}

.day-date {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
}

.day-events {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Events */
.event {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
}

.event-indicator {
    width: 3px;
    height: 100%;
    min-height: 32px;
    border-radius: 2px;
    flex-shrink: 0;
}

.event[data-importance="high"] .event-indicator {
    background: var(--burgundy);
}

.event[data-importance="medium"] .event-indicator {
    background: var(--gold);
}

.event[data-importance="low"] .event-indicator {
    background: var(--rule);
}

.event-content {
    flex: 1;
}

.event-time {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    display: block;
    margin-bottom: 2px;
}

.event-title {
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.3;
    color: var(--ink);
}

/* Event with mechanism link */
.event.has-mechanism {
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.event.has-mechanism:hover {
    background: rgba(138, 18, 60, 0.04);
}

.event-time-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
}

.event-mechanism-badge {
    padding: 2px 8px;
    background: var(--burgundy);
    color: var(--white);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
}

.tooltip-mechanism {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--rule);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
}

/* Tooltip */
.event-tooltip {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 16px;
    width: 280px;
    background: var(--white);
    border: 1px solid var(--rule);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 16px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: all 0.2s ease;
}

.event:hover .event-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.tooltip-title {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.tooltip-time {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 10px;
}

.tooltip-desc {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.tooltip-impact {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-tertiary);
    padding-top: 10px;
    border-top: 1px solid var(--rule);
}

.impact-label {
    font-weight: 600;
    color: var(--burgundy);
}

/* Timezone indicator in legend */
.timezone-indicator {
    margin-left: auto;
}

.timezone-indicator .legend-label {
    font-style: italic;
    color: var(--teal);
}

/* Next day indicator */
.event-time sup {
    font-size: 9px;
    color: var(--burgundy);
    margin-left: 1px;
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.legend-dot.high {
    background: var(--burgundy);
}

.legend-dot.medium {
    background: var(--gold);
}

.legend-label {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--ink-tertiary);
}

/* Fulcrum Column */
.fulcrum-column {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--rule);
}

.fulcrum-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 12px;
}

.fulcrum-headline {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 16px;
}

.fulcrum-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.fulcrum-date,
.fulcrum-time {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--teal);
    font-weight: 500;
}

.fulcrum-body {
    margin-bottom: 32px;
}

.fulcrum-body p {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-secondary);
    margin-bottom: 1em;
}

.fulcrum-body p:last-child {
    margin-bottom: 0;
}

/* =====================
   PLACEHOLDER SECTIONS
   ===================== */
.section-placeholder {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--rule);
}

.section-placeholder .section-number {
    display: block;
    margin-bottom: 12px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--burgundy);
}

.section-placeholder h2 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px;
}

.section-placeholder p {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-tertiary);
}

/* =====================
   02 · THE MECHANISM
   ===================== */
.section-mechanism {
    padding: 48px 0 64px;
}

.mechanism-header {
    margin-bottom: 48px;
    max-width: 800px;
}

.mechanism-headline {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 24px;
}

.mechanism-deck {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink-secondary);
}

.mechanism-reading-time {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
}

.mechanism-body {
    column-count: 2;
    column-gap: 48px;
    column-rule: 1px solid var(--rule);
}

.mechanism-body p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 1.25em;
    break-inside: avoid;
}

.mechanism-body p:last-child {
    margin-bottom: 0;
}

/* Drop cap */
.mechanism-body p.drop-cap::first-letter {
    font-family: var(--serif);
    font-size: 4.5em;
    float: left;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 8px;
    color: var(--burgundy);
    font-weight: 400;
}

.mechanism-body h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    margin: 1.75em 0 0.75em;
    break-after: avoid;
}

/* Writer byline footer - consistent style */
.mechanism-footer,
.week-ahead-footer {
    margin-top: 48px;
}

.writer-byline {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--paper-dark);
    padding: 20px 24px;
    border-radius: 4px;
}

.writer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.writer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.writer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.writer-name {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

.writer-role {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
}

.writer-brand {
    font-family: var(--serif-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
    margin-left: auto;
}

.writer-brand .brand-dot {
    color: var(--gold);
}

/* =====================
   03 · THE CONVERSATION
   ===================== */
.section-conversation {
    padding: 48px 0 64px;
}

.section-conversation .section-intro {
    margin-bottom: 40px;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.quote-card {
    background: var(--white);
    border: 1px solid var(--rule);
    padding: 28px;
}

.quote-person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.quote-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--paper-dark);
    flex-shrink: 0;
}

.quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-person-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quote-name {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

.quote-role {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
}

.quote-text {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 20px 0;
    padding: 0;
    border: none;
}

.quote-source {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
}

.source-name {
    color: var(--ink-secondary);
}

.source-date {
    color: var(--ink-tertiary);
}

/* =====================
   04 · WHERE WE STAND
   ===================== */
.section-picture {
    padding: 48px 0 64px;
}

.section-picture .section-intro {
    margin-bottom: 40px;
}

.picture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.picture-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 24px;
}

.picture-card.full-width {
    grid-column: span 2;
}

/* Institutional Card Styles */
.institutional-card {
    padding: 0;
}

.inst-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--rule);
}

.inst-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-tertiary);
}

.inst-regime-row {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.inst-regime {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    color: var(--teal);
    line-height: 1.1;
}

.inst-regime.negative {
    color: var(--burgundy);
}

.inst-streak {
    display: flex;
    align-items: center;
    gap: 12px;
}

.streak-dots {
    display: flex;
    gap: 4px;
}

.streak-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
}

.streak-dot.negative {
    background: var(--burgundy);
}

.streak-text {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--teal);
}

.streak-text.negative {
    color: var(--burgundy);
}

.inst-chart-section {
    padding: 24px 32px;
    border-bottom: 1px solid var(--rule);
}

.inst-chart-section .picture-chart {
    margin-bottom: 0;
    background: var(--white);
    padding: 0;
    min-height: 120px;
}

.inst-chart-section .etf-axis {
    display: none;
}

.inst-chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.inst-chart-label,
.inst-chart-period {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-tertiary);
}

.inst-chart-period {
    font-weight: 400;
}

.inst-chart-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.inst-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--rule);
}

.inst-metric {
    padding: 24px;
    text-align: center;
    border-right: 1px solid var(--rule);
}

.inst-metric:last-child {
    border-right: none;
}

.inst-metric-value {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--teal);
    line-height: 1.2;
}

.inst-metric-value.negative {
    color: var(--burgundy);
}

.inst-metric-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-tertiary);
    margin-top: 4px;
}

.inst-metric-sub {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
    margin-top: 2px;
}

.inst-breakdown {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid var(--rule);
}

.inst-breakdown-col {
    padding: 24px 32px;
}

.inst-breakdown-col:first-child {
    border-right: 1px solid var(--rule);
}

.inst-breakdown-col:last-child {
    padding: 0;
}

.inst-breakdown-col:last-child .inst-breakdown-title {
    display: none;
}

.inst-breakdown-title {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-tertiary);
    margin-bottom: 16px;
}

.inst-issuers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inst-issuer {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 12px;
}

.inst-issuer-name {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.inst-issuer-bar-wrap {
    height: 8px;
    background: var(--paper-dark);
    border-radius: 4px;
    overflow: hidden;
}

.inst-issuer-bar {
    height: 100%;
    background: var(--teal);
    border-radius: 4px;
}

.inst-issuer-value {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
}

.inst-issuer-value.negative {
    color: var(--burgundy);
}

.inst-issuer-pct {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-tertiary);
    min-width: 32px;
    text-align: right;
}

.inst-sentiment {
    border-left: 3px solid var(--teal);
    padding-left: 16px;
}

.inst-sentiment-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.inst-sentiment-value {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
}

.inst-sentiment-regime {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    color: var(--teal);
}

.inst-sentiment-delta {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--teal);
}

.inst-sentiment-delta.negative {
    color: var(--burgundy);
}

.inst-sentiment-vs {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-tertiary);
}

.inst-sentiment-insight {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--ink-secondary);
    margin-top: 12px;
    line-height: 1.5;
}

/* Disconnect Split Visualization */
.disconnect-split-container {
    border-bottom: 1px solid var(--rule);
}

.disconnect-split {
    display: flex;
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.disconnect-left {
    flex: 1;
    background: var(--burgundy);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.disconnect-right {
    flex: 1;
    background: var(--teal);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.disconnect-vs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-tertiary);
    z-index: 1;
}

.disconnect-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 8px;
}

.disconnect-value {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.disconnect-sublabel {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
}

.disconnect-context {
    font-family: var(--sans);
    font-size: 12px;
    opacity: 0.8;
    margin-top: 8px;
    line-height: 1.4;
}

.inst-insight {
    padding: 24px 32px;
    background: var(--paper);
    border-left: 3px solid var(--burgundy);
    margin: 0;
}

.inst-insight p {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .inst-header,
    .inst-chart-section,
    .inst-breakdown-col,
    .inst-insight {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .inst-regime {
        font-size: 32px;
    }
    
    .inst-regime-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .inst-metrics {
        grid-template-columns: 1fr;
    }
    
    .inst-metric {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }
    
    .inst-metric:last-child {
        border-bottom: none;
    }
    
    .inst-breakdown {
        grid-template-columns: 1fr;
    }
    
    .inst-breakdown-col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }
    
    .inst-metric-value {
        font-size: 28px;
    }
    
    .picture-card.full-width {
        grid-column: span 1;
    }
}

.picture-chart {
    min-height: 280px;
    background: var(--paper);
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 20px;
}

.picture-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}

.picture-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 12px;
}

.picture-insight {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-secondary);
}

/* =====================
   Fear & Greed Gauge
   ===================== */
.gauge-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gauge-svg {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.gauge-track {
    transition: stroke 0.3s ease;
}

.gauge-fill {
    transition: stroke-dashoffset 1s ease-out, stroke 0.5s ease;
}

.gauge-value {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -10%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge-value-number {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: var(--burgundy);
}

.gauge-value-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-secondary);
    margin-top: 4px;
    margin-bottom: 20px;
}

.gauge-scale {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 280px;
    margin-top: 0;
    margin-bottom: 24px;
    padding: 0 8px;
}

.gauge-scale span {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-tertiary);
}

.gauge-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding-top: 0;
    width: 100%;
}

.gauge-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.gauge-stat-value {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
}

.gauge-stat-value.negative {
    color: var(--burgundy);
}

.gauge-stat-value.positive {
    color: var(--teal);
}

.gauge-stat-label {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gauge-date {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--ink-tertiary);
    text-align: center;
    margin-top: 12px;
}

/* =====================
   ETF Flows Embed
   ===================== */
.etf-embed {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.etf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.etf-title {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-secondary);
}

.etf-range-toggle {
    display: flex;
    gap: 4px;
    background: var(--white);
    padding: 4px;
    border-radius: 4px;
}

.range-btn {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--ink-tertiary);
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
}

.range-btn:hover {
    color: var(--ink);
}

.range-btn.active {
    background: var(--ink);
    color: var(--white);
}

.etf-chart {
    flex: 1;
    display: flex;
    gap: 8px;
    min-height: 140px;
}

.etf-bars {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4px;
    position: relative;
}

.etf-bars::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--rule);
}

.etf-bar {
    width: 100%;
    max-width: 24px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.etf-bar-fill {
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.etf-bar-fill.positive {
    background: var(--teal);
    bottom: 50%;
}

.etf-bar-fill.negative {
    background: var(--burgundy);
    top: 50%;
}

.etf-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0;
    min-width: 60px;
    text-align: right;
}

.axis-label {
    font-family: var(--sans);
    font-size: 10px;
    color: var(--ink-tertiary);
}

.axis-label.zero {
    color: var(--ink-secondary);
}

.etf-summary {
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    margin-top: 16px;
}

.etf-total {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.total-value {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--teal);
}

.total-value.negative {
    color: var(--burgundy);
}

.total-label {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
}

/* =====================
   05 · THE TAKE
   ===================== */
.section-take {
    padding: 48px 0 64px;
}

/* Header with Audio - spans segment header AND headline */
.take-header-with-audio {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 32px;
}

.take-header-left {
    flex: 1;
}

.take-header-left .section-header {
    margin-bottom: 16px;
}

.take-header-left .section-intro {
    margin-bottom: 0;
}

.section-take .section-headline {
    font-size: 32px;
}

.take-reading-time {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
}

/* Two-column layout for The Take */
.take-columns {
    column-count: 2;
    column-gap: 48px;
    max-width: 100%;
}

.take-body {
    max-width: 100%;
}

.take-body p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 1.5em;
    break-inside: avoid;
}

.take-body p:last-child {
    margin-bottom: 0;
}

.take-footer {
    margin-top: 48px;
}

/* Circular Audio Player */
.circular-audio-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.audio-circle {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.audio-circle:hover {
    transform: scale(1.05);
}

.audio-progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.audio-progress-bg {
    fill: none;
    stroke: var(--paper-dark);
    stroke-width: 4;
}

.audio-progress-bar {
    fill: none;
    stroke: var(--burgundy);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.1s linear;
}

.audio-play-icon,
.audio-pause-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--paper-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.audio-play-icon svg,
.audio-pause-icon svg {
    width: 26px;
    height: 26px;
}

.audio-play-icon svg {
    margin-left: 3px;
}

.audio-time {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-secondary);
    white-space: nowrap;
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
    .take-columns {
        column-count: 1;
    }
    
    .take-header-with-audio {
        flex-direction: column;
        gap: 24px;
    }
    
    .circular-audio-player {
        align-self: flex-start;
    }
}

/* =====================
   BACK TO TOP
   ===================== */
.back-to-top-container {
    padding: 64px 0;
    text-align: center;
    border-top: 1px solid var(--rule);
    margin-top: 48px;
}

.back-to-top {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--ink-tertiary);
    transition: color 0.2s;
}

.back-to-top:hover {
    color: var(--burgundy);
}

.back-to-top-arrow {
    font-size: 24px;
    line-height: 1;
}

.back-to-top-text {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
    .magazine-cover {
        padding: 100px 24px 60px;
    }
    
    .cover-headline {
        font-size: 36px;
    }
    
    .cover-toc {
        flex-wrap: wrap;
        gap: 16px 24px;
    }
    
    .magazine-main {
        padding: 0 24px;
    }
    
    .week-ahead-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .event-tooltip {
        left: 0;
        top: 100%;
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }
    
    .mechanism-body {
        column-count: 1;
    }
    
    .mechanism-headline {
        font-size: 32px;
    }
    
    .mechanism-deck {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .magazine-cover {
        padding: 130px 20px 48px;
    }
    
    .cover-headline {
        font-size: 28px;
    }
    
    .cover-deck {
        font-size: 16px;
    }
    
    .cover-toc {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 28px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .fulcrum-headline {
        font-size: 22px;
    }
    
    .fulcrum-scenarios {
        gap: 12px;
    }
    
    .mechanism-headline {
        font-size: 26px;
    }
    
    .mechanism-deck {
        font-size: 16px;
    }
    
    .mechanism-body p.drop-cap::first-letter {
        font-size: 3.5em;
    }
    
    .quote-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-text {
        font-size: 16px;
    }
    
    .picture-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   FLOATING BACK TO TOP - FT Style
   ===================== */
.back-to-top-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top-float:hover {
    background: var(--ink);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top-float:hover svg {
    stroke: var(--white);
}

.back-to-top-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-float svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    stroke-width: 2.5;
    transition: stroke 0.2s ease;
}

@media (max-width: 600px) {
    .back-to-top-float {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top-float svg {
        width: 18px;
        height: 18px;
    }
}

/* =====================
   PREVIOUS MECHANISMS SHELF
   ===================== */
.mechanisms-shelf {
    padding: 48px 0 64px;
}

.mechanisms-shelf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mechanisms-shelf-title {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-tertiary);
}

.mechanisms-shelf-link {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--teal);
    text-decoration: none;
}

.mechanisms-shelf-link:hover {
    text-decoration: underline;
}

.mechanisms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mechanism-card {
    background: var(--white);
    border-radius: 6px;
    padding: 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.mechanism-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.mechanism-card-bar {
    height: 4px;
    width: 48px;
    margin: 16px 0 0 18px;
    border-radius: 2px;
}

.mechanism-card-bar.burgundy { background: var(--burgundy); }
.mechanism-card-bar.teal { background: var(--teal); }
.mechanism-card-bar.gold { background: var(--gold); }

.mechanism-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mechanism-card-date {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--ink-tertiary);
    margin-bottom: 8px;
}

.mechanism-card-title {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 8px;
}

.mechanism-card-excerpt {
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.5;
    color: var(--ink-secondary);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mechanism-card-meta {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--ink-tertiary);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--rule);
}

@media (max-width: 900px) {
    .mechanisms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mechanisms-shelf {
        padding: 32px 24px 48px;
    }
    
    .mechanisms-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   MECHANISM READER MODAL
   ===================== */
.mechanism-reader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    z-index: 2000;
    display: none;
    justify-content: flex-end;
    backdrop-filter: blur(2px);
}

.mechanism-reader-overlay.active {
    display: flex;
}

.mechanism-reader-panel {
    width: 100%;
    max-width: 640px;
    height: 100%;
    background: var(--paper);
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.mechanism-reader-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
}

.mechanism-reader-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--ink-secondary);
}

.mechanism-reader-close:hover svg {
    stroke: var(--ink);
}

.mechanism-reader-content {
    padding: 80px 48px 64px;
}

.mechanism-reader-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.mechanism-reader-headline {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 16px;
}

.mechanism-reader-meta {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
}

.mechanism-reader-body {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
}

.mechanism-reader-body p {
    margin-bottom: 20px;
}

.mechanism-reader-body p.lead {
    font-size: 19px;
    color: var(--ink-secondary);
    line-height: 1.7;
}

.mechanism-reader-body h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    margin: 40px 0 20px;
}

.mechanism-reader-body ul {
    margin: 20px 0;
    padding-left: 20px;
}

.mechanism-reader-body li {
    margin-bottom: 12px;
}

.mechanism-reader-body strong {
    font-weight: 600;
    color: var(--ink);
}

.mechanism-reader-body em {
    font-style: italic;
}

.mechanism-reader-body .insight-box {
    margin: 32px 0;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 8px;
}

.mechanism-reader-body .insight-box-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.mechanism-reader-body .insight-box-content {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-secondary);
}

.mechanism-reader-byline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
}

.mechanism-reader-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.mechanism-reader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mechanism-reader-info {
    display: flex;
    flex-direction: column;
}

.mechanism-reader-name {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.mechanism-reader-role {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
}

@media (max-width: 600px) {
    .mechanism-reader-content {
        padding: 64px 24px 48px;
    }
    
    .mechanism-reader-headline {
        font-size: 26px;
    }
    
    .mechanism-reader-body {
        font-size: 16px;
    }
}

/* =====================
   WEEK IN REVIEW SECTION
   ===================== */
.section-week-review {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 40px 80px;
    border-bottom: 1px solid var(--rule);
}

.week-review-header-with-audio {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.week-review-header-left {
    flex: 1;
}

.week-review-header-left .section-header {
    margin-bottom: 24px;
}

.week-review-header-left .section-intro {
    margin-bottom: 0;
}

.section-week-review .section-headline {
    font-size: 32px;
    max-width: 600px;
}

.week-review-reading-time {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
}

.week-review-columns {
    column-count: 2;
    column-gap: 48px;
    column-rule: 1px solid var(--rule);
}

.week-review-body {
    max-width: 100%;
}

.week-review-body p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 1.25em;
    break-inside: avoid;
}

.week-review-body p.drop-cap::first-letter {
    float: left;
    font-family: var(--serif-display);
    font-size: 68px;
    line-height: 0.85;
    padding-right: 12px;
    color: var(--burgundy);
}

.week-review-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
}

/* =====================
   MECHANISM SECTION - 1/4 + 3/4 LAYOUT
   ===================== */
.mechanism-section-headline {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--ink);
    margin: 24px 0 32px;
}

.mechanism-layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
}

/* 1/4 Key Date Column */
.mechanism-date-label {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-tertiary);
    margin-bottom: 12px;
}

.mechanism-date-card {
    background: var(--white);
    border-radius: 6px;
    padding: 16px;
}

.mechanism-date-day {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mechanism-date-num {
    display: block;
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 12px;
}

.mechanism-date-event {
    padding-top: 12px;
    border-top: 1px solid var(--rule);
}

.mechanism-date-time {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 4px;
}

.mechanism-date-title {
    display: block;
    font-family: var(--serif);
    font-size: 14px;
    color: var(--ink);
    line-height: 1.3;
}

/* 3/4 Content Column */
.mechanism-editorial-text {
    margin-bottom: 32px;
}

.mechanism-editorial-text p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 16px;
}

.mechanism-editorial-text p:last-child {
    margin-bottom: 0;
}

/* Explainer Card */
.mechanism-explainer-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-left: 4px solid var(--burgundy);
    padding: 24px 28px;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.mechanism-explainer-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-color: var(--burgundy);
}

.mechanism-explainer-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.mechanism-explainer-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 8px;
}

.mechanism-explainer-deck {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-secondary);
    margin-bottom: 16px;
}

.mechanism-explainer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
}

.mechanism-explainer-time {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
}

.mechanism-explainer-cta {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
}

.mechanism-explainer-card:hover .mechanism-explainer-cta {
    text-decoration: underline;
}

/* Update The Take without audio */
.section-take .section-intro {
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .week-review-header-with-audio {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .week-review-columns {
        column-count: 1;
    }
    
    .mechanism-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .mechanism-date-card {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .mechanism-date-num {
        margin-bottom: 0;
    }
    
    .mechanism-date-event {
        border-top: none;
        border-left: 1px solid var(--rule);
        padding-top: 0;
        padding-left: 16px;
    }
    
    .mechanism-section-headline {
        font-size: 24px;
    }
}
/* ============================================
   SIRRUNA WEEKEND V2 - VERTICAL SIDEBAR LAYOUT
   Magazine-style with sticky TOC navigation
   ============================================ */

/* =====================
   LAYOUT STRUCTURE
   ===================== */
.magazine-wrapper {
    display: flex;
    max-width: 1024px;
    margin: 0 auto;
    padding: 120px 32px 0 32px !important; /* Account for fixed header + side padding */
    min-height: 100vh;
}

/* Hide the old horizontal TOC in cover */
.magazine-cover .cover-toc {
    display: none;
}

/* =====================
   SIDEBAR NAVIGATION
   ===================== */
.sidebar-nav {
    width: 240px;
    flex-shrink: 0;
    padding: 32px 24px 32px 0;
    position: sticky;
    top: 120px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    border-right: 1px solid var(--rule);
}

.sidebar-edition {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
}

.sidebar-edition-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-tertiary);
    display: block;
    margin-bottom: 4px;
}

.sidebar-edition-date {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
}

/* TOC Items */
.sidebar-toc {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-toc-section {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
}

.sidebar-toc-section:last-child {
    border-bottom: none;
}

.sidebar-toc-link {
    display: block;
    text-decoration: none;
    padding-left: 14px;
    position: relative;
    transition: all 0.2s ease;
}

/* Active indicator bar */
.sidebar-toc-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: transparent;
    transition: background 0.2s ease;
}

.sidebar-toc-link:hover .sidebar-toc-title {
    color: var(--burgundy);
}

.sidebar-toc-link.active::before {
    background: var(--burgundy);
}

.sidebar-toc-link.active .sidebar-toc-title {
    color: var(--ink);
    font-weight: 600;
}

.sidebar-toc-number {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--ink-tertiary);
    display: block;
    margin-bottom: 3px;
}

.sidebar-toc-title {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-secondary);
    line-height: 1.35;
    display: block;
    letter-spacing: -0.01em;
}

.sidebar-toc-subtitle {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--ink-tertiary);
    display: block;
    margin-top: 3px;
    line-height: 1.4;
}

/* Audio Player in Sidebar */
.sidebar-audio {
    margin-top: 24px;
    padding: 16px;
    background: var(--paper-dark);
    border-radius: 6px;
}

.sidebar-audio-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-tertiary);
    display: block;
    margin-bottom: 12px;
}

.sidebar-audio-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 0;
}

.sidebar-audio-btn:hover .sidebar-audio-icon {
    transform: scale(1.05);
}

.sidebar-audio-icon {
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.sidebar-audio-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    margin-left: 2px;
}

.sidebar-audio-info {
    flex: 1;
}

.sidebar-audio-title {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
}

.sidebar-audio-duration {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-tertiary);
}

/* =====================
   MAIN CONTENT AREA
   ===================== */
.magazine-main-content {
    flex: 1;
    padding: 0 0 80px 48px;
    min-width: 0;
    max-width: 900px;
}

/* Cover adjustments for sidebar layout */
.magazine-cover {
    padding: 32px 0 56px;
    text-align: left;
    max-width: none;
    border-bottom: 1px solid var(--rule);
}

.magazine-cover .cover-content {
    max-width: 760px;
}

.magazine-cover .cover-edition {
    justify-content: flex-start;
    margin-bottom: 20px;
}

.magazine-cover .cover-headline {
    font-size: 42px;
    text-align: left;
}

.magazine-cover .cover-deck {
    text-align: left;
    margin-bottom: 0;
}

/* Abstract cover visual */
.cover-visual {
    margin-top: 32px;
    height: 160px;
    background: linear-gradient(135deg, var(--paper-dark) 0%, var(--paper) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.cover-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 6px,
            rgba(138, 18, 60, 0.03) 6px,
            rgba(138, 18, 60, 0.03) 7px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent,
            transparent 6px,
            rgba(18, 114, 138, 0.025) 6px,
            rgba(18, 114, 138, 0.025) 7px
        );
}

.cover-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--burgundy) 25%, 
        var(--burgundy) 75%, 
        transparent 100%
    );
    opacity: 0.4;
    transform: translateY(-50%);
}

/* Sections max-width for readability */
.section-week-review,
.section-picture,
.section-week-ahead,
.section-take,
.section-conversation,
.section-mechanism {
    max-width: 800px;
}

/* =====================
   SECTION: OUR VIEW (The Take) - FEATURED
   ===================== */
.section-take {
    background: var(--paper-dark);
    margin-left: -48px;
    margin-right: -40px;
    padding-left: 48px;
    padding-right: 40px;
    max-width: none;
    border-bottom: none;
}

.section-take .section-label {
    color: var(--burgundy);
}

/* Pull quote for The Take */
.take-pull-quote {
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    line-height: 1.4;
    color: var(--burgundy);
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 3px solid var(--burgundy);
    max-width: 620px;
}

/* =====================
   RESPONSIVE: Hide sidebar on mobile
   ===================== */
@media (max-width: 1000px) {
    .sidebar-nav {
        display: none;
    }
    
    .magazine-main-content {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .magazine-cover .cover-headline {
        font-size: 32px;
    }
    
    .section-take {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    
    /* Show horizontal TOC on mobile */
    .magazine-cover .cover-toc {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 24px;
        padding-top: 32px;
        border-top: 1px solid var(--rule);
        margin-top: 32px;
    }
}

/* =====================
   SCROLL SPY HIGHLIGHT
   ===================== */
.sidebar-toc-link.active .sidebar-toc-number {
    color: var(--burgundy);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll offset for sections */
section[id] {
    scroll-margin-top: 140px;
}

/* Sidebar Issue Number */
.sidebar-edition-issue {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-tertiary);
    display: block;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* Cover Edition Line Updates */
.cover-edition-dot {
    color: var(--gold);
    margin: 0 6px;
}

.cover-edition-issue {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ========================================
   WEEK AHEAD - COMPACT LAYOUT (Option D)
   ======================================== */

/* Calendar Row: Key Event + Also This Week */
.calendar-row {
    display: flex;
    gap: 0;
    padding: 20px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
}

.key-event {
    flex: 0 0 220px;
    padding-right: 24px;
    border-right: 1px solid var(--rule);
}

.key-event-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.key-event-date {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--ink-secondary);
    margin-bottom: 4px;
}

.key-event-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 12px;
}

.key-event-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--burgundy);
    text-decoration: none;
    padding: 6px 10px;
    background: rgba(138, 18, 60, 0.08);
    border-radius: 4px;
    transition: background 0.2s;
}

.key-event-link:hover {
    background: rgba(138, 18, 60, 0.15);
}

/* Key Event Tooltip */
.key-event {
    position: relative;
}

.key-event-tooltip {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 14px 16px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 100;
    margin-top: 8px;
}

.key-event:hover .key-event-tooltip {
    display: block;
}

.key-event-tooltip .tooltip-title {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.3;
}

.key-event-tooltip .tooltip-time {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 10px;
}

.key-event-tooltip .tooltip-desc {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
}

.key-event-tooltip .tooltip-impact {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-tertiary);
    margin-bottom: 8px;
}

.key-event-tooltip .tooltip-impact .impact-label {
    color: var(--burgundy);
    font-weight: 600;
}

.key-event-tooltip .tooltip-mechanism {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--burgundy);
    padding-top: 8px;
    border-top: 1px solid var(--rule);
}

.also-this-week {
    flex: 1;
    padding-left: 24px;
}

.also-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-tertiary);
    margin-bottom: 12px;
}

.also-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.also-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    position: relative;
}

.also-item-day {
    font-family: var(--sans);
    font-weight: 600;
    color: var(--ink);
    min-width: 32px;
}

.also-item-event {
    font-family: var(--serif);
    color: var(--ink-secondary);
    cursor: help;
    border-bottom: 1px dotted var(--ink-tertiary);
}

.also-item-event.high {
    color: var(--burgundy);
    font-weight: 500;
}

/* Tooltip for Also This Week items - Rich version */
.also-item {
    position: relative;
}

.also-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 14px 16px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 100;
    margin-bottom: 8px;
}

.also-item:hover .also-tooltip {
    display: block;
}

.also-tooltip .tooltip-title {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.3;
}

.also-tooltip .tooltip-time {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 10px;
}

.also-tooltip .tooltip-desc {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
}

.also-tooltip .tooltip-impact {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-tertiary);
}

.also-tooltip .tooltip-impact .impact-label {
    color: var(--burgundy);
    font-weight: 600;
}

/* Fulcrum Row: Story + Scenarios */
.fulcrum-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    background: var(--paper-dark);
    padding: 24px 28px;
    border-radius: 6px;
}

.fulcrum-story {
}

.fulcrum-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.fulcrum-title {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.25;
}

.fulcrum-meta {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-tertiary);
    margin-bottom: 14px;
}

.fulcrum-meta .fulcrum-time {
    margin-left: 8px;
}

.fulcrum-text {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink-secondary);
    line-height: 1.6;
}

.fulcrum-text p {
    margin-bottom: 12px;
}

.fulcrum-text p:last-child {
    margin-bottom: 0;
}

.fulcrum-scenarios {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scenarios-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-tertiary);
    margin-bottom: 4px;
}

.fulcrum-row .scenario {
    padding: 10px 12px;
    background: var(--white);
    border-radius: 4px;
    border-left: 3px solid var(--rule);
}

.fulcrum-row .scenario-bull { border-left-color: var(--teal); }
.fulcrum-row .scenario-base { border-left-color: var(--gold); }
.fulcrum-row .scenario-bear { border-left-color: var(--burgundy); }

.scenario-if {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.scenario-bull .scenario-if { color: var(--teal); }
.scenario-base .scenario-if { color: var(--gold); }
.scenario-bear .scenario-if { color: var(--burgundy); }

.scenario-then {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-secondary);
    line-height: 1.4;
}

/* Week Ahead Responsive */
@media (max-width: 800px) {
    .calendar-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .key-event {
        flex: none;
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }
    
    .also-this-week {
        padding-left: 0;
    }
    
    .fulcrum-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fulcrum-scenarios {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--rule);
        padding-top: 20px;
    }
}
