/* style.css - Global News Day Design System */
:root {
  --orange: #f86f0d;
  --bright-blue: #0784cc;
  --deep-navy: #174c7a;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-light: #e2e8f0;
  --gray-mid: #64748b;
  --text-dark: #0f172a;
  --text-soft: #334155;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px; 
  --space-unit: 8px;
  --transition: all 0.25s ease;
  --orange-dark: #c94f00;
}

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header & Sticky Nav */
.site-header {
  color: var(--deep-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid #d9e1ea;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.top-stripe {
    background: #0f172a;
    color: white;
    padding: 0 16px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-stripe-inner {
    max-width: 1400px;
    min-height: 34px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.utility-links a {
    color: #e5e7eb;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

.utility-links a:hover {
    color: #fff;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 16px;
  max-width: 1400px;
  margin: 0 auto;
  background: white;
}

.category-nav {
    background: #ffffff;
}

.social-links{
    display:flex;
    align-items:center;
    gap: 5px;
    flex-wrap:wrap;
}

.social-links a{
    width: 35px;
    height: 35px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:0.3s ease;
}

.social-links a:hover{
    transform:translateY(-3px) scale(1.08);
}

/* X (Twitter) */
.social-links .twitter{
    background:#000000;
}

/* Instagram */
.social-links .instagram{
    background:linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

/* Facebook */
.social-links .facebook{
    background:#1877f2;
}

/* Telegram */
.social-links .telegram{
    background:#229ED9;
}

/* LinkedIn */
.social-links .linkedin{
    background:#0A66C2;
}

/* WhatsApp */
.social-links .whatsapp{
    background:#25D366;
}

/* TikTok */
.social-links .tiktok{
    background:#000000;
}

/* Hero Logo */
.logo-area {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.logo-area img{
    width: 200px;
    max-width: 20vw;
    height: auto;
    display: block;
}

/* Search Box */
.search-box{
    display:flex;
    align-items:center;
    gap:10px;
    background:#ffffff;
    border:1px solid #d8e0ea;
    border-radius: 4px;
    padding:0 14px;
    height:42px;
    width: min(380px, 34vw);
    min-width:240px;
    transition:0.3s ease;
}

.search-box:hover{
    border-color:var(--bright-blue);
}

.search-box:focus-within{
    border-color:var(--bright-blue);
    box-shadow:0 0 0 3px rgba(7,132,204,0.1);
}

.search-box i{
    color:var(--gray-mid);
    font-size:15px;
}

.search-box input{
    border:none;
    outline:none;
    width:100%;
    height:100%;
    background:transparent;
    font-size:0.95rem;
    color:var(--text-dark);
    font-family:'Poppins', sans-serif;
}

.search-box input::placeholder{
    color:#94a3b8;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.header-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    background: #e30613;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.header-subscribe:hover {
    background: #b8000b;
    color: #fff;
}

/* Mobile menu & search slide styles */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--deep-navy);
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: 0.2s;
}
.mobile-menu-toggle:hover {
    color: var(--orange);
}

/* Mobile drawer navigation (overlay) */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1100;
    box-shadow: var(--shadow-lg);
    transition: left 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    padding: 20px 0;
    overflow-y: auto;
    border-right: 1px solid var(--gray-light);
}
.mobile-drawer.open {
    left: 0;
}
.drawer-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drawer-header img {
    max-width: 140px;
    height: auto;
}
.close-drawer {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--gray-mid);
}
.drawer-social {
    padding: 20px;
    border-top: 1px solid var(--gray-light);
    margin-top: 20px;
}
.drawer-social .social-links {
    justify-content: flex-start;
}
.mobile-drawer .category-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px;
}
.mobile-drawer .cat-item-mobile {
    padding: 12px 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: 0.2s;
    display: block;
}
.mobile-drawer .cat-item-mobile.active {
    color: var(--orange);
    background: rgba(248, 111, 13, 0.08);
}
.mobile-drawer .cat-item-mobile:hover {
    background: var(--gray-light);
    color: var(--orange);
}

/* Search slide panel */
.search-slide-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1150;
    padding: 16px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.05);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--gray-light);
}
.search-slide-panel.open {
    transform: translateY(0);
}
.search-slide-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.search-slide-inner input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 40px;
    font-size: 1rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
}
.search-slide-inner input:focus {
    border-color: var(--bright-blue);
}
.search-slide-inner button {
    background: var(--orange);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
}
.close-search {
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: var(--gray-mid);
    cursor: pointer;
}

