/* ============================================
   NOVA THEME - DailyNews724 News Site
   United States - Professional News Theme
   ============================================ */

/* ─── CSS Custom Properties ─────────────────── */
:root {
    /* Primary Colors */
    --nova-primary: #1a3a5c;
    --nova-primary-light: #2c5f8a;
    --nova-primary-dark: #0f2440;
    --nova-secondary: #34495e;
    --nova-accent: #ca2527;
    --nova-accent-hover: #a81d1f;

    /* Status Colors */
    --nova-success: #27ae60;
    --nova-warning: #f39c12;
    --nova-danger: #e74c3c;
    --nova-info: #3498db;

    /* Neutral Colors */
    --nova-white: #ffffff;
    --nova-light: #f8f9fa;
    --nova-light-gray: #f1f3f5;
    --nova-gray: #6c757d;
    --nova-dark-gray: #495057;
    --nova-dark: #212529;
    --nova-border: #dee2e6;
    --nova-border-light: #e9ecef;

    /* Category Colors */
    --cat-politics: #c0392b;
    --cat-sports: #27ae60;
    --cat-business: #e67e22;
    --cat-education: #2980b9;
    --cat-health: #8e44ad;
    --cat-entertainment: #e74c3c;
    --cat-technology: #1abc9c;
    --cat-opinion: #d35400;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;

    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-sticky: 100;
    --z-fixed: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ─── Base / Reset ──────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--nova-dark);
    background-color: var(--nova-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--nova-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--nova-primary-light);
}

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

