/**
 * STT News — Main Stylesheet
 * Caribbean broadsheet editorial design.
 * Version: 1.0.0
 *
 * Migrated from GeneratePress override CSS — now native to our own markup.
 * All class names use BEM: .stt-block__element--modifier
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --stt-ink: #0a0f1a;
    --stt-navy: #141b2d;
    --stt-navy-mid: #1e293b;
    --stt-slate: #334155;
    --stt-iron: #475569;
    --stt-steel: #64748b;
    --stt-silver: #94a3b8;
    --stt-ash: #cbd5e1;
    --stt-fog: #e2e8f0;
    --stt-mist: #f1f5f9;
    --stt-paper: #f8f6f3;
    --stt-white: #ffffff;

    --stt-red: #b91c1c;
    --stt-red-deep: #7f1d1d;
    --stt-red-bright: #dc2626;
    --stt-gold: #b45309;
    --stt-teal: #0f766e;

    --font-headline: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ui: 'Source Sans 3', sans-serif;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;

    --rule-thin: 1px solid var(--stt-fog);
    --rule-thick: 3px solid var(--stt-ink);
    --rule-red: 3px solid var(--stt-red);

    --content-width: 780px;
    --wide-width: 1200px;
}

/* ============================================
   RESET / GLOBAL
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.8;
    color: var(--stt-ink);
    background: var(--stt-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--stt-red);
    color: var(--stt-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--stt-red);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

a:hover {
    color: var(--stt-red-deep);
}

/* ============================================
   SKIP LINK (Accessibility)
   ============================================ */
.stt-skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: var(--stt-ink);
    color: var(--stt-white);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s;
}

.stt-skip-link:focus {
    top: 0;
    color: var(--stt-white);
}

/* ============================================
   BREAKING NEWS BANNER
   ============================================ */
.stt-breaking {
    background: var(--stt-red);
    color: var(--stt-white);
    font-family: var(--font-ui);
    overflow: hidden;
}

.stt-breaking__inner {
    max-width: var(--wide-width);
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stt-breaking__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--stt-white);
    color: var(--stt-red);
    padding: 2px 10px;
    flex-shrink: 0;
    animation: stt-pulse 2s ease-in-out infinite;
}

@keyframes stt-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.stt-breaking__stories {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 600;
}

.stt-breaking__link {
    color: var(--stt-white);
    text-decoration: none;
}

.stt-breaking__link:hover {
    text-decoration: underline;
    color: var(--stt-white);
}

.stt-breaking__sep {
    opacity: 0.5;
}

/* ============================================
   HEADER / MASTHEAD
   ============================================ */
.stt-header {
    background: var(--stt-white);
}

.stt-header__rule {
    height: 4px;
    background: var(--stt-red);
}

.stt-header__masthead {
    max-width: var(--wide-width);
    margin: 0 auto;
    padding: 28px 40px 20px;
    text-align: center;
    border-bottom: var(--rule-thick);
}

.stt-header__dateline {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--stt-steel);
    margin-bottom: 8px;
}

.stt-header__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 1.5rem + 3vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    margin: 0;
}

.stt-header__title a {
    color: var(--stt-ink);
    text-decoration: none;
}

.stt-header__title a:hover {
    color: var(--stt-red);
}

.stt-header__tagline {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 0.9375rem;
    color: var(--stt-steel);
    letter-spacing: 0.5px;
    margin: 6px 0 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.stt-nav {
    background: var(--stt-white);
    border-bottom: var(--rule-thin);
}

.stt-nav__inner {
    max-width: var(--wide-width);
    margin: 0 auto;
    position: relative;
}

.stt-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.stt-nav__list li {
    position: relative;
}

.stt-nav__list li a {
    display: block;
    color: var(--stt-ink);
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 22px;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.stt-nav__list li a:hover {
    color: var(--stt-red);
}

.stt-nav__list li.current-menu-item > a,
.stt-nav__list li.current-menu-ancestor > a {
    color: var(--stt-red);
}

.stt-nav__list li.current-menu-item > a::after,
.stt-nav__list li.current-menu-ancestor > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 22px;
    right: 22px;
    height: 2px;
    background: var(--stt-red);
}

/* Dropdown */
.stt-nav__list ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--stt-white);
    border: var(--rule-thin);
    border-top: 2px solid var(--stt-red);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    min-width: 200px;
    z-index: 100;
}

.stt-nav__list li:hover > ul {
    display: block;
}

.stt-nav__list ul li a {
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 10px 20px;
}

