:root {
    --bg: #f4f4f5;
    --surface: #ffffff;
    --text: #18181b;
    --text-2: #71717a;
    --accent: #dc2626;
    --accent-bg: #fef2f2;
    --blue: #2563eb;
    --blue-bg: #eff6ff;
    --green: #16a34a;
    --green-bg: #f0fdf4;
    --border: #e4e4e7;
    --r: 10px;
    --r-sm: 6px;
    --shadow: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --serif: 'Merriweather', Georgia, serif;
}

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
header {
    background: var(--text);
    color: #fff;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}

.logo-icon {
    width: 32px; height: 32px;
    background: var(--accent);
    border-radius: var(--r-sm);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-text { font-weight: 700; font-size: 1rem; }
.logo-accent { color: var(--accent); }

.header-nav {
    display: flex;
    gap: .25rem;
}

.nav-tab {
    padding: .35rem .85rem;
    border-radius: var(--r-sm);
    font-size: .85rem;
    font-weight: 500;
    color: #a1a1aa;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.nav-tab:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.nav-tab-active {
    color: #fff;
    background: rgba(255,255,255,.15);
}

.search-form {
    flex: 1;
    max-width: 360px;
    position: relative;
}

.search-icon {
    position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px; color: #a1a1aa; pointer-events: none;
}

.search-form input {
    width: 100%;
    padding: .45rem .8rem .45rem 2.1rem;
    border: none;
    border-radius: var(--r-sm);
    font-size: .85rem;
    font-family: var(--font);
    background: rgba(255,255,255,.12);
    color: #fff;
    outline: none;
    transition: background .2s;
}

.search-form input::placeholder { color: #a1a1aa; }
.search-form input:focus { background: rgba(255,255,255,.2); }

.btn-refresh {
    background: none;
    border: none;
    cursor: pointer;
    padding: .35rem;
    border-radius: var(--r-sm);
    flex-shrink: 0;
    display: grid;
    place-items: center;
    transition: background .15s;
}

.btn-refresh:hover { background: rgba(255,255,255,.1); }
.btn-refresh:disabled { opacity: .5; cursor: wait; }

.refresh-icon {
    width: 20px;
    height: 20px;
    color: #a1a1aa;
    transition: color .15s;
}

.btn-refresh:hover .refresh-icon { color: #fff; }

.btn-refresh.spinning .refresh-icon {
    animation: spin .8s linear infinite;
    color: var(--accent);
}

@keyframes spin { to { transform: rotate(360deg); } }


/* ── MAIN ── */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

/* ── PAGE HEADER ── */
.page-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: .75rem;
}

.page-header-left {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .15rem .75rem;
}

.page-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -.01em;
    width: 100%;
}

.page-date {
    font-size: .9rem;
    color: var(--text-2);
}

.page-count {
    font-size: .85rem;
    color: var(--text-2);
}

.filters select {
    padding: .4rem 2rem .4rem .75rem;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: .85rem;
    font-family: var(--font);
    background: var(--surface);
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2371717a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .6rem center;
    background-size: 10px;
}

.filters form { display: flex; gap: .5rem; flex-wrap: wrap; }
.filters select:focus { border-color: var(--accent); }

/* ── STATS ── */
.stats-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.stats-toggle {
    display: flex;
    align-items: center;
    padding: .75rem 1rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    gap: .5rem;
}
.stats-toggle::-webkit-details-marker { display: none; }
.stats-toggle:hover { background: #fafafa; }

.stats-title {
    display: flex; align-items: center; gap: .4rem;
    font-weight: 600; font-size: .85rem;
}

.stats-icon { width: 16px; height: 16px; color: var(--accent); }

.stats-badge {
    background: var(--accent-bg);
    color: var(--accent);
    padding: .15rem .6rem;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
}

.chevron {
    width: 16px; height: 16px; color: var(--text-2);
    margin-left: auto;
    transition: transform .2s;
}

details[open] > .stats-toggle .chevron { transform: rotate(180deg); }

.stats-body { padding: 0 1rem 1rem; }

.stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}

.stats-table th {
    text-align: left;
    padding: .35rem .5rem;
    color: var(--text-2);
    font-weight: 500;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--border);
}

.stats-table td { padding: .4rem .5rem; border-bottom: 1px solid #f4f4f5; }

.cell-name a { color: var(--text); text-decoration: none; font-weight: 500; }
.cell-name a:hover { color: var(--accent); }
.cell-num { text-align: center; font-variant-numeric: tabular-nums; color: var(--text); font-weight: 600; }
.cell-bar { width: 120px; }
.cell-status { text-align: center; }

.bar-track {
    height: 6px;
    background: #f4f4f5;
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    min-width: 2px;
}

.row-inactive { opacity: .45; }

.dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
}
.dot-ok { background: var(--green); }
.dot-err { background: #ef4444; }

/* ── FEATURED GRID ── */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featured-card {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--text);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow);
    transition: transform .2s;
}

.featured-card:hover { transform: translateY(-3px); }