/* ─── Typography ────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--nova-dark);
    margin-bottom: 0.5rem;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); }

.section-title {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--nova-primary);
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--nova-accent);
    border-radius: 2px;
}

.section-more-link {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--nova-primary);
    transition: color var(--transition-fast);
}

.section-more-link:hover {
    color: var(--nova-accent);
}

/* ─── Buttons ───────────────────────────────── */
.btn-nova-primary {
    background-color: var(--nova-primary);
    color: var(--nova-white);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-nova-primary:hover {
    background-color: var(--nova-primary-light);
    color: var(--nova-white);
}

.btn-nova-accent {
    background-color: var(--nova-accent);
    color: var(--nova-white);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-nova-accent:hover {
    background-color: var(--nova-accent-hover);
    color: var(--nova-white);
}

.btn-outline-nova {
    background-color: transparent;
    color: var(--nova-primary);
    border: 2px solid var(--nova-primary);
    padding: 8px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-outline-nova:hover {
    background-color: var(--nova-primary);
    color: var(--nova-white);
}

/* ─── Top Bar ───────────────────────────────── */
.daily-topbar {
    background-color: var(--nova-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-xs);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.daily-topbar .topbar-date,
.daily-topbar .topbar-time {
    color: rgba(255, 255, 255, 0.75);
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-social-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    transition: color var(--transition-fast);
}

.topbar-social-link:hover {
    color: var(--nova-white);
}

.topbar-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-xs);
    transition: color var(--transition-fast);
}

.topbar-link:hover {
    color: var(--nova-white);
}

.topbar-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

/* ─── Main Header ───────────────────────────── */
.daily-header {
    background-color: var(--nova-white);
    border-bottom: 1px solid var(--nova-border);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: box-shadow var(--transition-base);
}

.daily-header.scrolled {
    box-shadow: var(--shadow-md);
}

.daily-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
}

.daily-logo-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.daily-logo-tagline {
    font-size: 11px;
    color: var(--nova-gray);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* Search */
.daily-search-form .daily-search-input {
    border: 2px solid var(--nova-border);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    padding: 8px 16px;
    font-size: var(--fs-sm);
    transition: border-color var(--transition-fast);
}

.daily-search-form .daily-search-input:focus {
    border-color: var(--nova-primary);
    box-shadow: none;
}

.daily-search-btn {
    background-color: var(--nova-primary);
    color: var(--nova-white);
    border: 2px solid var(--nova-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 8px 16px;
    transition: background-color var(--transition-fast);
}

.daily-search-btn:hover {
    background-color: var(--nova-primary-light);
    border-color: var(--nova-primary-light);
    color: var(--nova-white);
}

/* Live Badge */
.daily-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--nova-accent);
    color: var(--nova-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    animation: livePulse 2s infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--nova-white);
    border-radius: 50%;
    animation: liveDotPulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

@keyframes liveDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Dark Mode Toggle */
.daily-dark-toggle {
    background: none;
    border: 2px solid var(--nova-border);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--nova-gray);
    font-size: 16px;
}

.daily-dark-toggle:hover {
    border-color: var(--nova-primary);
    color: var(--nova-primary);
}

.daily-dark-toggle .light-icon {
    display: none;
}

.dark-mode .daily-dark-toggle .dark-icon {
    display: none;
}

.dark-mode .daily-dark-toggle .light-icon {
    display: inline;
}

/* Mobile Search Toggle */
.daily-mobile-search-toggle {
    background: none;
    border: none;
    color: var(--nova-gray);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
}

/* Hamburger */
.daily-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--nova-dark);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* ─── Navbar ────────────────────────────────── */
.daily-navbar {
    background-color: var(--nova-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.daily-navbar-inner {
    display: flex;
    align-items: center;
}

.daily-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.daily-nav-item {
    position: relative;
}

.daily-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-sm);
    font-weight: 500;
    padding: 12px 16px;
    white-space: nowrap;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.daily-nav-link:hover,
.daily-nav-item.active .daily-nav-link {
    color: var(--nova-white);
    background-color: rgba(255, 255, 255, 0.1);
}

.daily-nav-item.active .daily-nav-link {
    border-bottom: 3px solid var(--nova-accent);
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.daily-nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.daily-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--nova-white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all var(--transition-fast);
    z-index: var(--z-fixed);
}

.daily-nav-item.has-dropdown:hover .daily-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.daily-dropdown-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.daily-dropdown-link {
    display: block;
    padding: 8px 20px;
    color: var(--nova-dark);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.daily-dropdown-link:hover {
    background-color: var(--nova-light);
    color: var(--nova-primary);
    padding-left: 24px;
}

/* ─── Breaking News Ticker ──────────────────── */
.daily-breaking-ticker {
    background-color: var(--nova-accent);
    color: var(--nova-white);
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 90;
}

.breaking-ticker-inner {
    display: flex;
    align-items: center;
    height: 38px;
}

.breaking-label {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0 16px;
    height: 100%;
    flex-shrink: 0;
    z-index: 2;
}

.breaking-dot {
    width: 8px;
    height: 8px;
    background-color: var(--nova-white);
    border-radius: 50%;
    animation: breakingDotPulse 1s infinite;
}

@keyframes breakingDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.breaking-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.breaking-marquee-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.breaking-marquee {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.breaking-marquee-content {
    display: flex;
    align-items: center;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.breaking-marquee:hover .breaking-marquee-content {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.breaking-item {
    color: var(--nova-white);
    font-size: var(--fs-sm);
    font-weight: 500;
    padding: 0 12px;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.breaking-item:hover {
    opacity: 0.8;
    color: var(--nova-white);
}

.breaking-separator {
    margin-right: 12px;
    font-size: 8px;
    opacity: 0.6;
}

.breaking-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0 12px;
    height: 100%;
    transition: color var(--transition-fast);
}

.breaking-close:hover {
    color: var(--nova-white);
}

/* ─── Hero Slider ───────────────────────────── */
.daily-hero-slider {
    margin-bottom: 0;
}

.hero-swiper {
    width: 100%;
    height: 500px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hero-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--nova-white);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    width: 100%;
}

.hero-category-badge {
    display: inline-block;
    background-color: var(--nova-accent);
    color: var(--nova-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.hero-slide-title {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--nova-white);
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 700px;
}

.hero-slide-excerpt {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.hero-slide-meta {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
}

.hero-slide-meta span {
    display: inline-flex;
    align-items: center;
}

/* Hero Navigation */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: var(--nova-white);
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-full);
    transition: background-color var(--transition-fast);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-swiper .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    width: 10px;
    height: 10px;
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background-color: var(--nova-white);
    width: 30px;
    border-radius: 5px;
}

/* ─── Five Headlines Grid ───────────────────── */
.daily-five-headlines {
    padding: 20px 0;
}

.headline-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--nova-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.headline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.headline-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.headline-image-wrap {
    position: relative;
    overflow: hidden;
}

.headline-large .headline-image-wrap {
    height: 400px;
}

.headline-small .headline-image-wrap {
    height: 190px;
}

.headline-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.headline-card:hover .headline-image {
    transform: scale(1.05);
}

.headline-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.headline-category {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-block;
    background-color: var(--nova-accent);
    color: var(--nova-white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.headline-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
}

.headline-title {
    color: var(--nova-white);
    margin-bottom: 6px;
}

.headline-title-large {
    font-size: var(--fs-2xl);
    font-weight: 800;
}

.headline-title-small {
    font-size: var(--fs-sm);
    font-weight: 700;
    line-height: 1.3;
}

.headline-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-sm);
    margin-bottom: 6px;
}

.headline-meta {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.7);
}

/* ─── Article Cards ─────────────────────────── */
.daily-card {
    background-color: var(--nova-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    margin-bottom: 16px;
    border: 1px solid var(--nova-border-light);
}

.daily-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Vertical Card */
.daily-card-vertical .card-image-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.daily-card-vertical .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.daily-card-vertical:hover .card-image {
    transform: scale(1.05);
}

.daily-card-vertical .card-body {
    padding: 16px;
}

/* Horizontal Card */
.daily-card-horizontal {
    margin-bottom: 16px;
}

.daily-card-horizontal .card-image-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 150px;
}

.daily-card-horizontal .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.daily-card-horizontal:hover .card-image {
    transform: scale(1.05);
}

.daily-card-horizontal .card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Compact Card */
.daily-card-compact .card-image-wrap {
    height: 160px;
}

.daily-card-compact .card-body {
    padding: 12px;
}

.daily-card-compact .card-title {
    font-size: var(--fs-sm);
}

/* Card Elements */
.card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--nova-accent);
    margin-bottom: 6px;
}