.stt-nav__list ul li a:hover {
    background: var(--stt-mist);
}

/* Mobile toggle */
.stt-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 20px;
    flex-direction: column;
    gap: 4px;
}

.stt-nav__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--stt-ink);
    transition: transform 0.2s, opacity 0.2s;
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.stt-main {
    max-width: var(--wide-width);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-lg) var(--space-2xl);
}

/* Two-column layout: content + sidebar */
.stt-front__body,
.stt-article-layout,
.stt-archive-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-xl);
    align-items: start;
}

.stt-page-layout {
    max-width: var(--content-width);
    margin: 0 auto;
}

/* ============================================
   HERO STORY (Front Page Lead)
   ============================================ */
.stt-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: var(--rule-thick);
}

.stt-hero__image {
    overflow: hidden;
}

.stt-hero__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    transition: transform 0.3s;
}

.stt-hero__image a:hover .stt-hero__img {
    transform: scale(1.02);
}

.stt-hero__title {
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 8px 0 12px;
}

.stt-hero__title a {
    color: var(--stt-ink);
    text-decoration: none;
}

.stt-hero__title a:hover {
    color: var(--stt-red);
}

.stt-hero__excerpt {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--stt-navy-mid);
}

.stt-hero__excerpt p {
    margin: 0;
}

/* Hero without image (editorial) */
.stt-hero:not(:has(.stt-hero__image)) {
    grid-template-columns: 1fr;
    max-width: var(--content-width);
}

/* ============================================
   STORY GRID
   ============================================ */
.stt-grid__rule {
    height: 3px;
    background: var(--stt-ink);
    margin-bottom: var(--space-sm);
}

.stt-grid__heading {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--stt-steel);
    margin: 0 0 var(--space-lg);
}

.stt-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.stt-card__image {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}

.stt-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.stt-card:hover .stt-card__img {
    transform: scale(1.03);
}

.stt-grid__empty {
    color: var(--stt-steel);
    font-style: italic;
}

/* ============================================
   STORY CARD
   ============================================ */
.stt-card {
    background: var(--stt-white);
    border-bottom: var(--rule-thin);
    padding-bottom: var(--space-lg);
    position: relative;
}

.stt-card__image {
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.stt-card__img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 0.3s;
}

.stt-card__image a:hover .stt-card__img {
    transform: scale(1.02);
}

.stt-card__title {
    font-family: var(--font-headline);
    font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 6px 0 8px;
}

.stt-card__title a {
    color: var(--stt-ink);
    text-decoration: none;
}

.stt-card__title a:hover {
    color: var(--stt-red);
}

.stt-card__excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--stt-navy-mid);
}

.stt-card__excerpt p {
    margin: 0;
}

/* ============================================
   CATEGORY BADGES
   ============================================ */
.stt-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.stt-badge {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border: 1.5px solid var(--stt-ink);
    background: transparent;
    color: var(--stt-ink);
    text-decoration: none;
    transition: all 0.15s;
    line-height: 1.4;
}

.stt-badge:hover {
    background: var(--stt-ink);
    color: var(--stt-white);
}

.stt-badge--editorial {
    border-color: var(--stt-red);
    color: var(--stt-red);
}

.stt-badge--editorial:hover {
    background: var(--stt-red);
    color: var(--stt-white);
}

.stt-badge--breaking {
    background: var(--stt-red);
    border-color: var(--stt-red);
    color: var(--stt-white);
    animation: stt-pulse 2s ease-in-out infinite;
}

/* ============================================
   META / DATELINE
   ============================================ */
.stt-meta {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: var(--stt-steel);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stt-meta__date {
    font-weight: 700;
    color: var(--stt-ink);
}

.stt-meta__sep {
    color: var(--stt-silver);
}

.stt-meta__author {
    color: var(--stt-iron);
}

.stt-meta__author strong {
    font-weight: 600;
}

/* ============================================
   SINGLE ARTICLE
   ============================================ */
.stt-article {
    background: var(--stt-white);
    padding: var(--space-xl) var(--space-xl) var(--space-2xl);
}

.stt-article__header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: var(--rule-thin);
}

.stt-article__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 1.5rem + 2.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--stt-ink);
    margin: 8px 0 16px;
}

.stt-article__meta {
    margin-top: var(--space-md);
}

.stt-article__hero {
    margin: 0 calc(-1 * var(--space-xl)) var(--space-xl);
}

.stt-article__hero-img {
    width: 100%;
    height: auto;
}