/* Overlay background when drawer open */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    display: none;
}
.drawer-overlay.active {
    display: block;
}

/* Category horizontal scroll nav */
.category-nav {
  border-top: 1px solid #e2e8f0;
  border-bottom:1px solid #cbd5e1;
  padding: 0px 0;
  display: block;
}

.category-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px;
  max-width: 1400px;
  margin: 0 auto;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.category-scroll::-webkit-scrollbar {
  height: 4px;
}
.category-scroll::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}

.cat-item {
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 11px 12px;
  border-radius: 0;
  cursor: pointer;
  scroll-snap-align: start;
  transition: all 0.2s;
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
}
.cat-item.active {
  color: #e30613;
  border-bottom: 3px solid #e30613;
}
.cat-item:hover {
  color: #e30613;
}

[data-href] {
    cursor: pointer;
}

[data-href]:focus-visible {
    outline: 2px solid #e30613;
    outline-offset: 3px;
}

/* ===== MAIN LAYOUT (NEWSPAPER STYLE) ===== */
.main-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 35px 24px;
    background: #ffffff;
    overflow: hidden;
}

.breaking-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #ddd;
    padding: 8px;
    margin-bottom: 24px;
    background: #fff;
    min-width: 0;
}

.breaking-label {
    flex: 0 0 auto;
}

.breaking-label span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    background: #e30613;
    color: #fff;
    padding: 0 14px;
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.breaking-track {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.breaking-track::-webkit-scrollbar {
    display: none;
}

.breaking-items {
    display: flex;
    align-items: center;
    gap: 26px;
    white-space: nowrap;
    min-width: max-content;
}

.breaking-items a {
    color: #1f2937;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.breaking-items a:hover {
    color: #e30613;
}

.breaking-items a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e30613;
    margin-right: 8px;
    vertical-align: middle;
}

.breaking-strip time {
    flex: 0 0 auto;
    color: #64748b;
    border-left: 1px solid #ddd;
    padding-left: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.ad-banner {
    min-height: 90px;
    border: 1px dashed #94a3b8;
    background: #f8fafc;
    color: var(--text-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    margin-bottom: 32px;
}

.ad-banner img{
    width: auto;
    max-width: 200px;
    min-width: 0;
    max-height: 150px;
    height: auto;
    object-fit: contain;
}

.ad-banner span,
.newsletter-box span,
.category-label {
    color: var(--orange);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.ad-banner span{
    color: var(--gray-mid);
}

.ad-banner strong {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-top: 4px;
}

.ad-banner-top .ad-banner{
    padding: 0px;
    min-height: 100px;
    height: auto;
    overflow: visible;
}

.ad-banner-top .ad-banner  img{
    width: auto;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 3px solid var(--text-dark);
    margin-bottom: 18px;
    padding-bottom: 8px;
}

.section-heading h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
}

.section-heading a {
    color: var(--orange);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
}

.trend-line,
.category-block,
.sports-zone,
.reader-grid {
    margin-bottom: 44px;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--gray-light);
    border-left: 1px solid var(--gray-light);
}

.trend-card {
    padding: 18px;
    border-right: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    min-height: 150px;
}

.trend-card .ad-banner span{
    color: var(--gray-mid);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.trend-card span {
    color: var(--bright-blue);
    font-size: 1.8rem;
    font-weight: 800;
}

.trend-card h3 {
    font-size: 0.98rem;
    line-height: 1.4;
    margin: 8px 0;
    font-weight: 750;
}

.trend-card p,
.category-list p {
    color: var(--gray-mid);
    font-size: 0.78rem;
    margin: 0;
}

.shared-category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 26px;
}

.category-lead {
    display: grid;
    grid-template-columns: minmax(230px, 0.95fr) 1fr;
    gap: 20px;
    align-items: start;
}

.category-lead img,
.shared-mini-layout img,
.sports-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #dbe3ec;
}