.card-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    color: var(--nova-white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    z-index: 2;
}

.card-title {
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.card-title a {
    color: var(--nova-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.card-title a:hover {
    color: var(--nova-primary);
}

.card-excerpt {
    font-size: var(--fs-sm);
    color: var(--nova-gray);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    font-size: var(--fs-xs);
    color: var(--nova-gray);
}

.card-meta i {
    color: var(--nova-gray);
}

.card-link {
    text-decoration: none;
    color: inherit;
}

/* ─── Category Tabs ─────────────────────────── */
.daily-category-tabs {
    padding: 20px 0;
}

.daily-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border: none;
    padding: 0;
}

.daily-tab-btn {
    background-color: var(--nova-light);
    border: 2px solid transparent;
    color: var(--nova-dark-gray);
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.daily-tab-btn:hover {
    background-color: var(--nova-border-light);
}

.daily-tab-btn.active {
    background-color: var(--tab-color, var(--nova-primary));
    color: var(--nova-white);
    border-color: var(--tab-color, var(--nova-primary));
}

/* ─── Authors Strip ─────────────────────────── */
.daily-authors-strip {
    padding: 20px 0;
    background-color: var(--nova-light);
}

.authors-scroll-wrapper {
    position: relative;
}

.authors-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.authors-scroll::-webkit-scrollbar {
    display: none;
}

.author-card {
    flex: 0 0 auto;
    width: 160px;
    text-align: center;
    padding: 20px 12px;
    background-color: var(--nova-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

.author-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    color: inherit;
}

.author-avatar-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--nova-primary);
}

.author-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--nova-dark);
    margin-bottom: 4px;
}

.author-latest-column {
    font-size: 11px;
    color: var(--nova-primary);
    margin-bottom: 4px;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-role {
    font-size: 10px;
    color: var(--nova-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.authors-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--nova-white);
    border: 1px solid var(--nova-border);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all var(--transition-fast);
    color: var(--nova-dark);
}

.authors-scroll-btn:hover {
    background-color: var(--nova-primary);
    color: var(--nova-white);
    border-color: var(--nova-primary);
}

.authors-scroll-prev {
    left: -18px;
}

.authors-scroll-next {
    right: -18px;
}

/* ─── Weather Widget ────────────────────────── */
.daily-weather-block,
.sidebar-weather .widget-body {
    background: linear-gradient(135deg, var(--nova-primary) 0%, var(--nova-primary-light) 100%);
    color: var(--nova-white);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.daily-weather-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.weather-block-header {
    margin-bottom: 16px;
}

.weather-block-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--nova-white);
    margin: 0;
}

.weather-more-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-sm);
    text-decoration: none;
}

.weather-more-link:hover {
    color: var(--nova-white);
}

.weather-location,
.weather-location-name {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.weather-temp .temp-value,
.temp-big {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.weather-temp .temp-unit,
.temp-degree {
    font-size: var(--fs-xl);
    font-weight: 400;
    vertical-align: super;
}

.weather-desc,
.weather-primary-desc {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.8);
}

.weather-details,
.weather-stats {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.75);
}

.weather-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--fs-xs);
}

.weather-icon-large,
.weather-primary-icon i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.forecast-row,
.weather-forecast-row {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.forecast-day,
.forecast-mini {
    flex: 1;
}

.forecast-label,
.forecast-mini-day {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.forecast-icon,
.forecast-mini-icon {
    font-size: var(--fs-xl);
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.forecast-temp,
.forecast-mini-temps {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.forecast-hi {
    font-weight: 700;
    color: var(--nova-white);
}

.forecast-lo {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 4px;
}

.weather-full-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.weather-full-link:hover {
    color: var(--nova-white);
}

/* ─── Sidebar ───────────────────────────────── */
.daily-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-widget {
    background-color: var(--nova-white);
    border: 1px solid var(--nova-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.widget-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--nova-border-light);
    background-color: var(--nova-light);
}

.widget-title {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--nova-primary);
    margin: 0;
}

.widget-body {
    padding: 16px;
}

/* Most Read Sidebar */
.most-read-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: most-read-counter;
}

.most-read-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--nova-border-light);
}

