/* =====================================================
   FALSAALARMA - Estilo Periódico Auténtico
   Inspirado en El País, NYT, The Guardian
   ===================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Colores de periódico */
    --color-bg: #FFFFFF;
    --color-text: #1a1a1a;
    --color-text-light: #555555;
    --color-text-muted: #888888;
    --color-line: #1a1a1a;
    --color-line-light: #dddddd;
    --color-accent: #c00000;
    --color-highlight-bg: #f4f4f4;

    /* Tipografías */
    --font-headline: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container-max: 1200px;
    --gutter: 20px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =====================================================
   SKIN BANNERS - Banners laterales profesionales
   ===================================================== */

.skin-banner {
    position: fixed;
    top: 310px; /* Debajo de la franja de última hora */
    bottom: 20px;
    width: calc((100vw - 1240px) / 2);
    min-width: 180px;
    max-width: 280px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    border-radius: 8px;
    transition: top 0.3s ease;
}

/* Cuando el header está compacto */
body.scrolled .skin-banner {
    top: 70px;
}

.skin-banner:hover {
    text-decoration: none;
}

.skin-left {
    left: 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.skin-right {
    right: 20px;
    background: linear-gradient(180deg, #c00000 0%, #8b0000 50%, #c00000 100%);
}

/* Patrones de fondo */
.skin-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(192, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.skin-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* Contenido */
.skin-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 15px;
    color: white;
    height: 100%;
    justify-content: space-between;
}

/* Icono pulsante */
.skin-icon-pulse {
    width: 50px;
    height: 50px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.skin-icon-pulse svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(192, 0, 0, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(192, 0, 0, 0.8));
    }
}

/* Contador animado */
.skin-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent);
    animation: counter-pulse 1s ease-in-out infinite;
}

.counter-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin-top: 5px;
}

@keyframes counter-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Tagline */
.skin-tagline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 0;
}

.tagline-main {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tagline-sub {
    font-size: 0.7rem;
    opacity: 0.7;
    line-height: 1.4;
}

/* CTA Mini */
.skin-cta-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-accent);
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.skin-cta-mini:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(192, 0, 0, 0.4);
}

/* Scroll de medios */
.skin-media-scroll {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    height: 120px;
}

.media-track {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: scroll-media 15s linear infinite;
}

