:root {
    color-scheme: light;
    --ink: #37403f;
    --paper: #f7f1e8;
    --panel: #fffdfc;
    --panel-alt: #efe7db;
    --accent: #bf6a47;
    --accent-dark: #7f3e27;
    --teal: #47bfad;
    --teal-dark: #225f58;
    --border: #c9bfb2;
    --muted: #4b4a47;
    --shadow: rgba(55, 64, 63, 0.12);
    --danger-bg: #fff1ef;
    --danger-border: rgba(166, 59, 50, 0.25);
    --danger-text: #9b332c;
    --success-bg: #eef9f5;
    --success-border: rgba(71, 191, 173, 0.28);
    --success-text: #215d57;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --ink: #e8efe8;
    --paper: #131817;
    --panel: #1c2321;
    --panel-alt: #26312e;
    --accent: #d78f63;
    --accent-dark: #f0b084;
    --teal: #58d3c0;
    --teal-dark: #a7eee3;
    --border: #45514d;
    --muted: #bfcbc7;
    --shadow: rgba(0, 0, 0, 0.42);
    --danger-bg: #311c1a;
    --danger-border: rgba(255, 135, 119, 0.32);
    --danger-text: #ffb6a8;
    --success-bg: #17302b;
    --success-border: rgba(88, 211, 192, 0.3);
    --success-text: #a7eee3;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    background:
        linear-gradient(90deg, rgba(71, 191, 173, 0.16), transparent 34%),
        linear-gradient(180deg, var(--paper) 0%, #e8ddcd 100%);
}

:root[data-theme="dark"] body {
    background:
        radial-gradient(circle at 18% 0%, rgba(88, 211, 192, 0.16), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(215, 143, 99, 0.12), transparent 28%),
        linear-gradient(180deg, #0f1514 0%, var(--paper) 58%, #101412 100%);
}

body.is-loading {
    overflow: hidden;
}

body.is-loading::before,
body.is-loading::after {
    content: "";
    position: fixed;
    pointer-events: none;
}

body.is-loading::before {
    inset: 0;
    z-index: 9998;
    background: var(--paper);
    animation: loaderFade 420ms ease 850ms forwards;
}

body.is-loading::after {
    top: 50%;
    left: 50%;
    z-index: 9999;
    width: 190px;
    height: 145px;
    background: url("images/OT_Logo_03_20_2026.png") center / contain no-repeat;
    transform: translate(-50%, -50%);
    animation:
        loaderPulse 850ms ease-in-out infinite alternate,
        loaderFade 420ms ease 850ms forwards;
}

@keyframes loaderPulse {
    from {
        transform: translate(-50%, -50%) scale(0.96);
        opacity: 0.86;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes loaderFade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

a {
    color: var(--accent-dark);
}

code {
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    background: rgba(127, 127, 127, 0.16);
    font-family: Menlo, Consolas, monospace;
    font-size: 0.92em;
}

.site-shell {
    max-width: 1024px;
    margin: 0 auto;
    padding: 22px 16px 48px;
}

.site-header,
.hero-card,
.panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: 0 18px 42px var(--shadow);
}

.site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
    margin-bottom: 18px;
}

.site-brand {
    max-width: 840px;
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-eyebrow,
.section-kicker {
    margin: 0 0 10px;
    color: var(--teal-dark);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-title {
    margin: 0 0 12px;
    font-size: 3.25rem;
    line-height: 0.95;
}

.site-logo {
    display: block;
    width: min(176px, 48vw);
    height: auto;
    margin: 0 0 18px;
}

.app-logo {
    width: 116px;
    margin: 0;
    flex: 0 0 auto;
}

.site-logo-help {
    width: 96px;
    max-width: 30vw;
}

.site-lede,
.section-copy,
.info-card p,
.panel p,
.form-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: start;
    justify-content: flex-start;
}

.site-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    text-decoration: none;
    font-weight: 700;
}

.theme-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.site-nav a.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

:root[data-theme="dark"] .site-nav a,
:root[data-theme="dark"] .theme-toggle {
    background: rgba(28, 35, 33, 0.72);
}

:root[data-theme="dark"] .site-nav a.is-active,
:root[data-theme="dark"] .theme-toggle[aria-pressed="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

.hero-card,
.panel {
    padding: 28px;
    margin-bottom: 24px;
}

.section-title {
    margin: 0 0 12px;
    font-size: 2rem;
    line-height: 1.05;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.button-primary {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.app-dashboard {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.app-tile {
    position: relative;
    min-height: 188px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--panel);
    color: var(--ink);
    text-decoration: none;
    box-shadow: 0 14px 32px var(--shadow);
    overflow: hidden;
}

.app-tile:hover,
.compact-list a:hover,
.bill-card:hover {
    transform: translateY(-2px);
}

.app-tile,
.compact-list a,
.bill-card {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.app-tile strong,
.app-tile span {
    position: relative;
    z-index: 1;
    display: block;
}

.app-tile strong {
    margin-bottom: 8px;
    font-size: 1.45rem;
    line-height: 1.05;
}

.app-tile span:last-child {
    color: var(--muted);
    line-height: 1.45;
}

.app-tile img {
    position: absolute;
    right: 12px;
    bottom: 10px;
    width: 96px;
    max-height: 110px;
    object-fit: contain;
    opacity: 0.24;
}

.app-tile-primary {
    background:
        linear-gradient(135deg, rgba(71, 191, 173, 0.22), transparent 56%),
        var(--panel);
}

.app-tile-party {
    background:
        linear-gradient(135deg, rgba(191, 106, 71, 0.22), transparent 58%),
        var(--panel);
}

.tile-kicker {
    margin-bottom: 38px;
    color: var(--teal-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.feature-band,
.control-dock,
.app-section,
.party-screen,
.store-hero {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 253, 252, 0.9);
    box-shadow: 0 14px 34px var(--shadow);
}

:root[data-theme="dark"] .feature-band,
:root[data-theme="dark"] .control-dock,
:root[data-theme="dark"] .app-section,
:root[data-theme="dark"] .party-screen,
:root[data-theme="dark"] .store-hero {
    background: rgba(28, 35, 33, 0.92);
}

.feature-band {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: center;
    padding: 24px;
}

.bill-stage-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.bill-stage-row img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.compact-list {
    display: grid;
    gap: 10px;
}

.compact-list a {
    display: grid;
    grid-template-columns: minmax(108px, 0.32fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--paper);
    color: var(--ink);
    text-decoration: none;
}

.compact-list span {
    color: var(--muted);
    line-height: 1.45;
}

.control-dock {
    position: sticky;
    top: 10px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 12px;
    margin-bottom: 18px;
}

.dock-stat,
.dock-toggle {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--paper);
    font-weight: 700;
}

.dock-stat span {
    color: var(--muted);
    font-size: 0.84rem;
    text-transform: uppercase;
}

.dock-stat strong {
    font-size: 1.35rem;
}

.dock-toggle input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.news-menu-strip {
    margin-bottom: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--panel-alt);
    color: var(--ink);
}

.news-menu-strip strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.2;
}

.sort-bubble-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 0 14px;
    margin-bottom: 4px;
    scrollbar-width: none;
}

.sort-bubble-row::-webkit-scrollbar {
    display: none;
}

.sort-bubble-row button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--panel);
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.sort-bubble-row button.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

.app-section {
    padding: 24px;
    margin-bottom: 18px;
}

.section-row {
    display: flex;
    gap: 16px;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.section-row .briefs-status {
    max-width: 360px;
    margin: 0;
    text-align: right;
}

.button-row-compact {
    margin-top: 0;
}

.party-screen {
    padding: 16px;
}

.segmented-control {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.segmented-control button {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--panel);
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.segmented-control button.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

.segmented-small {
    margin-bottom: 14px;
}

.party-pane {
    padding: 8px;
}

.power-map {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 18px;
}

.power-pyramid {
    display: grid;
    justify-items: center;
    align-items: end;
}

.power-pyramid img {
    object-fit: contain;
}

.power-pyramid img:nth-child(1) {
    width: 86px;
}

.power-pyramid img:nth-child(2) {
    width: 128px;
    margin-top: -18px;
}

.power-pyramid img:nth-child(3) {
    width: 160px;
    margin-top: -24px;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.tier-grid article,
.result-card {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--paper);
}

.tier-grid strong,
.tier-grid span,
.result-card strong,
.result-card span {
    display: block;
}

.tier-grid strong,
.result-card strong {
    margin-bottom: 6px;
}

.tier-grid span,
.result-card span {
    color: var(--muted);
    line-height: 1.45;
}

.voter-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--panel-alt);
}

.inline-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.result-stack {
    display: grid;
    gap: 10px;
}

.bill-list {
    display: grid;
    gap: 12px;
}

.bill-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: 0 8px 20px rgba(55, 64, 63, 0.07);
}

.bill-badge {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--ink);
    color: var(--paper);
    font-weight: 900;
    text-transform: uppercase;
}