.most-read-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.most-read-item:first-child {
    padding-top: 0;
}

.most-read-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: var(--nova-primary);
    color: var(--nova-white);
    font-size: 13px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.most-read-item:nth-child(1) .most-read-number { background-color: var(--nova-accent); }
.most-read-item:nth-child(2) .most-read-number { background-color: #e67e22; }
.most-read-item:nth-child(3) .most-read-number { background-color: #f39c12; }

.most-read-content {
    flex: 1;
    min-width: 0;
}

.most-read-category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--nova-accent);
    display: block;
    margin-bottom: 2px;
}

.most-read-title {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--nova-dark);
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.most-read-title:hover {
    color: var(--nova-primary);
}

.most-read-thumb {
    width: 70px;
    height: 52px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* Most Read Block */
.most-read-numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.most-read-numbered-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--nova-border-light);
}

.most-read-numbered-item:last-child {
    border-bottom: none;
}

.most-read-rank {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-color: var(--nova-primary);
    color: var(--nova-white);
    font-size: 14px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.most-read-numbered-item:nth-child(1) .most-read-rank { background-color: var(--nova-accent); }
.most-read-numbered-item:nth-child(2) .most-read-rank { background-color: #e67e22; }
.most-read-numbered-item:nth-child(3) .most-read-rank { background-color: #f39c12; }

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

.most-read-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.most-read-link {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--nova-dark);
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.most-read-link:hover {
    color: var(--nova-primary);
}

.most-read-thumb-wrap {
    flex-shrink: 0;
}

.most-read-thumb-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Poll Widget */
.poll-question {
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--nova-dark);
}

/* Ad Slot */
.ad-slot {
    text-align: center;
    padding: 10px 0;
}

.ad-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nova-gray);
    display: block;
    margin-bottom: 8px;
}

/* Sports Standings */
.standings-league {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--nova-primary);
    margin-bottom: 8px;
}

.standings-table {
    font-size: var(--fs-xs);
}

.standings-table th {
    font-weight: 700;
    color: var(--nova-gray);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.5px;
    border-bottom-width: 2px;
}

.standings-link {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--nova-primary);
    text-decoration: none;
}

.standings-link:hover {
    color: var(--nova-accent);
}

/* ─── Stock Ticker ──────────────────────────── */
.daily-stock-ticker {
    background-color: var(--nova-white);
    border: 1px solid var(--nova-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}

.stock-ticker-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--nova-border-light);
    background-color: var(--nova-light);
}

.stock-ticker-title {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--nova-primary);
    margin: 0;
}

.stock-more-link {
    font-size: var(--fs-sm);
    color: var(--nova-primary);
    text-decoration: none;
}

.stock-ticker-body {
    padding: 16px;
}

.stock-ticker-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.stock-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.stock-symbol {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--nova-dark);
}

.stock-price {
    font-size: var(--fs-sm);
    color: var(--nova-dark-gray);
}

.stock-change {
    font-size: var(--fs-xs);
    font-weight: 600;
}

.stock-up {
    color: var(--nova-success);
}

.stock-down {
    color: var(--nova-danger);
}

/* ─── Gallery & Video Carousels ─────────────── */
.daily-gallery-section,
.daily-video-section {
    padding: 20px 0;
}

.gallery-slide,
.video-slide {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-slide-image,
.video-slide-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-slide:hover .gallery-slide-image,
.video-slide:hover .video-slide-image {
    transform: scale(1.05);
}

.gallery-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.gallery-slide-caption {
    color: var(--nova-white);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin: 0;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nova-white);
    font-size: 18px;
    transition: all var(--transition-fast);
}