.media-track span {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.6;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.media-track span:nth-child(odd) {
    opacity: 0.9;
    font-weight: 600;
}

@keyframes scroll-media {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Estadística */
.skin-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-top: 5px;
}

/* Badge de precio */
.skin-price-badge {
    display: flex;
    align-items: baseline;
    gap: 3px;
    padding: 12px 20px;
    background: white;
    color: var(--color-accent);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.price-from {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
}

.price-period {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Decoraciones */
.skin-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.skin-deco-dots {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.skin-deco-lines {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.02) 10px,
        rgba(255,255,255,0.02) 20px
    );
}

/* Hover effects */
.skin-banner:hover .skin-content {
    transform: scale(1.02);
}

.skin-content {
    transition: transform 0.3s ease;
}

/* =====================================================
   TOP BAR - Barra superior
   ===================================================== */

.top-bar {
    border-bottom: 1px solid var(--color-line-light);
    font-size: 0.75rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    color: var(--color-text-muted);
}

.edition {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right a {
    color: var(--color-text-light);
}

.subscribe-btn {
    background: var(--color-text);
    color: var(--color-bg) !important;
    padding: 6px 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.subscribe-btn:hover {
    text-decoration: none;
    opacity: 0.9;
}

/* =====================================================
   MASTHEAD - Cabecera principal
   ===================================================== */

/* =====================================================
   STICKY HEADER - Cabecera compacta al hacer scroll
   ===================================================== */

.sticky-header {
    position: fixed;
    top: -100px; /* Oculto inicialmente */
    left: 0;
    right: 0;
    background: white;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: top 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    border-bottom: 2px solid var(--color-line);
}

body.scrolled .sticky-header {
    top: 0;
}

.sticky-header .sticky-logo {
    height: 40px;
    width: auto;
}

.sticky-header .sticky-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sticky-header .sticky-nav a {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

.sticky-header .sticky-nav a:hover {
    color: var(--color-accent);
    text-decoration: none;
}

.sticky-header .sticky-cta {
    background: var(--color-accent);
    color: white;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sticky-header .sticky-cta:hover {
    opacity: 0.9;
    text-decoration: none;
}

.masthead {
    padding: 25px 0;
    text-align: center;
    border-bottom: 2px solid var(--color-line);
}

.logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 5px;
}

.newspaper-title {
    font-family: var(--font-headline);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 5px;
}

.newspaper-tagline {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-text-light);
}

/* =====================================================
   NAVIGATION - Navegación principal
   ===================================================== */

.main-nav {
    border-bottom: 1px solid var(--color-line);
    padding: 10px 0;
}

.nav-sections {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 25px;
    list-style: none;
}

.nav-sections a {
    display: block;
    padding: 5px 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text);
}

.nav-sections a:hover,
.nav-sections a.active {
    color: var(--color-accent);
    text-decoration: none;
}

/* Demo link destacado */
.nav-sections a.nav-demo-link {
    background: var(--color-accent);
    color: white !important;
    padding: 5px 12px;
    border-radius: 4px;
    animation: pulse-demo 2s ease-in-out infinite;
}

.nav-sections a.nav-demo-link:hover {
    background: #8b0000;
    text-decoration: none;
}

@keyframes pulse-demo {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192, 0, 0, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(192, 0, 0, 0); }
}

/* Demo link en sticky nav */
.sticky-nav a.nav-demo {
    background: var(--color-accent);
    color: white !important;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.sticky-nav a.nav-demo:hover {
    background: #8b0000;
}

/* =====================================================
   BREAKING BAR - Última hora
   ===================================================== */

.breaking-bar {
    background: var(--color-accent);
    color: white;
    padding: 8px 0;
    font-size: 0.8rem;
}

.breaking-bar .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breaking-label {
    flex-shrink: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    background: white;
    color: var(--color-accent);
}

.breaking-ticker {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    animation: ticker-scroll 60s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.ticker-item:hover {
    opacity: 0.8;
    text-decoration: none;
}

.ticker-favicon {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    flex-shrink: 0;
}

.ticker-headline {
    font-size: 0.8rem;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-time {
    font-size: 0.7rem;
    opacity: 0.7;
    flex-shrink: 0;
    padding: 2px 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

.ticker-time-hot {
    background: white;
    color: var(--color-accent);
    font-weight: 700;
    opacity: 1;
    animation: pulse-hot 1.5s ease-in-out infinite;
}

@keyframes pulse-hot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ticker-separator {
    opacity: 0.4;
    margin: 0 5px;
}

.ticker-loading {
    opacity: 0.7;
    font-style: italic;
}

/* =====================================================
   MAIN CONTENT - Contenido principal
   ===================================================== */

.main-content {
    padding: 25px 0;
}

/* Grid principal tipo periódico */
.newspaper-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.section-divider {
    height: 1px;
    background: var(--color-line-light);
    margin: 25px 0;
}

.sidebar-divider {
    height: 1px;
    background: var(--color-line-light);
    margin: 20px 0;
}

/* =====================================================
   STORIES - Artículos/Noticias
   ===================================================== */

.story-kicker {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.story-headline {
    font-family: var(--font-headline);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.story-summary {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.story-lead {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 15px;
}

.story-byline {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* HERO STORY */
.story-hero {
    margin-bottom: 0;
}

.story-hero .story-image {
    margin-bottom: 15px;
}

.story-hero .story-headline {
    font-size: 2.2rem;
}

.image-placeholder {
    background: var(--color-highlight-bg);
    border: 1px solid var(--color-line-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 20px;
}

.hero-img {
    height: 350px;
}

.image-caption {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    font-style: italic;
}

/* STORIES DUO - Dos columnas */
.stories-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.story-medium .story-headline {
    font-size: 1.3rem;
}

/* STORY WITH THUMB */
.story-with-thumb {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.story-thumb .image-placeholder.thumb {
    width: 100px;
    height: 100px;
    font-size: 1.5rem;
    font-weight: 700;
}

.story-with-thumb .story-headline {
    font-size: 1rem;
    margin-bottom: 5px;
}

.story-with-thumb .story-summary {
    font-size: 0.85rem;
}

/* STORY MINI */
.story-mini {
    margin-bottom: 15px;
}

.story-mini .story-kicker {
    font-size: 0.65rem;
    margin-bottom: 4px;
}

.story-mini h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.story-mini a:hover {
    color: var(--color-accent);
}

/* =====================================================
   SIDEBAR - Columna lateral
   ===================================================== */

.side-column {
    border-left: 1px solid var(--color-line-light);
    padding-left: 25px;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: var(--color-highlight-bg);
    padding: 20px;
    border-top: 3px solid var(--color-text);
}

.box-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.highlight-box h3 {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 15px;
}

.box-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* MOST READ */
.sidebar-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-text);
}

.most-read-list {
    list-style: none;
    counter-reset: rank;
}

.most-read-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-line-light);
}

.most-read-list li:last-child {
    border-bottom: none;
}

.rank {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--color-text);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.most-read-list a {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.most-read-list a:hover {
    color: var(--color-accent);
}

/* OPINION BOX */
.opinion-box {
    padding: 20px;
    border-left: 3px solid var(--color-text);
    background: var(--color-highlight-bg);
}

.opinion-box blockquote p {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 10px;
}

.opinion-box cite {
    font-size: 0.8rem;
    font-style: normal;
    color: var(--color-text-muted);
}

/* =====================================================
   CASES SECTION - Casos de uso
   ===================================================== */

.cases-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--color-text);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.case-story {
    border: 1px solid var(--color-line-light);
    padding: 20px;
    background: var(--color-bg);
}

.case-story:hover {
    border-color: var(--color-text);
}

.case-sector {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.case-time {
    float: right;
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.case-story h3 {
    font-family: var(--font-headline);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 10px 0;
    clear: both;
}

.case-story p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    margin-top: 40px;
    padding: 50px 40px;
    background: var(--color-text);
    color: var(--color-bg);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-content > p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--color-bg);
    transition: all 0.2s;
}

.btn-cta:hover {
    text-decoration: none;
}

.btn-cta.primary {
    background: var(--color-bg);
    color: var(--color-text);
}

.btn-cta.primary:hover {
    background: transparent;
    color: var(--color-bg);
}

.btn-cta.secondary {
    background: transparent;
    color: var(--color-bg);
}

.btn-cta.secondary:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--color-highlight-bg);
    border-top: 1px solid var(--color-line-light);
    padding: 40px 0 25px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-initiative strong {
    font-weight: 600;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h5 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.footer-col a:hover {
    color: var(--color-text);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--color-line-light);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 5px;
}

.disclaimer {
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1500px) {
    .skin-banner {
        display: none;
    }
}

@media (max-width: 1024px) {
    .newspaper-grid {
        grid-template-columns: 1fr;
    }

    .side-column {
        border-left: none;
        border-top: 1px solid var(--color-line-light);
        padding-left: 0;
        padding-top: 25px;
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }

    .newspaper-title {
        font-size: 2.5rem;
    }

    .stories-duo {
        grid-template-columns: 1fr;
    }

    .story-hero .story-headline {
        font-size: 1.6rem;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .top-bar-left,
    .top-bar-right a:not(.subscribe-btn) {
        display: none;
    }

    .nav-sections {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .nav-sections li {
        flex-shrink: 0;
    }

    .breaking-ticker {
        animation: scroll-ticker 20s linear infinite;
    }

    @keyframes scroll-ticker {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
}

@media (max-width: 480px) {
    :root {
        --gutter: 15px;
    }

    .logo-img {
        height: 50px;
    }

    .newspaper-title {
        font-size: 2rem;
    }

    .story-hero .story-headline {
        font-size: 1.4rem;
    }

    .hero-img {
        height: 200px;
    }

    .story-with-thumb {
        grid-template-columns: 80px 1fr;
    }

    .story-thumb .image-placeholder.thumb {
        width: 80px;
        height: 80px;
    }
}

/* =====================================================
   PRINT
   ===================================================== */

@media print {
    .top-bar,
    .main-nav,
    .breaking-bar,
    .cta-section,
    .footer {
        display: none;
    }

    body {
        font-size: 11pt;
    }

    .newspaper-grid {
        display: block;
    }

    .side-column {
        border: none;
        padding: 0;
        margin-top: 20pt;
    }
}