.stt-article__caption {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: var(--stt-steel);
    padding: var(--space-sm) var(--space-xl);
    font-style: italic;
}

/* Article body */
.stt-article__content {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--stt-navy-mid);
    max-width: 680px;
}

.stt-article__content p {
    margin-bottom: 1.4em;
}

.stt-article__content h2 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stt-ink);
    margin-top: 2em;
    margin-bottom: 0.75em;
    padding-top: 1em;
    border-top: var(--rule-thin);
}

.stt-article__content h3 {
    font-family: var(--font-headline);
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--stt-ink);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.stt-article__content a {
    color: var(--stt-red);
    text-decoration: underline;
}

.stt-article__content a:hover {
    color: var(--stt-red-deep);
}

.stt-article__content blockquote {
    border: none;
    border-top: 2px solid var(--stt-ink);
    border-bottom: 2px solid var(--stt-ink);
    padding: 24px 0;
    margin: 32px 0;
    background: transparent;
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--stt-ink);
    text-align: center;
}

.stt-article__content blockquote p {
    margin-bottom: 0;
}

.stt-article__content ul,
.stt-article__content ol {
    margin-bottom: 1.4em;
    padding-left: 1.5em;
}

.stt-article__content li {
    margin-bottom: 0.4em;
}

.stt-article__content img {
    border-radius: 0;
}

/* Article footer */
.stt-article__footer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: var(--rule-thin);
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: var(--stt-steel);
}

.stt-article__tag-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-right: 4px;
}

/* ============================================
   RELATED STORIES
   ============================================ */
.stt-related {
    margin-top: var(--space-2xl);
}

.stt-related__rule {
    height: 3px;
    background: var(--stt-ink);
    margin-bottom: var(--space-sm);
}

.stt-related__heading {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--stt-steel);
    margin: 0 0 var(--space-lg);
}

.stt-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* ============================================
   ARCHIVE HEADER
   ============================================ */
.stt-archive__header {
    margin-bottom: var(--space-xl);
}

.stt-archive__rule {
    height: 3px;
    background: var(--stt-red);
    margin-bottom: var(--space-md);
}

.stt-archive__title {
    font-family: var(--font-headline);
    font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.25rem);
    font-weight: 700;
    color: var(--stt-ink);
    margin: 0 0 var(--space-sm);
}

.stt-archive__desc {
    font-size: 1rem;
    color: var(--stt-steel);
    max-width: var(--content-width);
}

/* ============================================
   PAGE
   ============================================ */
.stt-page {
    background: var(--stt-white);
    padding: var(--space-xl);
}

.stt-page__header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: var(--rule-thick);
}

.stt-page__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 1.5rem + 2.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--stt-ink);
    margin: 0;
}

.stt-page__content {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--stt-navy-mid);
}

.stt-page__content p {
    margin-bottom: 1.4em;
}

/* ============================================
   SIDEBAR
   ============================================ */
.stt-sidebar {
    padding-left: var(--space-lg);
    border-left: var(--rule-thin);
}

.stt-widget {
    margin-bottom: var(--space-xl);
}

.stt-widget__title {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--stt-steel);
    padding-bottom: 10px;
    margin: 0 0 14px;
    position: relative;
}

.stt-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--stt-red);
}

.stt-widget__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stt-widget__item {
    padding: 8px 0;
    border-bottom: 1px solid var(--stt-fog);
    font-size: 0.9375rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.stt-widget__item:last-child {
    border-bottom: none;
}

.stt-widget__item a {
    color: var(--stt-ink);
    text-decoration: none;
    flex: 1;
}

.stt-widget__item a:hover {
    color: var(--stt-red);
}

.stt-widget__date {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--stt-silver);
    flex-shrink: 0;
}

.stt-widget__count {
    font-size: 0.75rem;
    color: var(--stt-silver);
    flex-shrink: 0;
}

/* ============================================
   SEARCH FORM
   ============================================ */
.stt-search {
    display: flex;
}

.stt-search__input {
    flex: 1;
    border: 1.5px solid var(--stt-fog);
    padding: 10px 14px;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    border-radius: 0;
    background: var(--stt-white);
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.stt-search__input:focus {
    border-color: var(--stt-ink);
    outline: none;
}

.stt-search__button {
    background: var(--stt-ink);
    color: var(--stt-white);
    border: none;
    padding: 10px 18px;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.15s;
    min-height: 44px;
}

.stt-search__button:hover {
    background: var(--stt-red);
}

/* ============================================
   PAGINATION
   ============================================ */
.stt-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: var(--space-xl) 0;
}