.video-slide:hover .video-play-btn {
    background-color: var(--nova-accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.video-slide-title {
    color: var(--nova-white);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin: 0 0 4px;
}

.video-duration {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-xs);
}

.gallery-slide-link,
.video-slide-link {
    text-decoration: none;
    display: block;
}

/* Swiper adjustments for galleries */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next,
.video-swiper .swiper-button-prev,
.video-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
    background-color: var(--nova-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    color: var(--nova-dark);
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after,
.video-swiper .swiper-button-prev::after,
.video-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

/* ─── Article Detail ────────────────────────── */
.daily-article-detail {
    padding: 0 0 40px;
}

.daily-breadcrumb {
    font-size: var(--fs-sm);
}

.daily-breadcrumb .breadcrumb-item a {
    color: var(--nova-gray);
    text-decoration: none;
}

.daily-breadcrumb .breadcrumb-item a:hover {
    color: var(--nova-primary);
}

.daily-breadcrumb .breadcrumb-item.active {
    color: var(--nova-dark-gray);
}

.article-category-badge {
    display: inline-block;
    color: var(--nova-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.article-title {
    font-size: var(--fs-4xl);
    font-weight: 900;
    line-height: 1.2;
    color: var(--nova-dark);
    margin-bottom: 8px;
}

.article-subtitle {
    font-size: var(--fs-lg);
    color: var(--nova-gray);
    font-style: italic;
    margin-bottom: 16px;
}

.article-meta {
    font-size: var(--fs-sm);
    color: var(--nova-gray);
}

.author-mini-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-name-link {
    color: var(--nova-primary);
    font-weight: 600;
    text-decoration: none;
}

.author-name-link:hover {
    text-decoration: underline;
}

/* Share Buttons */
.share-label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--nova-dark-gray);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    color: var(--nova-white);
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.share-facebook { background-color: #1877f2; }
.share-twitter { background-color: #000; }
.share-whatsapp { background-color: #25d366; }
.share-email { background-color: var(--nova-gray); }
.share-copy { background-color: var(--nova-primary); }

.share-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
    color: var(--nova-white);
}

/* Featured Image */
.article-featured-image img {
    border-radius: var(--radius-lg);
}

.article-image-caption {
    font-size: var(--fs-sm);
    color: var(--nova-gray);
    font-style: italic;
}

.image-credit {
    font-weight: 600;
    font-style: normal;
    margin-left: 8px;
}

/* Article Body */
.article-body {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.8;
    color: var(--nova-dark);
}

.article-body p {
    margin-bottom: 1.5em;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.article-body blockquote {
    border-left: 4px solid var(--nova-primary);
    padding: 16px 20px;
    margin: 1.5em 0;
    background-color: var(--nova-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--nova-dark-gray);
}

.article-body img {
    border-radius: var(--radius-md);
    margin: 1.5em 0;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.article-body li {
    margin-bottom: 0.5em;
}

.article-body a {
    color: var(--nova-primary);
    text-decoration: underline;
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.tags-label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--nova-dark-gray);
}

.article-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--nova-light);
    color: var(--nova-dark-gray);
    font-size: var(--fs-xs);
    font-weight: 500;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1px solid var(--nova-border);
    transition: all var(--transition-fast);
}

.article-tag:hover {
    background-color: var(--nova-primary);
    color: var(--nova-white);
    border-color: var(--nova-primary);
}

/* Author Box */
.article-author-box {
    background-color: var(--nova-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--nova-border-light);
}

.author-box-name {
    font-size: var(--fs-lg);
    margin-bottom: 2px;
}

.author-box-name a {
    color: var(--nova-dark);
    text-decoration: none;
}

.author-box-name a:hover {
    color: var(--nova-primary);
}

.author-box-role {
    font-size: var(--fs-sm);
    color: var(--nova-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.author-box-bio {
    font-size: var(--fs-sm);
    color: var(--nova-gray);
    margin-bottom: 8px;
}

.author-box-social a {
    color: var(--nova-gray);
    font-size: var(--fs-lg);
    transition: color var(--transition-fast);
}

.author-box-social a:hover {
    color: var(--nova-primary);
}

/* Comments */
.comment-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--nova-border-light);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-author {
    color: var(--nova-dark);
    font-size: var(--fs-sm);
}

.comment-date {
    color: var(--nova-gray);
    font-size: var(--fs-xs);
}

.comment-text {
    font-size: var(--fs-sm);
    color: var(--nova-dark-gray);
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ─── Search Results ────────────────────────── */
.daily-search-page {
    padding: 0 0 40px;
}

.search-page-title {
    font-size: var(--fs-3xl);
    margin-bottom: 16px;
}

.daily-search-input-lg {
    border: 2px solid var(--nova-border);
    border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    font-size: var(--fs-lg);
    padding: 12px 20px;
}

.daily-search-input-lg:focus {
    border-color: var(--nova-primary);
    box-shadow: none;
}

.search-results-summary {
    font-size: var(--fs-base);
    color: var(--nova-gray);
}

.search-sort {
    font-size: var(--fs-sm);
}

.sort-option {
    color: var(--nova-gray);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.sort-option.active,
.sort-option:hover {
    background-color: var(--nova-primary);
    color: var(--nova-white);
}

.search-result-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--nova-border-light);
}

.search-result-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.search-result-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: 6px;
}

.search-result-title a {
    color: var(--nova-dark);
    text-decoration: none;
}

.search-result-title a:hover {
    color: var(--nova-primary);
}

.search-result-excerpt {
    font-size: var(--fs-sm);
    color: var(--nova-gray);
    line-height: 1.5;
    margin-bottom: 8px;
}

.search-result-meta {
    font-size: var(--fs-xs);
    color: var(--nova-gray);
}

/* ─── Error Pages ───────────────────────────── */
.daily-error-page {
    padding: 60px 0;
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--nova-primary);
    line-height: 1;
    opacity: 0.2;
}

.error-title {
    font-size: var(--fs-3xl);
    color: var(--nova-dark);
    margin-bottom: 16px;
}

.error-message {
    font-size: var(--fs-base);
    color: var(--nova-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ─── Category Page ─────────────────────────── */
.category-page-header {
    text-align: center;
    padding: 20px 0;
}

.category-page-title {
    font-size: var(--fs-4xl);
    font-weight: 900;
    color: var(--nova-dark);
    margin-bottom: 8px;
}

.category-page-description {
    font-size: var(--fs-lg);
    color: var(--nova-gray);
    max-width: 600px;
    margin: 0 auto;
}

.category-header-line {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ─── Pagination ────────────────────────────── */
.daily-pagination .page-link {
    color: var(--nova-primary);
    border-color: var(--nova-border);
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    margin: 0 2px;
    transition: all var(--transition-fast);
}

.daily-pagination .page-link:hover {
    background-color: var(--nova-primary);
    color: var(--nova-white);
    border-color: var(--nova-primary);
}

.daily-pagination .page-item.active .page-link {
    background-color: var(--nova-primary);
    border-color: var(--nova-primary);
    color: var(--nova-white);
}

.daily-pagination .page-item.disabled .page-link {
    color: var(--nova-gray);
    background-color: var(--nova-light);
}

/* ─── Footer ────────────────────────────────── */
.daily-footer {
    margin-top: 40px;
}

.daily-footer-main {
    background-color: var(--nova-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 30px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

.footer-about-text {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 14px;
}

.footer-social-link:hover {
    background-color: var(--nova-accent);
    color: var(--nova-white);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--nova-white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--nova-accent);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--fs-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--nova-white);
    padding-left: 4px;
}

/* Newsletter */
.newsletter-text {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--nova-white);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--nova-accent);
    box-shadow: none;
    color: var(--nova-white);
}

.app-text {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.65);
}

.app-badge img {
    opacity: 0.85;
    transition: opacity var(--transition-fast);
}

.app-badge:hover img {
    opacity: 1;
}

/* Footer Bottom */
.daily-footer-bottom {
    background-color: #0a1f33;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--fs-xs);
    text-decoration: none;
    margin-left: 16px;
    transition: color var(--transition-fast);
}

.footer-bottom-nav a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ─── Scroll to Top ─────────────────────────── */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--nova-primary);
    color: var(--nova-white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--nova-accent);
    transform: translateY(-3px);
}

/* ─── Mobile Menu ───────────────────────────── */
.daily-mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--nova-white);
    z-index: var(--z-overlay);
    transition: left var(--transition-base);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.daily-mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--nova-border);
    background-color: var(--nova-primary);
}