.category-lead img {
    min-height: 230px;
}

.category-lead h3 {
    font-size: 1.45rem;
    line-height: 1.25;
    margin: 8px 0 10px;
    font-weight: 800;
}

.category-lead p {
    color: var(--text-soft);
    font-size: 0.92rem;
    margin: 0;
}

.category-list {
    border-top: 1px solid var(--gray-light);
}

.category-list article {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

.category-list h3 {
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 6px;
}

.editorial-news-section {
    background: #fff;
    margin-bottom: 44px;
}

.editorial-section-header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
}

.editorial-marker {
    width: 9px;
    height: 9px;
    background: #e30613;
    display: inline-block;
    flex: 0 0 auto;
}

.editorial-section-header h2 {
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.editorial-rule {
    height: 1px;
    background: #ddd;
    flex: 1;
}

.editorial-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(0, 2.25fr) minmax(190px, 1fr);
    gap: 22px;
    align-items: start;
}

.editorial-feature-img {
    display: block;
    height: 255px;
    overflow: hidden;
    background: #e5e7eb;
    margin-bottom: 14px;
}

.editorial-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.editorial-feature:hover .editorial-feature-img img,
.editorial-mini-item:hover img {
    transform: scale(1.035);
}

.editorial-feature h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px;
}

.editorial-feature h3 a,
.editorial-mini-item h4 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.editorial-feature h3 a:hover,
.editorial-mini-item h4 a:hover {
    color: #e30613;
}

.editorial-feature p {
    color: #56616f;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

.editorial-mini-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid #ddd;
}

.editorial-mini-column {
    border-right: 1px solid #ddd;
    padding: 0 16px;
}

.editorial-mini-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 11px;
    align-items: start;
    padding: 0 0 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.editorial-mini-item:last-child {
    margin-bottom: 0;
}

.editorial-mini-item > a {
    display: block;
    width: 82px;
    height: 68px;
    overflow: hidden;
    background: #e5e7eb;
}

.editorial-mini-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.editorial-mini-item h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.28;
    margin: 0;
}

.editorial-ad {
    min-height: 285px;
    background: #f3f4f6;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 18px;
}

.editorial-ad span {
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.editorial-ad strong {
    color: #64748b;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    line-height: 1.35;
    max-width: 180px;
}

.sports-zone {
    background: #fff;
    padding: 0 0 22px;
}

.sports-section-header {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 18px 0;
}

.sports-marker {
    width: 9px;
    height: 9px;
    background: #e30613;
    display: inline-block;
    flex: 0 0 auto;
}

.sports-section-header h2 {
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.sports-rule {
    height: 1px;
    background: #ddd;
    flex: 1;
}

.sports-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.sports-feature {
    min-width: 0;
}

.sports-feature-media {
    position: relative;
    display: block;
    min-height: 390px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: #111827;
}

.sports-feature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.86), rgba(0,0,0,0.14) 62%, rgba(0,0,0,0));
    z-index: 1;
}

.sports-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.sports-feature-media:hover img {
    transform: scale(1.035);
}

.sports-feature-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px;
}

.sports-feature-overlay span,
.sports-story span {
    color: #e30613;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.sports-feature-overlay h3 {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.16;
    margin: 8px 0 8px;
}

.sports-feature-overlay p {
    color: #e5e7eb;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0;
}

.sports-secondary-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid #ddd;
    align-content: start;
}

.sports-story {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 14px;
    min-width: 0;
    padding: 16px 0;
    border-bottom: 1px solid #ddd;
}

.sports-story-thumb {
    display: block;
    width: 118px;
    height: 82px;
    overflow: hidden;
    background: #e5e7eb;
}