.featured-img {
    position: absolute;
    inset: 0;
}

.featured-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}

.featured-content {
    position: relative;
    z-index: 1;
    padding: 1.25rem;
    color: #fff;
}

.featured-content.no-img {
    background: var(--text);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.featured-content .card-source { color: #fca5a5; }

.featured-content .card-top {
    display: flex; align-items: center; gap: .4rem;
    margin-bottom: .4rem; font-size: .75rem;
}

.featured-content h2 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .35rem;
}

.featured-content h2 a { color: #fff; text-decoration: none; }
.featured-content h2 a:hover { text-decoration: underline; }

.featured-content p {
    font-size: .8rem;
    color: #d4d4d8;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-content time {
    font-size: .72rem;
    color: #a1a1aa;
    margin-top: .4rem;
    display: block;
}

/* ── NEWS LIST ── */
.news-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.news-card {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .2s;
}

.news-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.08); }

.card-thumb {
    width: 200px;
    min-height: 130px;
    flex-shrink: 0;
    overflow: hidden;
}

.card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    flex: 1;
    padding: .85rem 1rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.card-top {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .3rem;
    font-size: .75rem;
}

.card-source { color: var(--accent); font-weight: 600; }

.card-multi {
    background: var(--blue-bg);
    color: var(--blue);
    padding: .1rem .45rem;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 600;
}

.badge-nueva {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: .1rem .5rem;
    border-radius: 100px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .3rem;
}

.card-time { margin-left: auto; color: var(--text-2); }

.card-body h3 {
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: .25rem;
}

.card-body h3 a { color: var(--text); text-decoration: none; }
.card-body h3 a:hover { color: var(--accent); }

.card-desc {
    color: var(--text-2);
    font-size: .82rem;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-top: auto;
    padding-top: .5rem;
}

.tag {
    background: var(--bg);
    color: var(--text-2);
    padding: .1rem .5rem;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 500;
}

/* ── DATES GRID (Pasadas) ── */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .75rem;
}

.date-card {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text);
    transition: box-shadow .2s, transform .15s;
}

.date-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.date-day {
    font-size: 1.1rem;
    font-weight: 700;
}

.date-count {
    font-size: .82rem;
    color: var(--text-2);
}

/* ── PORTADAS ── */
.portada-section {
    margin-bottom: 2rem;
    transition: opacity .2s;
}

.drag-handle {
    display: flex;
    align-items: center;
    cursor: grab;
    color: #d4d4d8;
    padding: .25rem;
    border-radius: 4px;
    transition: color .15s, background .15s;
    flex-shrink: 0;
    touch-action: none;
}

.drag-handle:hover {
    color: var(--text-2);
    background: var(--bg);
}

.drag-handle:active {
    cursor: grabbing;
}

.drag-handle svg {
    width: 16px;
    height: 16px;
}

.portada-section--ghost {
    opacity: 0.35;
}

.portada-section--drop-above {
    border-top: 3px solid var(--accent) !important;
}

.portada-section--drop-below {
    border-bottom: 3px solid var(--accent) !important;
}

details.portada-section > summary::-webkit-details-marker { display: none; }
details.portada-section > summary { list-style: none; }
details.portada-section > summary .chevron { transition: transform .2s; }
details.portada-section[open] > summary .chevron { transform: rotate(180deg); }

.portada-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0;
    border-bottom: 2px solid var(--text);
    margin-bottom: .75rem;
    cursor: pointer;
    user-select: none;
    gap: .5rem;
}

.portada-title {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.portada-logo {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    flex-shrink: 0;
}

.portada-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.portada-name:hover { color: var(--accent); }

.portada-count {
    font-size: .8rem;
    color: var(--text-2);
}

.portada-reliability {
    font-size: .75rem;
    color: var(--text-2);
    background: var(--green-bg);
    padding: .2rem .6rem;
    border-radius: 100px;
    font-weight: 500;
}

.portada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: .75rem;
}

.portada-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, transform .15s;
}

.portada-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.portada-thumb {
    height: 160px;
    overflow: hidden;
}

.portada-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portada-body {
    padding: .75rem .85rem;
}

.portada-body h3 {
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: .3rem;
}

.portada-body h3 a {
    color: var(--text);
    text-decoration: none;
}

.portada-body h3 a:hover { color: var(--accent); }

.portada-body p {
    font-size: .78rem;
    color: var(--text-2);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: .4rem;
}

.portada-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    color: var(--text-2);
}

.portada-disappeared {
    border-top: 2px dashed var(--border);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.portada-name--disappeared {
    color: var(--text-2);
    font-style: italic;
}

.disappeared-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
    table-layout: fixed;
}

.disappeared-table th {
    text-align: left;
    padding: .5rem .75rem;
    border-bottom: 2px solid var(--border);
    color: var(--text-2);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}

.disappeared-table th:nth-child(1) { width: 140px; }
.disappeared-table th:nth-child(2) { width: auto; }
.disappeared-table th:nth-child(3) { width: 120px; }