.mobile-menu-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--nova-white);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--nova-white);
    font-size: 20px;
    cursor: pointer;
}

.mobile-menu-body {
    padding: 16px 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    position: relative;
    border-bottom: 1px solid var(--nova-border-light);
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: var(--nova-dark);
    font-size: var(--fs-base);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--nova-primary);
}

.mobile-submenu-toggle {
    position: absolute;
    right: 0;
    top: 8px;
    background: none;
    border: none;
    padding: 8px;
    color: var(--nova-gray);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.mobile-submenu-toggle.open {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0 0 8px 16px;
    margin: 0;
    display: none;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 8px 0;
    color: var(--nova-gray);
    font-size: var(--fs-sm);
    text-decoration: none;
}

.mobile-submenu li a:hover {
    color: var(--nova-primary);
}

.mobile-menu-social {
    font-size: var(--fs-xl);
}

.mobile-menu-social a {
    color: var(--nova-gray);
    transition: color var(--transition-fast);
}

.mobile-menu-social a:hover {
    color: var(--nova-primary);
}

.daily-mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-overlay) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.daily-mobile-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* ─── Utility Classes ───────────────────────── */
.text-nova-primary { color: var(--nova-primary) !important; }
.text-nova-accent { color: var(--nova-accent) !important; }
.bg-nova-primary { background-color: var(--nova-primary) !important; }
.bg-nova-accent { background-color: var(--nova-accent) !important; }
.bg-nova-light { background-color: var(--nova-light) !important; }