.sports-story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sports-story:hover .sports-story-thumb img {
    transform: scale(1.04);
}

.sports-story h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.32;
    margin: 5px 0 0;
}

.sports-story h4 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sports-story h4 a:hover {
    color: #e30613;
}

.sports-more-wrap {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.sports-more {
    min-width: 132px;
    text-align: center;
    color: #e30613;
    background: #fde8ea;
    border-radius: 18px;
    padding: 8px 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.sports-more:hover {
    background: #facfd4;
    color: #b8000b;
}

.category-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 44px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.newspaper-column {
    padding: 0 18px 18px;
    border-left: 1px solid #ddd;
}

.newspaper-column:first-child {
    border-left: 0;
}

.newspaper-column-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0 14px;
}

.newspaper-column-header i {
    color: #e30613;
    font-size: 0.52rem;
    line-height: 1;
}

.newspaper-column-header h2 {
    color: #1f2933;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.newspaper-image-card {
    position: relative;
    display: block;
    height: 165px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: #111827;
}

.newspaper-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.86), rgba(0,0,0,0.12) 62%, rgba(0,0,0,0.02));
    z-index: 1;
}

.newspaper-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.newspaper-image-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 12px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.25;
}

.newspaper-image-card:hover img {
    transform: scale(1.04);
}

.newspaper-main-headline {
    color: #111827;
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.18;
    margin: 14px 0 14px;
    transition: color 0.2s ease;
}

.newspaper-list {
    border-top: 1px solid #ddd;
}

.newspaper-list h4 {
    color: #202020;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid #ddd;
    transition: color 0.2s ease;
}

.newspaper-main-headline:hover,
.newspaper-list h4:hover {
    color: #e30613;
}

.podcast-section {
    background: #fff;
    margin-bottom: 44px;
}

.podcast-section-header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
}

.podcast-marker {
    width: 9px;
    height: 9px;
    background: #e30613;
    display: inline-block;
    flex: 0 0 auto;
}

.podcast-section-header h2 {
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.podcast-rule {
    height: 1px;
    background: #ddd;
    flex: 1;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.podcast-card,
.podcast-ad {
    min-height: 118px;
    padding: 18px;
    border-left: 1px solid #ddd;
}

.podcast-card:first-child {
    border-left: 0;
}

.podcast-card {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 14px;
    align-items: start;
}

.podcast-thumb {
    display: block;
    width: 108px;
    height: 78px;
    overflow: hidden;
    background: #e5e7eb;
}

.podcast-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-thumb img {
    transform: scale(1.04);
}

.podcast-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.22;
    margin: 0;
}

.podcast-card h3 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.podcast-card h3 a:hover {
    color: #e30613;
}

.podcast-ad {
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #475569;
}

.podcast-ad span {
    color: #e30613;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.podcast-ad strong {
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    line-height: 1.35;
}

.podcast-more-wrap {
    display: flex;
    justify-content: center;
    padding-top: 18px;
}

.podcast-more {
    min-width: 118px;
    text-align: center;
    color: #e30613;
    background: #fde8ea;
    border-radius: 18px;
    padding: 8px 28px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.podcast-more:hover {
    background: #facfd4;
    color: #b8000b;
}

.reader-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
    align-items: stretch;
}

.magazine-grid,
.trend-grid,
.shared-category-layout,
.category-lead,
.editorial-news-grid,
.editorial-mini-columns,
.sports-layout,
.sports-secondary-grid,
.category-columns,
.podcast-grid,
.reader-grid,
.footer-inner {
    min-width: 0;
}

.magazine-grid > *,
.trend-grid > *,
.shared-category-layout > *,
.editorial-news-grid > *,
.editorial-mini-columns > *,
.sports-layout > *,
.sports-secondary-grid > *,
.category-columns > *,
.podcast-grid > *,
.reader-grid > *,
.footer-inner > * {
    min-width: 0;
}

.newsletter-box {
    background: #eef7fc;
    border: 1px solid #cfe8f7;
    padding: 28px;
}

.newsletter-box h2 {
    font-size: 1.45rem;
    max-width: 620px;
    margin: 8px 0 18px;
    font-weight: 800;
}

.newsletter-box form {
    display: flex;
    gap: 10px;
    max-width: 560px;
}

.newsletter-box input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--gray-light);
    padding: 13px 14px;
    font-family: inherit;
    outline: none;
}