.bill-badge-art {
    width: 76px;
    height: 76px;
    flex-direction: column;
    gap: 2px;
    background: transparent;
    color: var(--ink);
}

.bill-badge-art img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.bill-badge-art span {
    font-size: 0.72rem;
    line-height: 1;
}

.bill-card h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    line-height: 1.25;
}

.bill-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.bill-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.store-hero {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
    margin-bottom: 18px;
}

.store-hero > img {
    width: 180px;
    max-width: 100%;
}

.store-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-icon-wrap {
    margin: 4px 0 4px;
}

.support-icon {
    display: block;
    width: 44px;
    height: 44px;
}

.settings-list {
    display: grid;
    gap: 14px;
}

.settings-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.settings-toggle input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.settings-stats {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.settings-stats p {
    margin: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.info-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 14px 36px var(--shadow);
}

.info-card h3,
.prose-panel h3 {
    margin-top: 0;
}

.prose-panel h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

details {
    border-top: 1px solid var(--border);
    padding: 16px 0;
}

details:first-of-type {
    border-top: 0;
    padding-top: 8px;
}

summary {
    cursor: pointer;
    font-weight: 700;
}

.split-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.support-form {
    margin-top: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    margin-bottom: 2px;
}

.field-full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--panel);
    color: var(--ink);
    font: inherit;
}

