:root {
    --bg: #f7f5f0;
    --surface: #ffffff;
    --ink: #1a1a18;
    --ink-muted: #6b6b65;
    --accent: #2d6a4f;
    --accent-light: #d8f3dc;
    --accent-warm: #e07a00;
    --accent-warm-light: #fff3e0;
    --border: #e2e0d8;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
    --mono: 'DM Mono', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    font-size: 16px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--ink-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a.active {
    color: var(--accent);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    border-radius: 1px;
}

header {
    margin-top: 56px;
    padding: 7rem 2rem 5rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.hero-label {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

h1 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 580px;
    line-height: 1.75;
}

.hero-meta {
    margin-top: 3rem;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-stat-num {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.section {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 2rem 4.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    scroll-margin-top: 72px;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.section-num {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    padding-top: 0.4rem;
    white-space: nowrap;
}

h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.section-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
}

.card-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.75rem;
}

.card h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.highlight {
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    padding: 1.25rem 1.5rem;
    border-radius: 0 4px 4px 0;
}

.highlight p {
    font-size: 0.9rem;
    color: var(--ink);
    line-height: 1.7;
}

.highlight strong {
    color: var(--accent);
    font-weight: 500;
}

.highlight-warm {
    background: var(--accent-warm-light);
    border-left: 3px solid var(--accent-warm);
}

.highlight-warm strong {
    color: var(--accent-warm);
}

.opp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.83rem;
    margin-top: 0;
}

.opp-table th {
    text-align: left;
    font-weight: 500;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--border);
    cursor: pointer;
}

.opp-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.55;
}

.opp-table tr:last-child td {
    border-bottom: none;
}

.opp-table tbody tr:hover td {
    background: rgba(45, 106, 79, 0.03);
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-green {
    background: #d8f3dc;
    color: #1b7a3e;
}

.badge-yellow {
    background: #fff3cd;
    color: #9a6400;
}

.badge-red {
    background: #fde8e8;
    color: #c0392b;
}

.badge-blue {
    background: #e3f2fd;
    color: #1565c0;
}

.badge-green-impact {
    background: #d8f3dc;
    color: #1b7a3e;
}

.badge-consigliata {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    vertical-align: middle;
    margin-left: 0.35rem;
}

.sub-text {
    font-size: 0.75rem;
    color: var(--ink-muted);
    display: block;
    margin-top: 0.2rem;
}

.consigliata-cell {
    background: rgba(45, 106, 79, 0.02);
}

.sort-icon {
    opacity: 0.5;
}

.entry-box {
    background: var(--ink);
    color: #f0ede6;
    padding: 2.5rem;
    border-radius: 4px;
}

.entry-box .card-label {
    color: rgba(240, 237, 230, 0.5);
}

.entry-box h3 {
    color: #f0ede6;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--serif);
}

.entry-box p {
    color: rgba(240, 237, 230, 0.75);
    font-size: 0.88rem;
}

.entry-box .tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.entry-box .tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(240, 237, 230, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.7rem;
    border-radius: 2px;
    font-size: 0.72rem;
    font-family: var(--mono);
    letter-spacing: 0.04em;
}

footer {
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}

footer p {
    font-size: 0.78rem;
    color: var(--ink-muted);
    font-family: var(--mono);
}

.prose {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.75;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.inline-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.istat {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.istat-num {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.istat-unit {
    font-size: 0.72rem;
    color: var(--ink-muted);
    font-family: var(--mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.res-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.res-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.82rem;
    color: var(--ink-muted);
}

.res-list li::before {
    content: '↗';
    color: var(--accent);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.res-list a {
    color: var(--ink-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, border-color 0.2s;
}

.res-list a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* PROGRESS BAR */
#progress-bar {
    position: fixed;
    top: 56px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    z-index: 200;
    transition: width 0.08s linear;
}

/* BACK TO TOP */
#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 2rem;
    z-index: 150;
    width: 40px;
    height: 40px;
    background: var(--ink);
    color: var(--bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
}

#back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* SHARE BTN */
#share-btn {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--ink);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
}

#share-btn.visible {
    opacity: 1;
    visibility: visible;
}

#share-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* SECTION DIVIDERS */
.section-divider {
    max-width: 860px;
    margin: 0 auto;
    padding: 0.5rem 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.section-divider.visible {
    opacity: 1;
}

.section-divider-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}

.section-divider-line {
    height: 1px;
    background: var(--border);
}

.section-divider-label {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c8c5bc;
    white-space: nowrap;
    user-select: none;
}

.section-divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0.6rem auto 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--bg);
    color: var(--accent);
    flex-shrink: 0;
}

.section-divider-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* VIZ */
.viz-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
}

.viz-header {
    margin-bottom: 1rem;
}

.viz-subtitle {
    font-size: 0.78rem;
    color: var(--ink-muted);
    margin-top: 0.35rem;
    line-height: 1.4;
}

.viz-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1rem 0;
}

.donut-viz {
    text-align: center;
    padding: 1.25rem;
}

.donut-viz .card-label {
    display: block;
    margin-bottom: 0.75rem;
}

.duck-chart {
    width: 100%;
    height: auto;
    max-height: 220px;
}

.viz-label {
    font-family: var(--mono);
    font-size: 9px;
    fill: #c8c5bc;
    letter-spacing: 0.06em;
}

.time-label {
    font-family: var(--mono);
    font-size: 10px;
    fill: #6b6b65;
    text-anchor: middle;
}