.newsletter-box button {
    border: 0;
    background: var(--orange);
    color: #fff;
    padding: 0 20px;
    font-weight: 750;
}

.square-ad {
    min-height: 210px;
    margin-bottom: 0;
}

.site-footer {
    background: #0f172a;
    color: #dbe3ec;
    margin-top: auto;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 44px 24px;
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, 1fr);
    gap: 34px;
}

.footer-brand img {
    max-width: 210px;
    background: #fff;
    padding: 8px;
    margin-bottom: 16px;
}

.footer-brand p,
.footer-contact p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.65;
}

.footer-social {
    margin-top: 18px;
}

.footer-links h3,
.footer-contact h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 14px;
    font-weight: 800;
}

.footer-links a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #94a3b8;
    font-size: 0.8rem;
}

.article-page {
    max-width: 1120px;
}

.article-view h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.7rem);
    line-height: 1.06;
    font-weight: 900;
    margin: 12px 0;
}

.article-hero-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    margin: 22px 0;
}

.share-row,
.tag-list,
.comment-votes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 16px 0;
}

.share-row a,
.tag-list a,
.comment-votes a,
.comments-box button {
    background: #fde8ea;
    color: #e30613;
    border: 0;
    border-radius: 999px;
    padding: 8px 13px;
    font-weight: 800;
    text-decoration: none;
}

.article-content {
    color: #1f2937;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    line-height: 1.78;
    overflow: visible;
}

.article-content img,
.article-content figure img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    margin: 22px auto;
}

.article-content figure {
    max-width: 100%;
    margin: 26px 0;
    overflow: visible;
}

.article-content iframe,
.article-content video {
    max-width: 100%;
}

.article-media-stack {
    display: grid;
    gap: 18px;
    margin: 28px 0;
}

.article-media-stack img,
.article-media-stack video,
.article-media-stack audio,
.embed-box iframe {
    width: 100%;
}

.article-media-stack img,
.article-media-stack video {
    height: auto;
    max-height: none;
    object-fit: contain;
}

.category-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 34px 0 10px;
    color: var(--gray-mid);
    font-weight: 800;
}

.category-pagination a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 10px 15px;
    background: #fff;
    color: var(--orange);
    text-decoration: none;
    font-weight: 900;
}

.category-pagination a.active,
.category-pagination a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.empty-state {
    grid-column: 1 / -1;
    border: 1px solid #ddd;
    background: #fff;
    padding: 28px;
    text-align: center;
}

.empty-state h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.empty-state p {
    margin: 0;
    color: var(--gray-mid);
}

.category-archive-list {
    margin-top: 34px;
}

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

.archive-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
    cursor: pointer;
}

.archive-card img {
    width: 132px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.archive-card span {
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.archive-card h3 {
    margin: 5px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.02rem;
    line-height: 1.24;
    font-weight: 900;
}

.archive-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.archive-card p {
    margin: 0;
    color: var(--gray-mid);
    font-size: 0.86rem;
    line-height: 1.45;
}

.embed-box {
    aspect-ratio: 16 / 9;
}

.embed-box iframe {
    height: 100%;
    border: 0;
}

.comments-box {
    border-top: 1px solid #ddd;
    margin-top: 36px;
    padding-top: 24px;
}

.comments-box form {
    display: grid;
    gap: 10px;
    margin: 14px 0 24px;
}

.comments-box input,
.comments-box textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px;
    font-family: inherit;
}

.comments-box article {
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
}

.reply-form {
    margin-left: 24px;
}

.comment-reply {
    margin: 12px 0 0 24px;
    border-left: 3px solid #ddd;
    padding-left: 12px;
}

/* ---- GRID SYSTEM (CORE LAYOUT) ---- */
.magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 340px;
    gap: 5px;
    margin-bottom: 56px;
    align-items: start;
}