.disappeared-table td {
    padding: .5rem .75rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disappeared-table td:first-child {
    font-weight: 600;
    font-size: .82rem;
}

.disappeared-table td:last-child {
    width: 120px;
}

.disappeared-table a {
    color: var(--text);
    text-decoration: none;
}

.disappeared-table a:hover {
    color: var(--accent);
}

.disappeared-table tr:hover {
    background: #fafafa;
}

.disappeared-hidden {
    display: none;
}

.disappeared-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .75rem;
    font-size: .82rem;
    color: var(--text-2);
}

.disappeared-pager button {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: .3rem .7rem;
    font-size: .8rem;
    font-family: var(--font);
    cursor: pointer;
    color: var(--text);
    transition: background .15s;
}

.disappeared-pager button:hover { background: var(--bg); }
.disappeared-pager button:disabled { opacity: .4; cursor: default; }

.btn--secondary {
    background: var(--bg-1);
    color: var(--text-2);
    border: 1px solid var(--border);
    font-size: .8rem;
    padding: .4rem 1rem;
    border-radius: 6px;
    cursor: pointer;
}

.btn--secondary:hover {
    background: var(--border);
    color: var(--text-1);
}

.portada-kicker {
    font-size: .75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}

/* ── EMPTY ── */
.empty-state {
    display: grid;
    place-items: center;
    min-height: 300px;
}

.empty-box {
    text-align: center;
    color: var(--text-2);
}

.empty-box p { font-size: 1rem; margin-bottom: 1rem; }

/* ── BUTTON ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.2rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}

.btn:hover { background: #b91c1c; }

/* ── DETAIL ── */
.detail {
    max-width: 760px;
    margin: 0 auto;
}

.detail-back {
    display: inline-block;
    color: var(--text-2);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.detail-back:hover { color: var(--accent); }

.detail-hero {
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.detail-hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.detail-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--text-2);
    margin-bottom: .75rem;
}

.detail-source {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.detail-source:hover { text-decoration: underline; }
.detail-sep { color: var(--border); }

.detail-card h1 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.detail-summary {
    background: var(--accent-bg);
    border-left: 3px solid var(--accent);
    padding: .8rem 1rem;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin: 0 0 1.25rem;
    font-style: italic;
    font-size: .9rem;
    line-height: 1.55;
    color: #333;
}

.detail-text {
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.detail-sources {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.detail-sources h3 {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.source-chips { display: flex; flex-wrap: wrap; gap: .4rem; }

.chip {
    padding: .25rem .7rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 500;
    background: var(--bg);
    color: var(--text-2);
}

.chip-primary {
    background: var(--accent-bg);
    color: var(--accent);
    font-weight: 600;
}

.detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.detail-score {
    font-size: .8rem;
    color: var(--text-2);
}

.portada-card--active {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: var(--r);
    background: var(--accent-bg);
    animation: highlight-fade 3s ease-out forwards;
}

@keyframes highlight-fade {
    0% { background: var(--accent-bg); outline-color: var(--accent); }
    70% { background: var(--accent-bg); outline-color: var(--accent); }
    100% { background: transparent; outline-color: transparent; }
}

/* ── READER ── */
.reader .detail-card { max-width: 720px; margin: 0 auto; }

.reader-body {
    font-family: var(--serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.reader-body p {
    margin-bottom: 1.2rem;
}

.reader-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--r);
    margin: 1rem 0;
}

.reader-body h2, .reader-body h3 {
    font-family: var(--sans);
    margin: 1.5rem 0 .75rem;
}

.reader-body blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: var(--text-2);
}

.reader-body figure {
    margin: 1.5rem 0;
}

.reader-body figcaption {
    font-size: .85rem;
    color: var(--text-2);
    margin-top: .4rem;
}

.reader-summary {
    background: var(--accent-bg);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--r) var(--r) 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: .95rem;
    line-height: 1.6;
}

.reader-summary strong {
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--accent);
    margin-bottom: .4rem;
}

.reader-summary p {
    margin: 0;
    color: var(--text);
}

.reader-actions {
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.reader-fallback {
    color: var(--text-2);
    font-style: italic;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
    text-align: center;
    color: var(--text-2);
    font-size: .8rem;
}

.footer-sub { font-size: .7rem; margin-top: .15rem; opacity: .6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .featured-grid { grid-template-columns: 1fr; }
    .featured-card { min-height: 240px; }
}

@media (max-width: 640px) {
    .header-inner { gap: .5rem; }
    .logo-text { display: none; }
    .search-form { max-width: none; }

    main { padding: 1rem; }

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

    .news-card { flex-direction: column; }
    .card-thumb { width: 100%; min-height: 180px; }

    .portada-grid { grid-template-columns: 1fr; }
    .portada-thumb { height: 140px; }

    .cell-bar { display: none; }

    .detail-card { padding: 1.25rem; }
    .detail-card h1 { font-size: 1.25rem; }
    .detail-footer { flex-direction: column; gap: .75rem; align-items: flex-start; }
}
