/*
 * z0007 - Retro Newspaper / Broadsheet Theme
 * "The Daily Gazette" aesthetic
 *
 * Palette:
 *   Parchment:   #FDF5E6
 *   Newsprint:   #F5ECD7
 *   Ink (text):  #3B2F2F
 *   Masthead:    #2A1F1F
 *   Red accent:  #8B0000
 *   Rule line:   #8B7355
 *   Sepia mid:   #A0886C
 *   Warm cream:  #EDE3D0
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;700;900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=UnifrakturMaguntia&display=swap');

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }

body {
    font-family: "Playfair Display", Georgia, "Noto Serif SC", "Source Han Serif CN", "SimSun", serif;
    font-size: 15px;
    color: #3B2F2F;
    background: #FDF5E6;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

a { color: #3B2F2F; text-decoration: none; transition: color .2s; }
a:hover { color: #8B0000; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, "Noto Serif SC", serif; }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* =========================================================
   DECORATIVE RULE STYLES
   ========================================================= */
.ornamental-rule {
    border: none;
    height: 0;
    border-top: 1px solid #8B7355;
    border-bottom: 1px solid #8B7355;
    padding-top: 2px;
    margin: 0;
}

.thick-rule {
    border: none;
    height: 4px;
    background: #2A1F1F;
    margin: 0;
}

.thin-rule {
    border: none;
    height: 1px;
    background: #8B7355;
    margin: 0;
}

.double-rule {
    border: none;
    height: 0;
    border-top: 3px double #2A1F1F;
    margin: 0;
}

/* =========================================================
   MASTHEAD (Newspaper Header)
   ========================================================= */
.masthead {
    text-align: center;
    padding: 0 10px;
    background: #FDF5E6;
    overflow: hidden;
}

.masthead-top-rule {
    height: 2px;
    background: #2A1F1F;
    margin-bottom: 2px;
}

.masthead-top-rule::after {
    content: '';
    display: block;
    height: 1px;
    background: #2A1F1F;
    margin-top: 3px;
}

.masthead-dateline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #8B7355;
    padding: 6px 0 4px;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 0.5px;
    max-width: 1100px;
    margin: 0 auto;
    text-transform: uppercase;
}

.masthead-logo {
    padding: 10px 0 6px;
}