/* LEFT COLUMN:*/
.left-small-stack {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.small-card {
    background: white;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #fff;
}

.small-card:hover {
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    border-radius: 5px;
}
.small-card .card-img {
    height: 160px;  /* smaller than default, balanced */
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
}
.small-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.small-card:hover .card-img img {
    transform: scale(1.03);
}

.small-card:hover .news-title,
.hero-card:hover .news-title,
.trend-card:hover h3,
.latest-item:hover .latest-title,
.newspaper-column:hover .newspaper-main-headline {
    color: #e30613;
}

.small-card .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}
.small-card .card-content {
    padding: 18px 18px 16px;
    flex: 1;
}
.small-card .news-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.small-card .news-excerpt {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-bottom: 14px;
    line-height: 1.45;
}
.small-card .meta-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    color: var(--gray-mid);
    border-top: 1px solid var(--gray-light);
    padding-top: 12px;
    margin-top: auto;
}

/* CENTER */
.hero-card {
    background: white;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
}
.hero-card:hover {
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    border-radius: 5px;
}
.hero-card .card-img {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #cbd5e1;
}
.hero-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hero-card:hover .card-img img {
    transform: scale(1.04);
}
.hero-card .category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
}
.hero-card .card-content {
    padding: 24px 26px 26px;
}
.hero-card .news-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.hero-card .news-excerpt {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 22px;
}
.hero-card .meta-info {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.8rem;
    color: var(--gray-mid);
    border-top: 1px solid var(--gray-light);
    padding-top: 18px;
}

/* RIGHT SIDEBAR: Latest News (sticky, scrollable) */
.latest-sidebar {
    background: white;
    padding: 0 0 12px 0;
    position: sticky;
    top: 110px;
    height: fit-content;
    max-height: 580px;
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
    overflow: hidden;
}
.latest-sidebar:hover {
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    border-radius: 5px;
}

.sidebar-header {
    padding: 15px 15px 14px;
    border-bottom: 3px solid var(--orange);
    margin-bottom: 6px;
    background: white;
}
.sidebar-header h3 {
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}
.sidebar-header h3 i {
    color: var(--orange);
    margin-right: 8px;
}
.latest-news-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 16px 16px 16px;
    scrollbar-width: thin;
}
.latest-item {
    display: flex;
    gap: 14px;
    padding: 16px 10px;
    border-bottom: 1px solid var(--gray-light);
    transition: background 0.2s, border-radius 0.2s;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.05);
}
.latest-item:hover {
    background: var(--off-white);
    border-radius: 4px;
}
.latest-thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: #d4dce8;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.latest-content {
    flex: 1;
}
.latest-title {
    font-weight: 650;
    font-size: 0.9rem;
    line-height: 1.38;
    margin-bottom: 8px;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.latest-meta {
    font-size: 0.7rem;
    color: var(--gray-mid);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.latest-meta i {
    font-size: 0.7rem;
    margin-right: 2px;
}
.badge-sm {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--orange-dark);
}

/* ==============VIDEO HIGHLIGHTS================= */
.video-section {
    background: #fff;
    backdrop-filter: blur(2px);
    transition: all 0.2s;
    padding-top: 56px;
    border-top: var(--gray-light) solid 2px;
}

.video-section-header {
    margin-bottom: 2rem;
    border-left: 6px solid var(--orange);
    padding-left: 1rem;
}

.video-section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text-dark);
    display: inline-block;
}

/* ---------- SLIDER CORE ---------- */
.video-scroll-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    padding:1.5rem;
    box-shadow: var(--shadow-sm);
}

.video-row {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform;
}

/* individual video card */
.video-card {
    flex: 0 0 clamp(260px, 32%, 420px);
    text-decoration: none;
    display: block;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease;
}