.border-nova { border-color: var(--nova-border) !important; }

.line-clamp-1 { -webkit-line-clamp: 1; }
.line-clamp-2 { -webkit-line-clamp: 2; }
.line-clamp-3 { -webkit-line-clamp: 3; }

.line-clamp-1,
.line-clamp-2,
.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─── Animations ────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.5s ease forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}

/* Intersection Observer animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive Breakpoints ────────────────── */

/* Tablets and below */
@media (max-width: 991.98px) {
    .hero-swiper {
        height: 400px;
    }

    .hero-slide-title {
        font-size: var(--fs-2xl);
    }

    .headline-large .headline-image-wrap {
        height: 300px;
    }

    .article-title {
        font-size: var(--fs-3xl);
    }

    .article-body {
        font-size: 16px;
    }

    .daily-sidebar {
        position: static;
        margin-top: 30px;
    }

    .authors-scroll-prev,
    .authors-scroll-next {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-swiper {
        height: 300px;
    }

    .hero-slide-title {
        font-size: var(--fs-xl);
    }

    .hero-slide-content {
        padding: 20px 0;
    }

    .hero-category-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .headline-large .headline-image-wrap {
        height: 220px;
    }

    .headline-small .headline-image-wrap {
        height: 140px;
    }

    .headline-title-large {
        font-size: var(--fs-lg);
    }

    .headline-title-small {
        font-size: var(--fs-xs);
    }

    .daily-card-horizontal .row {
        flex-direction: column;
    }

    .daily-card-horizontal .card-image-wrap {
        height: 180px;
    }

    .article-title {
        font-size: var(--fs-2xl);
    }

    .article-body {
        font-size: 15px;
    }

    .category-page-title {
        font-size: var(--fs-2xl);
    }

    .error-code {
        font-size: 80px;
    }

    .daily-tab-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .daily-tab-btn {
        flex-shrink: 0;
    }

    .footer-bottom-nav a {
        margin: 0 8px;
        display: inline-block;
        margin-bottom: 4px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .stock-ticker-scroll {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    .daily-topbar {
        display: none;
    }

    .hero-swiper {
        height: 250px;
    }

    .daily-logo-img {
        max-height: 35px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px !important;
    }

    .article-author-box {
        flex-direction: column;
        text-align: center;
    }

    .article-author-box .author-box-avatar {
        margin-right: 0 !important;
        margin-bottom: 12px;
    }
}

/* Print styles */
@media print {
    .daily-topbar,
    .daily-header,
    .daily-navbar,
    .daily-breaking-ticker,
    .daily-footer,
    .daily-sidebar,
    .scroll-to-top,
    .article-share,
    .article-share-bottom,
    .article-comments,
    .article-related,
    .share-buttons {
        display: none !important;
    }

    .article-body {
        font-size: 12pt;
    }

    .article-title {
        font-size: 24pt;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}

/* ============================================
   MILAT-STYLE REDESIGN — DailyNews724
   ============================================ */

/* ─── Site Header wrapper ─────────────────── */
.sh-header {
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

/* ─── Shared container ────────────────────── */
.sh-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ─── Top Bar ─────────────────────────────── */
.sh-topbar {
    background: var(--nova-accent);
}

.sh-topbar-inner {
    display: flex;
    align-items: center;
    min-height: 52px;
    gap: 12px;
}

/* Logo */
.sh-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    margin-right: 8px;
}

.sh-logo img {
    max-height: 38px;
    width: auto;
}

.sh-logo-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    text-transform: uppercase;
}

.sh-logo-accent {
    color: #f7c948;
}

/* Desktop Widgets */
.sh-widgets {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 14px;
    overflow: hidden;
    min-width: 0;
}

.sh-date {
    color: rgba(255,255,255,.75);
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sh-spacer { flex-grow: 1; }

/* Breaking mini ticker in top bar */
.sh-breaking-mini {
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 340px;
    min-width: 120px;
    flex-shrink: 1;
    gap: 8px;
}

.sh-breaking-label {
    background: #f39c12;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sh-breaking-ticker {
    position: relative;
    overflow: hidden;
    height: 20px;
    flex-grow: 1;
}

.sh-breaking-item {
    display: none;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    top: 0; left: 0; right: 0;
    line-height: 20px;
    transition: opacity .3s;
    opacity: 0;
}

.sh-breaking-item.active {
    display: block;
    opacity: 1;
}

/* Dark mode toggle */
.sh-icon-btn {
    background: rgba(0,0,0,.15);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    flex-shrink: 0;
    line-height: 1;
    transition: background .15s;
}

.sh-icon-btn:hover { background: rgba(0,0,0,.25); }

#dark-mode-toggle .light-icon { display: none; }
.dark-mode #dark-mode-toggle .dark-icon { display: none; }
.dark-mode #dark-mode-toggle .light-icon { display: inline; }

/* Quick links */
.sh-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
    gap: 2px;
}

.sh-quick-link span { font-size: 10px; line-height: 1; }
.sh-quick-icon { font-size: 13px; color: #f39c12; }
.sh-quick-link:hover { color: #f39c12; }

/* Social icons */
.sh-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sh-social-link {
    color: rgba(255,255,255,.8);
    font-size: 14px;
    text-decoration: none;
    transition: color .15s;
}

.sh-social-link:hover { color: #fff; }

/* Mobile buttons — hidden on desktop */
.sh-mobile-btns {
    display: none;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.sh-hamburger {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

/* ─── Desktop Nav Bar ─────────────────────── */
.sh-navbar {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
}

.sh-navbar-inner {
    display: flex;
    align-items: stretch;
    min-height: 44px;
}

.sh-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    flex-wrap: nowrap;
    overflow: hidden;
}

.sh-nav-item { display: flex; align-items: center; }

.sh-nav-link {
    display: block;
    padding: 10px 14px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color .15s, border-color .15s;
}

.sh-nav-link:hover,
.sh-nav-active {
    color: var(--nova-accent);
    border-bottom-color: var(--nova-accent);
}

/* ─── Mega Menu ───────────────────────────── */
.sh-mega-wrap {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.sh-mega-btn {
    background: none;
    border: none;
    padding: 10px 14px;
    font-size: 16px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    transition: color .15s;
}

.sh-mega-btn:hover { color: var(--nova-accent); }

.sh-mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 460px;
    background: #fff;
    border: 1px solid #dee2e6;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 9999;
}

.sh-mega-dropdown.open { display: block; }

.sh-mega-body {
    display: flex;
    padding: 16px;
    gap: 16px;
}

.sh-mega-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sh-mega-link {
    display: block;
    padding: 8px 4px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color .15s;
}

.sh-mega-link:hover { color: var(--nova-accent); }

.sh-mega-footer {
    background: var(--nova-primary);
    padding: 10px 16px;
    display: flex;
    gap: 20px;
}

.sh-mega-social {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    opacity: .85;
}

.sh-mega-social:hover { opacity: 1; color: #fff; }

/* ─── Mobile Category Scroll ─────────────── */
.sh-mobile-cats {
    display: none;
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sh-mobile-cats::-webkit-scrollbar { display: none; }

.sh-mobile-cat-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 8px;
    gap: 0;
    white-space: nowrap;
}

.sh-mobile-cat-list li { flex-shrink: 0; }

.sh-mobile-cat-link {
    display: block;
    padding: 8px 12px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.sh-mobile-cat-link:hover { color: var(--nova-accent); }

/* ─── Responsive ──────────────────────────── */
@media (max-width: 991.98px) {
    .sh-widgets { display: none; }
    .sh-mobile-btns { display: flex; }
    .sh-navbar { display: none; }
    .sh-mobile-cats { display: block; }
}

@media (min-width: 992px) {
    .sh-mobile-btns { display: none; }
    .sh-mobile-cats { display: none; }
}

/* ─── Currency Strip ────────────────────── */
.milat-currency-strip .bg-gradient-te {
    background: linear-gradient(90deg, var(--nova-primary) 0%, var(--nova-primary-light) 100%);
    border-radius: 2px;
}

/* ─── Breaking News Ticker ──────────────── */
.milat-breaking-ticker .swiper-wrapper {
    flex-direction: column;
}

/* ─── Main Headline Slider ──────────────── */
.milat-main-headline .main-headline-swiper .swiper-pagination-bullet {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: var(--nova-primary);
    opacity: .35;
}

.milat-main-headline .main-headline-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--nova-accent);
}

.milat-main-headline .mh-pagination {
    gap: 4px;
    flex-wrap: wrap;
}

/* ─── Top Headlines ──────────────────────── */
.milat-top-headlines a:hover h5 {
    color: var(--nova-accent) !important;
}

/* ─── Latest News ────────────────────────── */
.milat-latest-section article:hover h5 a {
    color: var(--nova-accent) !important;
}

/* ─── Responsive (content) ─────────────── */
@media (max-width: 991.98px) {
    .milat-main-headline img[style*="height:420px"] {
        height: 260px !important;
    }

    .milat-top-headlines img {
        height: 140px !important;
    }
}

@media (max-width: 575.98px) {
    .milat-main-headline img {
        height: 200px !important;
    }
}