.logo {
    font-family: "UnifrakturMaguntia", "Playfair Display", Georgia, "Noto Serif SC", serif;
    font-size: 52px;
    font-weight: 400;
    color: #2A1F1F;
    letter-spacing: 3px;
    line-height: 1.1;
    display: inline-block;
    text-shadow: 1px 1px 0 rgba(139,115,85,0.15);
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.logo:hover { color: #8B0000; }

.masthead-subtitle {
    font-size: 12px;
    color: #A0886C;
    letter-spacing: 4px;
    font-family: Georgia, "Noto Serif SC", serif;
    font-style: italic;
    margin-top: 2px;
    padding-bottom: 8px;
}

.masthead-edition {
    text-align: center;
    padding: 4px 0;
    font-size: 11px;
    color: #8B7355;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 1px;
    font-style: italic;
    background: linear-gradient(to right, transparent, #EDE3D0, transparent);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================================
   TOP NAVIGATION BAR
   ========================================================= */
.topnav {
    background: #2A1F1F;
    position: sticky;
    top: 0;
    z-index: 100;
    border-top: 1px solid #8B7355;
    border-bottom: 1px solid #8B7355;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 38px;
    padding: 0 10px;
    gap: 0;
    flex-wrap: nowrap;
    overflow: hidden;
}

.topnav a {
    color: #EDE3D0;
    padding: 6px 14px;
    font-size: 13px;
    white-space: nowrap;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(139,115,85,0.3);
    transition: background .2s, color .2s;
}

.topnav a:first-child {
    border-left: 1px solid rgba(139,115,85,0.3);
}

.topnav a:hover, .topnav a.active {
    background: #8B0000;
    color: #FDF5E6;
}

.topnav a.sub {
    font-size: 12px;
    opacity: .7;
    font-style: italic;
}

.topnav a.sub:hover, .topnav a.sub.active {
    opacity: 1;
    background: #6B0000;
}

.nav-search {
    margin-left: auto;
    display: flex;
    flex-shrink: 0;
    border-left: 1px solid rgba(139,115,85,0.3);
    padding-left: 10px;
}

.nav-search input {
    width: 140px;
    height: 26px;
    border: 1px solid #8B7355;
    padding: 0 8px;
    font-size: 12px;
    outline: none;
    background: #F5ECD7;
    color: #3B2F2F;
    font-family: Georgia, "Noto Serif SC", serif;
}

.nav-search input::placeholder { color: #A0886C; }
.nav-search input:focus { border-color: #8B0000; background: #FDF5E6; }

.nav-search button {
    height: 26px;
    padding: 0 12px;
    background: #8B0000;
    color: #FDF5E6;
    border: 1px solid #8B0000;
    cursor: pointer;
    font-size: 12px;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 0.5px;
    transition: background .2s;
}

.nav-search button:hover { background: #6B0000; }

/* Mobile buttons */
.m-btns {
    display: none;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.m-btns button {
    background: none;
    border: none;
    cursor: pointer;
    color: #EDE3D0;
    padding: 4px;
}

/* Mobile Search Panel */
.search-panel {
    display: none;
    padding: 10px;
    background: #EDE3D0;
    border-bottom: 2px solid #8B7355;
}

.search-panel.show { display: flex; gap: 8px; }

.search-panel input {
    flex: 1;
    height: 36px;
    border: 1px solid #8B7355;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    background: #FDF5E6;
    font-family: Georgia, "Noto Serif SC", serif;
    color: #3B2F2F;
}

.search-panel input:focus { border-color: #8B0000; }

.search-panel button {
    height: 36px;
    padding: 0 16px;
    background: #8B0000;
    color: #FDF5E6;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 0.5px;
}

/* Mobile Navigation */
.m-nav {
    display: none;
    background: #EDE3D0;
    border-bottom: 2px solid #8B7355;
    padding: 12px;
    flex-wrap: wrap;
    gap: 6px;
}

.m-nav.show { display: flex; }

.m-nav a {
    padding: 5px 12px;
    font-size: 13px;
    background: #FDF5E6;
    color: #3B2F2F;
    border: 1px solid #8B7355;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 0.5px;
}

.m-nav a:hover { background: #2A1F1F; color: #FDF5E6; border-color: #2A1F1F; }
.m-nav a.sub { font-size: 12px; color: #A0886C; border-color: #C4B89E; font-style: italic; }

/* =========================================================
   MAIN CONTENT AREA
   ========================================================= */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 10px;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

main > h1 {
    font-family: "Playfair Display", Georgia, "Noto Serif SC", serif;
    font-size: 28px;
    font-weight: 900;
    color: #2A1F1F;
    text-align: center;
    padding: 12px 0;
    margin-bottom: 16px;
    border-top: 3px solid #2A1F1F;
    border-bottom: 1px solid #8B7355;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================================================
   SECTION HEADERS — "Column" style with ornamental rules
   ========================================================= */
.column-section {
    margin-bottom: 30px;
}

.sec-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-top: 2px solid #2A1F1F;
    border-bottom: 1px solid #8B7355;
    padding-top: 8px;
    position: relative;
}

.sec-title {
    font-family: "Playfair Display", Georgia, "Noto Serif SC", serif;
    font-size: 20px;
    font-weight: 900;
    color: #2A1F1F;
    white-space: nowrap;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sec-line {
    flex: 1;
    height: 0;
    border-top: 1px dotted #A0886C;
}

.sec-hd .more {
    font-size: 12px;
    color: #8B0000;
    white-space: nowrap;
    font-family: Georgia, "Noto Serif SC", serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

.sec-hd .more:hover { color: #2A1F1F; text-decoration: underline; }

/* =========================================================
   HEADLINE GRID — Same as .grid but on index page headline
   ========================================================= */
.headline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 100%;
}

/* =========================================================
   STANDARD VIDEO GRID — Classified-ad / column style
   ========================================================= */
.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 100%;
}

a.item {
    display: block;
    background: #FFFAF0;
    border: 1px solid #8B7355;
    overflow: hidden;
    transition: background .2s, box-shadow .2s;
    position: relative;
}

a.item:hover {
    background: #FDF5E6;
    box-shadow: inset 0 0 0 2px #8B0000;
}

a.item .cover {
    display: block;
    position: relative;
    padding-bottom: 140%;
    overflow: hidden;
    background: #EDE3D0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23C4B89E' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25%;
}

a.item .cover img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: sepia(8%) contrast(1.02);
    transition: filter .3s;
}

a.item:hover .cover img {
    filter: sepia(0%) contrast(1.05);
}

a.item .cover .mark {
    position: absolute;
    right: 0;
    top: 0;
    background: #8B0000;
    color: #FDF5E6;
    font-size: 10px;
    padding: 2px 8px;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 0.5px;
    font-style: italic;
}

a.item .title {
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #3B2F2F;
    font-family: Georgia, "Noto Serif SC", serif;
    border-top: 1px dotted #D4C5A9;
}

a.item:hover .title { color: #8B0000; }

a.item .score-badge {
    position: absolute;
    left: 6px;
    top: 6px;
    background: rgba(139,0,0,0.85);
    color: #FDF5E6;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 6px;
    font-family: Georgia, serif;
}

/* =========================================================
   CATEGORY TABS — Newspaper section tabs
   ========================================================= */
.cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 16px;
    padding: 0;
    border-top: 2px solid #2A1F1F;
    border-bottom: 1px solid #8B7355;
}

.cat-tabs a {
    padding: 6px 16px;
    font-size: 13px;
    color: #3B2F2F;
    background: transparent;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 0.5px;
    border-right: 1px solid #D4C5A9;
    transition: background .2s, color .2s;
}

.cat-tabs a:hover {
    background: #EDE3D0;
    color: #8B0000;
}

.cat-tabs a.active {
    background: #2A1F1F;
    color: #FDF5E6;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
nav.breadcrumb {
    font-size: 12px;
    color: #A0886C;
    padding: 8px 0;
    font-family: Georgia, "Noto Serif SC", serif;
    font-style: italic;
    border-bottom: 1px dotted #C4B89E;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

nav.breadcrumb a { color: #8B0000; }
nav.breadcrumb a:hover { text-decoration: underline; }

/* =========================================================
   DETAIL PAGE — Archive / Article layout
   ========================================================= */
.detail {
    display: flex;
    gap: 24px;
    background: #FFFAF0;
    padding: 20px;
    border: 1px solid #8B7355;
    margin-bottom: 20px;
    position: relative;
}

.detail::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0; right: 0;
    height: 3px;
    background: #2A1F1F;
}

.detail-cover {
    width: 220px;
    flex-shrink: 0;
    background: #EDE3D0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23C4B89E' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20%;
    min-height: 200px;
}

.detail-cover img {
    width: 100%;
    border: 1px solid #8B7355;
    box-shadow: 3px 3px 0 rgba(59,47,47,0.1);
    filter: sepia(5%);
}

.detail-info { flex: 1; min-width: 0; }

.detail-info h1 {
    font-family: "Playfair Display", Georgia, "Noto Serif SC", serif;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #2A1F1F;
    line-height: 1.3;
    border: none;
    padding: 0;
    letter-spacing: 1px;
}

.score {
    display: inline-block;
    background: #8B0000;
    color: #FDF5E6;
    font-size: 14px;
    font-weight: 700;
    padding: 2px 12px;
    margin-bottom: 12px;
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: 0.5px;
}

.info-list {
    font-size: 14px;
    color: #5A4A3A;
    margin-bottom: 12px;
    font-family: Georgia, "Noto Serif SC", serif;
    line-height: 1.8;
}

.info-list dt {
    float: left;
    clear: left;
    width: 50px;
    font-weight: 700;
    color: #2A1F1F;
    margin-bottom: 6px;
}

.info-list dt::after { content: '\FF1A'; }

.info-list dd {
    margin-left: 55px;
    margin-bottom: 6px;
    line-height: 1.6;
}

.play-action { margin-top: 14px; }

.btn-play {
    display: inline-block;
    padding: 10px 30px;
    background: #8B0000;
    color: #FDF5E6;
    font-size: 15px;
    font-weight: 700;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 1px;
    border: 1px solid #6B0000;
    transition: background .2s;
    text-transform: uppercase;
}

.btn-play:hover { background: #2A1F1F; color: #FDF5E6; }
.btn-play.disabled { background: #C4B89E; cursor: not-allowed; color: #FDF5E6; border-color: #A0886C; }

/* =========================================================
   VOD GROUPS / EPISODE LISTS
   ========================================================= */
.vod-group { margin-bottom: 14px; }

.vod-name {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #2A1F1F;
    margin-bottom: 8px;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 0.5px;
    padding-bottom: 2px;
    border-bottom: 1px solid #8B7355;
}

.ep-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ep-btn {
    display: inline-block;
    padding: 4px 14px;
    font-size: 13px;
    background: #FFFAF0;
    border: 1px solid #8B7355;
    color: #3B2F2F;
    font-family: Georgia, "Noto Serif SC", serif;
    transition: all .2s;
    letter-spacing: 0.3px;
}

.ep-btn:hover {
    border-color: #8B0000;
    color: #8B0000;
    background: #FDF5E6;
}

.ep-btn.active {
    background: #8B0000;
    color: #FDF5E6;
    border-color: #8B0000;
}

/* =========================================================
   DESCRIPTION BLOCK
   ========================================================= */
.desc {
    font-size: 15px;
    line-height: 1.9;
    color: #3B2F2F;
    padding: 14px 0;
    text-indent: 2em;
    font-family: Georgia, "Noto Serif SC", serif;
    column-count: 2;
    column-gap: 30px;
    column-rule: 1px solid #D4C5A9;
}

/* =========================================================
   PLAYER
   ========================================================= */
.player-box {
    margin-bottom: 20px;
    border: 1px solid #8B7355;
    background: #000;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #1a1510;
}

.player-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1a1510;
    color: #A0886C;
    font-size: 14px;
    font-family: Georgia, "Noto Serif SC", serif;
    z-index: 5;
    gap: 10px;
    letter-spacing: 1px;
}

.player-loading.hide { display: none; }

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #5A4A3A;
    border-top-color: #8B0000;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

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

.video-player { width: 100%; height: 100%; }
.video-player iframe { width: 100%; height: 100%; border: none; }

/* =========================================================
   PAGINATION — Newspaper page numbers
   ========================================================= */
.paging {
    padding: 20px 0;
    text-align: center;
}

.paging ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.paging a, .paging span {
    display: inline-block;
    padding: 5px 14px;
    font-size: 13px;
    background: #FFFAF0;
    border: 1px solid #8B7355;
    color: #3B2F2F;
    font-family: Georgia, serif;
    transition: all .2s;
    letter-spacing: 0.3px;
}

.paging a:hover {
    border-color: #8B0000;
    color: #8B0000;
}

.paging .active a,
.paging span.current,
.paging a.current {
    background: #2A1F1F;
    color: #FDF5E6;
    border-color: #2A1F1F;
}

.paging .disabled a {
    color: #C4B89E;
    cursor: default;
    border-color: #D4C5A9;
}

/* =========================================================
   SEARCH RESULTS / EMPTY STATE
   ========================================================= */
.empty {
    text-align: center;
    padding: 50px 20px;
    font-size: 16px;
    color: #A0886C;
    font-style: italic;
    font-family: Georgia, "Noto Serif SC", serif;
    border: 1px dashed #C4B89E;
    background: #FFFAF0;
    margin: 16px 0;
    letter-spacing: 0.5px;
}

/* =========================================================
   FOOTER — Newspaper colophon
   ========================================================= */
footer {
    margin-top: 30px;
    background: #EDE3D0;
    border-top: 3px solid #2A1F1F;
    position: relative;
}

footer::before {
    content: '';
    display: block;
    height: 1px;
    background: #2A1F1F;
    margin-top: 3px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 10px;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #A0886C;
}

.footer-links a {
    color: #3B2F2F;
    margin: 0 10px;
    font-size: 13px;
    font-family: Georgia, "Noto Serif SC", serif;
    letter-spacing: 0.5px;
    transition: color .2s;
}

.footer-links a:hover { color: #8B0000; text-decoration: underline; }

.copyright {
    font-size: 12px;
    color: #A0886C;
    font-family: Georgia, serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

.footer-ornament {
    text-align: center;
    font-size: 14px;
    color: #C4B89E;
    margin-top: 8px;
    letter-spacing: 8px;
}

/* =========================================================
   INDEX PAGE — Two-column layout via CSS grid
   ========================================================= */
.newspaper-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    border-left: none;
    position: relative;
}

/* Vertical rule between columns */
.newspaper-columns::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #8B7355;
    transform: translateX(-0.5px);
}

/* Grid inside newspaper columns needs fewer columns */
.newspaper-columns .grid {
    grid-template-columns: repeat(3, 1fr);
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(4, 1fr); }
    .headline-grid { grid-template-columns: repeat(4, 1fr); }
    .topnav a.sub { display: none; }
    .newspaper-columns { grid-template-columns: 1fr 1fr; }
    .desc { column-count: 1; }
}

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

    .headline-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-inner { display: none; }
    .m-btns { display: flex; }
    .topnav {
        display: flex;
        align-items: center;
        height: 42px;
        padding: 0 10px;
    }

    .detail { flex-direction: column; }
    .detail-cover { width: 180px; margin: 0 auto; }

    .masthead-logo { padding: 8px 0 4px; }
    .logo { font-size: 36px; letter-spacing: 2px; }
    .masthead-subtitle { font-size: 11px; letter-spacing: 3px; }
    .masthead-dateline { font-size: 10px; }

    .newspaper-columns { grid-template-columns: 1fr; }
    .newspaper-columns::before { display: none; }
    .newspaper-columns .grid { grid-template-columns: repeat(3, 1fr); }
    .desc { column-count: 1; }

    main > h1 { font-size: 22px; letter-spacing: 1px; }
    .sec-title { font-size: 17px; }
}

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

    .headline-grid { grid-template-columns: repeat(2, 1fr); }

    main { padding: 10px 4px; overflow: hidden; }
    .grid, .headline-grid { gap: 6px; overflow: hidden; }
    .detail { padding: 12px; gap: 14px; }
    .detail-cover { width: 140px; }
    .detail-info h1 { font-size: 19px; }

    .logo { font-size: 22px; letter-spacing: 0; word-break: break-all; }
    .masthead-dateline { flex-direction: column; gap: 2px; text-align: center; }
    .masthead-subtitle { letter-spacing: 1px; font-size: 9px; }

    .sec-title { font-size: 15px; letter-spacing: 1px; }
    .ep-btn { padding: 3px 10px; font-size: 12px; }
    .cat-tabs a { padding: 5px 10px; font-size: 12px; }
}