.video-card:hover {
    border-radius: 15px;
    box-shadow: 0 22px 32px -14px rgba(0, 0, 0, 0.25);
}

.video-thumb-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.video-card:hover .video-thumb-wrapper {
    border-radius: 15px;
}

.video-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb-wrapper img {
    transform: scale(1.05);
}

/* play overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(2px);
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3.2rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
    transition: transform 0.2s;
}

.video-card:hover .play-overlay i {
    transform: scale(1.05);
    color: var(--orange);
}

/* video duration badge */
.video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: 0.3px;
    font-family: monospace;
    z-index: 2;
}

/* video title inside the thumb wrapper? originally inside but we improve positioning */
.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 1rem 1rem 0.8rem 1rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    z-index: 2;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* slider controls (arrows + dots) */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.nav-btn {
    background: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    color: #1e293b;
    font-size: 1.4rem;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.nav-btn:hover:not(:disabled) {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: scale(1.03);
    box-shadow: 0 10px 20px -8px rgba(225, 29, 72, 0.4);
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f1f5f9;
    color: #94a3b8;
}

.dots-container {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 30px;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--orange);
    width: 28px;
}

/* responsive adjustments */
@media (max-width: 1024px) {
    .trend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shared-category-layout,
    .reader-grid {
        grid-template-columns: 1fr;
    }
    .editorial-news-grid {
        grid-template-columns: 1fr;
    }
    .editorial-feature-img {
        height: 320px;
    }
    .editorial-mini-columns {
        border-left: 0;
    }
    .editorial-mini-column:first-child {
        padding-left: 0;
    }
    .editorial-mini-column:last-child {
        padding-right: 0;
    }
    .editorial-ad {
        min-height: 180px;
    }
    .editorial-ad span {
        margin-bottom: 34px;
    }
    .category-columns {
        grid-template-columns: 1fr 1fr;
    }
    .newspaper-column {
        border-left: 1px solid #ddd;
        border-top: 1px solid #ddd;
    }
    .newspaper-column:nth-child(odd) {
        border-left: 0;
    }
    .newspaper-column:nth-child(-n+2) {
        border-top: 0;
    }
    .podcast-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .podcast-card,
    .podcast-ad {
        border-top: 1px solid #ddd;
    }
    .podcast-card:nth-child(odd) {
        border-left: 0;
    }
    .podcast-card:nth-child(-n+2) {
        border-top: 0;
    }
    .sports-grid {
        grid-template-columns: 1fr;
    }
    .sports-layout {
        grid-template-columns: 1fr;
    }
    .sports-feature-media,
    .sports-feature-media img {
        min-height: 340px;
    }
    .sports-secondary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 20px;
        border-top: 0;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .video-section {
        padding: 1.2rem;
    }
    .video-section-header h2 {
        font-size: 1.5rem;
    }
    .nav-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .breaking-strip {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 8px;
    }
    .breaking-track {
        width: 100%;
    }
    .breaking-items {
        gap: 18px;
    }
    .breaking-items a {
        font-size: 0.84rem;
    }
    .breaking-strip time {
        border-left: 0;
        border-top: 1px solid #ddd;
        padding: 8px 0 0;
        width: 100%;
    }
    .trend-grid,
    .category-columns,
    .category-lead,
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .newspaper-column,
    .newspaper-column:nth-child(odd),
    .newspaper-column:nth-child(-n+2) {
        border-left: 0;
        border-top: 1px solid #ddd;
    }
    .newspaper-column:first-child {
        border-top: 0;
    }
    .newspaper-image-card {
        height: 190px;
    }
    .editorial-feature-img {
        height: 220px;
    }
    .editorial-feature h3 {
        font-size: 1.32rem;
    }
    .editorial-mini-columns {
        grid-template-columns: 1fr;
    }
    .editorial-mini-column,
    .editorial-mini-column:first-child,
    .editorial-mini-column:last-child {
        border-right: 0;
        padding: 0;
    }
    .editorial-mini-item {
        grid-template-columns: 92px 1fr;
    }
    .editorial-mini-item > a {
        width: 92px;
        height: 72px;
    }
    .podcast-grid {
        grid-template-columns: 1fr;
    }
    .podcast-card,
    .podcast-ad,
    .podcast-card:nth-child(odd),
    .podcast-card:nth-child(-n+2) {
        border-left: 0;
        border-top: 1px solid #ddd;
    }
    .podcast-card:first-child {
        border-top: 0;
    }
    .podcast-card {
        grid-template-columns: 96px 1fr;
        padding: 16px 0;
    }
    .podcast-thumb {
        width: 96px;
        height: 72px;
    }
    .podcast-ad {
        min-height: 110px;
    }
    .category-lead img {
        min-height: 190px;
    }
    .category-lead h3 {
        font-size: 1.25rem;
    }
    .sports-zone {
        padding-bottom: 18px;
    }
    .sports-section-header {
        padding: 16px 0;
    }
    .sports-feature-media,
    .sports-feature-media img {
        min-height: 280px;
    }
    .sports-feature-overlay {
        padding: 18px;
    }
    .sports-feature-overlay h3 {
        font-size: 1.25rem;
    }
    .sports-secondary-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .sports-story {
        grid-template-columns: 94px 1fr;
        gap: 12px;
    }
    .sports-story-thumb {
        width: 94px;
        height: 72px;
    }
    .sports-story h4 {
        font-size: 0.92rem;
    }
    .newsletter-box form {
        flex-direction: column;
    }
    .newsletter-box button {
        min-height: 46px;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .video-scroll-container {
        padding: 0px;
    }

    .video-row {
        gap: 16px;
    }

    .video-card {
        flex-basis: min(240px, 86vw);
    }

    .video-title {
        font-size: 0.75rem;
        padding: 0.7rem 0.8rem 0.5rem 0.8rem;
    }
    .video-badge {
        font-size: 0.65rem;
        top: 8px;
        right: 8px;
    }
    .play-overlay i {
        font-size: 2.4rem;
    }
    .slider-controls {
        gap: 0.8rem;
    }
}

/* optional micro fix */
.video-card:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}