.stt-pagination .nav-links a,
.stt-pagination .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1.5px solid var(--stt-fog);
    color: var(--stt-ink);
    text-decoration: none;
    transition: all 0.15s;
}

.stt-pagination .nav-links a:hover {
    background: var(--stt-ink);
    border-color: var(--stt-ink);
    color: var(--stt-white);
}

.stt-pagination .nav-links .current {
    background: var(--stt-red);
    border-color: var(--stt-red);
    color: var(--stt-white);
}

/* ============================================
   NO RESULTS
   ============================================ */
.stt-no-results {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

.stt-no-results__title {
    font-family: var(--font-headline);
    margin-bottom: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */
.stt-footer {
    background: var(--stt-ink);
    color: var(--stt-silver);
}

.stt-footer__rule {
    height: 3px;
    background: var(--stt-red);
}

.stt-footer__columns {
    max-width: var(--wide-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    font-family: var(--font-ui);
    font-size: 0.8125rem;
}

.stt-footer__col {}

.stt-footer__name {
    display: block;
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stt-white);
    margin-bottom: var(--space-sm);
}

.stt-footer__about {
    color: var(--stt-steel);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.stt-footer__heading {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stt-ash);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--stt-red);
}

.stt-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stt-footer__list li {
    margin-bottom: 6px;
}

.stt-footer__legal {
    margin-top: var(--space-md);
}

.stt-footer__legal p {
    margin: 0 0 4px;
    color: var(--stt-steel);
    font-size: 0.75rem;
}

.stt-footer a {
    color: var(--stt-silver);
    text-decoration: none;
    transition: color 0.15s;
}

.stt-footer a:hover {
    color: var(--stt-white);
}

.stt-footer__bottom {
    max-width: var(--wide-width);
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--stt-slate);
    text-align: center;
    color: var(--stt-steel);
    font-size: 0.75rem;
    font-family: var(--font-ui);
}

.stt-footer__bottom p {
    margin: 0;
}

.stt-footer .search-form {
    display: flex;
    gap: 4px;
}

.stt-footer .search-field {
    background: var(--stt-slate);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--stt-white);
    padding: 6px 10px;
    border-radius: 3px;
    font-size: 0.8125rem;
    flex: 1;
}

.stt-footer .search-submit {
    background: var(--stt-red);
    color: var(--stt-white);
    border: none;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Footer responsive */
@media (max-width: 1024px) {
    .stt-footer__columns {
        grid-template-columns: 1fr 1fr;
    }

    .stt-front__body,
    .stt-article-layout,
    .stt-archive-layout {
        grid-template-columns: 1fr;
    }

    .stt-sidebar {
        border-left: none;
        border-top: var(--rule-thin);
        padding-left: 0;
        padding-top: var(--space-lg);
    }

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

@media (max-width: 768px) {
    .stt-footer__columns {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .stt-header__masthead {
        padding: 20px 16px 16px;
    }

    .stt-header__dateline {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .stt-nav__toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
    }

    .stt-nav__list {
        display: none;
        flex-direction: column;
    }

    .stt-nav__list.is-open {
        display: flex;
    }

    .stt-nav__list li a {
        padding: 12px 20px;
        border-bottom: var(--rule-thin);
        text-align: left;
    }

    .stt-nav__list li.current-menu-item > a::after {
        display: none;
    }

    .stt-nav__list ul {
        position: static;
        border: none;
        box-shadow: none;
        border-top: none;
    }

    .stt-nav__list ul li a {
        padding-left: 40px;
    }

    .stt-hero {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .stt-grid__cards {
        grid-template-columns: 1fr;
    }

    .stt-main {
        padding: var(--space-md) var(--space-md) var(--space-xl);
    }

    .stt-article {
        padding: var(--space-lg) var(--space-md);
    }

    .stt-article__hero {
        margin-left: calc(-1 * var(--space-md));
        margin-right: calc(-1 * var(--space-md));
    }

    .stt-article__caption {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .stt-related__grid {
        grid-template-columns: 1fr;
    }

    .stt-page {
        padding: var(--space-lg) var(--space-md);
    }

    .stt-breaking__inner {
        padding: 8px 16px;
    }

    .stt-breaking__stories {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .stt-article__title {
        font-size: 1.5rem;
    }

    .stt-article__content blockquote {
        font-size: 1rem;
        padding: 16px 0;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   SCREEN READER ONLY
   ============================================ */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