textarea {
    min-height: 170px;
    resize: vertical;
}

.status-message {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
}

.status-message.is-success {
    display: block;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success-text);
}

.briefs-stack {
    display: grid;
    gap: 20px;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-chip {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    min-height: 40px;
    padding: 0 14px;
}

.filter-chip.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fffdfc;
}

.filter-chip.is-followed:not(.is-active) {
    border-color: var(--accent-dark);
    box-shadow: inset 0 0 0 1px rgba(34, 95, 88, 0.12);
}

.briefs-status {
    margin-bottom: 20px;
    color: var(--muted);
    font-weight: 700;
}

.brief-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 38px var(--shadow);
}

.brief-card {
    border-left: 6px solid var(--teal);
}

.feed-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 14px 32px var(--shadow);
}

.feed-card {
    display: grid;
    align-content: start;
}

.feed-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: grayscale(100%);
    border-radius: 18px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(71, 191, 173, 0.18), rgba(34, 95, 88, 0.08));
}

.reader-panel {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.reader-image {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 18px;
    filter: grayscale(100%);
    background: linear-gradient(135deg, rgba(71, 191, 173, 0.18), rgba(34, 95, 88, 0.08));
}

.reader-image.is-bill-icon {
    width: min(230px, 64vw);
    max-height: 230px;
    margin-right: auto;
    margin-left: auto;
    object-fit: contain;
    filter: none;
    background: transparent;
}

.bill-progress-panel {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--paper);
}

.bill-stage-reader {
    justify-content: flex-start;
    margin: 10px 0 12px;
}

.stage-chip {
    display: inline-grid;
    min-width: 108px;
    gap: 5px;
    justify-items: center;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
    opacity: 0.42;
}

.stage-chip.is-reached {
    color: var(--ink);
    opacity: 1;
}

.stage-chip img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.reader-webview-wrap {
    margin: 22px 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--paper);
    overflow: hidden;
}

.reader-webview-header {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border-bottom: 1px solid var(--border);
}

.reader-webview-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.reader-webview-header .section-kicker {
    margin-bottom: 4px;
}

.reader-webview {
    display: block;
    width: 100%;
    height: min(72vh, 760px);
    min-height: 520px;
    border: 0;
    background: #fff;
}

.reader-webview-wrap .form-note {
    padding: 12px 14px 14px;
    border-top: 1px solid var(--border);
}

.brief-title {
    margin: 0 0 10px;
    font-size: 1.75rem;
    line-height: 1.1;
}

.feed-title {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.2;
}

.brief-meta,
.brief-summary,
.feed-summary,
.brief-section p,
.brief-points {
    color: var(--muted);
    line-height: 1.7;
}

.brief-meta {
    margin: 0 0 14px;
    font-weight: 700;
}

.feed-summary {
    margin: 0 0 4px;
}

.brief-summary {
    margin: 0 0 18px;
}

.brief-section + .brief-section {
    margin-top: 16px;
}

.brief-section h3 {
    margin: 0 0 10px;
}

.brief-points {
    margin: 0;
    padding-left: 1.25rem;
}

.brief-points li + li {
    margin-top: 10px;
}

.status-message.is-error {
    display: block;
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
    color: var(--danger-text);
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px 28px;
    color: var(--muted);
    border-top: 1px solid rgba(127, 127, 127, 0.18);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 780px) {
    .app-brand {
        align-items: flex-start;
    }

    .app-dashboard,
    .feature-band,
    .power-map,
    .action-grid,
    .store-hero {
        grid-template-columns: 1fr;
    }

    .tier-grid {
        grid-template-columns: 1fr;
    }

    .section-row {
        display: grid;
    }

    .section-row .briefs-status {
        max-width: none;
        text-align: left;
    }

    .bill-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .bill-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-shell {
        padding: 14px 8px 38px;
    }

    .site-header,
    .hero-card,
    .panel,
    .info-card {
        padding: 22px;
        border-radius: 20px;
    }

    .site-header {
        padding: 18px;
    }

    .site-title {
        font-size: 2.65rem;
    }

    .section-title {
        font-size: 1.62rem;
    }

    .app-logo {
        width: 92px;
    }

    .app-dashboard {
        gap: 10px;
    }

    .app-tile {
        min-height: 154px;
    }

    .feature-band,
    .app-section,
    .party-screen,
    .store-hero {
        padding: 18px;
        border-radius: 20px;
    }

    body.is-loading::after {
        width: 170px;
        height: 130px;
    }

    .control-dock {
        position: static;
    }

    .inline-form {
        grid-template-columns: 1fr;
    }

    .feed-grid {
        grid-template-columns: 1fr;
    }

    .compact-list a {
        grid-template-columns: 1fr;
    }

    .reader-webview-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .reader-webview {
        height: 68vh;
        min-height: 420px;
    }
}