/* Responsive: tablet & mobile adapt gracefully */
@media (max-width: 1100px) {
    .magazine-grid {
        grid-template-columns: 1fr 1.2fr 300px;
        gap: 24px;
    }
    .hero-card .news-title {
        font-size: 1.5rem;
    }
}

/* Responsive overrides */
@media (max-width: 900px) {
    .top-stripe {
        display: none !important;
    }
    .header-social-links {
        display: none !important;
    }
    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .left-small-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .latest-sidebar {
        position: relative;
        top: 0;
        max-height: 500px;
    }
    .hero-card .card-img {
        height: 240px;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .search-box {
        display: none !important;
    }
    .mobile-search-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        font-size: 1.4rem;
        color: var(--deep-navy);
        cursor: pointer;
        padding: 8px;
    }

    .category-archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .archive-card img {
        width: 96px;
    }
    .header-container {
        padding: 10px 16px;
        position: relative;
        gap: 8px;
    }
    .logo-area {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
    .logo-area img {
        max-width: 160px;
        width: auto;
    }
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
    }
    .header-actions .mobile-search-icon {
        display: flex;
    }
    /* hide original search box on mobile */
    .search-box {
        display: none;
    }
    .header-subscribe {
        display: none;
    }
}

@media (min-width: 992px) {
    
    .mobile-search-icon {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
    .header-social-links {
        display: block !important;
    }
    .top-stripe {
        display: block !important;
    }
    .search-box {
        display: flex !important;
    }
    .mobile-drawer, .drawer-overlay, .search-slide-panel {
        display: none;
    }
}

 @media (max-width: 580px) {
    .left-small-stack {
        grid-template-columns: 1fr;
    }
    .main-container {
        padding: 24px 16px;
    }
    .hero-card .news-title {
        font-size: 1.4rem;
    }
}