.annotation-text {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
}

.duck-main-line {
    animation: drawLine 1.5s ease-out forwards;
}

@keyframes drawLine {
    from {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
    }
}

.viz-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--ink-muted);
    font-family: var(--mono);
}

.legend-line {
    width: 20px;
    height: 2px;
    border-radius: 1px;
}

.legend-line.solid {
    background: #2d6a4f;
}

.legend-line.dashed {
    background: repeating-linear-gradient(90deg, #c8c5bc 0px, #c8c5bc 4px, transparent 4px, transparent 8px);
}

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

.legend-dot.solar {
    background: #f7c948;
}

/* DONUT */
.donut-chart {
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.donut-chart.small {
    width: 140px;
    height: 140px;
}

.donut-percent {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    fill: var(--ink);
}

.donut-percent.small {
    font-size: 22px;
}

.donut-label {
    font-family: var(--mono);
    font-size: 10px;
    fill: var(--ink-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donut-label.small {
    font-size: 9px;
}

.donut-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.donut-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--ink-muted);
    font-family: var(--mono);
}

.donut-swatch {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.donut-swatch.pre {
    background: #e07a00;
}

.donut-swatch.post {
    background: #2d6a4f;
}

.donut-swatch.eff-a {
    background: #2d6a4f;
}

.donut-swatch.eff-c {
    background: #74c69d;
}

.donut-swatch.eff-d {
    background: #f7c948;
}

.donut-swatch.eff-f {
    background: #e07a00;
}

.energy-classes {
    gap: 0.6rem;
}

/* AUTHOR */
.author-section {
    padding-top: 1rem;
}

.author-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border-radius: 4px;
    padding: 2rem;
}

.author-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-content {
    flex: 1;
}

.author-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0.25rem 0 0.75rem;
    line-height: 1.2;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.author-qualification {
    font-size: 0.82rem;
    color: var(--ink-muted);
    line-height: 1.6;
    font-style: italic;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    animation: fadeUp 0.8s ease both;
}

/* ── GAS CHART ──────────────────────────────────── */
.gas-chart {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.gas-bar-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 1rem;
}

.gas-bar-label {
    font-size: 0.78rem;
    color: var(--ink-muted);
    font-family: var(--mono);
    text-align: right;
    white-space: nowrap;
}

.gas-bar-track {
    background: var(--border);
    border-radius: 2px;
    height: 28px;
    overflow: hidden;
}

.gas-bar-fill {
    height: 100%;
    border-radius: 2px;
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    min-width: 40px;
}

.gas-bar-pct {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

/* ── EPBD TIMELINE ──────────────────────────────── */
.epbd-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.epbd-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0;
    position: relative;
}

.epbd-item::before {
    content: '';
    position: absolute;
    left: 71px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.epbd-item:last-child::before {
    bottom: auto;
    height: 28px;
}

.epbd-year {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--ink-muted);
    padding: 1.1rem 1.25rem 1rem 0;
    text-align: right;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.epbd-year::after {
    content: '';
    position: absolute;
    right: -5px;
    top: calc(1.1rem + 5px);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--bg);
}

.epbd-year.epbd-past::after {
    background: var(--ink-muted);
}

.epbd-year.epbd-current {
    color: var(--accent);
    font-weight: 500;
}

.epbd-year.epbd-current::after {
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.epbd-content {
    padding: 1rem 0 1rem 2rem;
}

.epbd-content strong {
    display: block;
    font-size: 0.88rem;
    color: var(--ink);
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.epbd-content p {
    font-size: 0.82rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0;
}

.epbd-target-badge {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    background: var(--accent-light);
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

/* ── PLAYER CARDS ───────────────────────────────── */
.player-category {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.player-cat-label {
    padding-left: 0.25rem;
    border-left: 3px solid var(--border);
    padding-bottom: 0.1rem;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.player-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    border-top: 3px solid var(--border);
}

.player-card-challenger {
    border-top-color: var(--accent);
}

.player-card-startup {
    border-top-color: var(--accent-warm);
}

.player-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.player-name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.player-tag {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tag-incumbent {
    background: #e2e0d8;
    color: #5f5e5a;
}

.tag-challenger {
    background: var(--accent-light);
    color: var(--accent);
}

.tag-startup {
    background: var(--accent-warm-light);
    color: #92500a;
}

.player-desc {
    font-size: 0.82rem;
    color: var(--ink-muted);
    line-height: 1.65;
}

.player-segments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.seg-tag {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    color: var(--ink-muted);
    border: 1px solid var(--border);
    padding: 0.15rem 0.45rem;
    border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 0.75rem 1.25rem;
        gap: 0.5rem;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
        gap: 1.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .opp-table {
        font-size: 0.78rem;
    }

    .opp-table th,
    .opp-table td {
        padding: 0.6rem 0.5rem;
    }

    header {
        padding: 6rem 1.25rem 3.5rem;
    }

    .section {
        padding: 3rem 1.25rem;
    }

    .section-header {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    footer {
        padding: 2rem 1.25rem;
    }

    #progress-bar {
        top: 78px;
    }

    .viz-row {
        grid-template-columns: 1fr;
    }

    .duck-chart {
        max-height: 180px;
    }

    .gas-bar-row {
        grid-template-columns: 100px 1fr;
        gap: 0.5rem;
    }

    .gas-bar-label {
        font-size: 0.68rem;
    }

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}