@font-face {
    font-family: "StagSans";
    src: url("assets/fonts/StagSans-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "StagSans";
    src: url("assets/fonts/StagSans-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}
/*
Theme Name: Дневен Ред
Theme URI: https://dnevenred.com
Description: Professional news theme for Дневен Ред
Version: 2.1
Author: Дневен Ред
*/

:root {
    --red-primary: #E81B23;
    --red-hover: #C9151C;
    --black: #1A1A1A;
    --gray-900: #2D2D2D;
    --gray-800: #3D3D3D;
    --gray-700: #4A4A4A;
    --gray-600: #666666;
    --gray-500: #7A7A7A;
    --gray-400: #9A9A9A;
    --gray-300: #BEBEBE;
    --gray-200: #E5E5E5;
    --gray-100: #F5F5F5;
    --gray-50: #FAFAFA;
    --white: #FFFFFF;
    --font-display: "StagSans", "DM Serif Display", Georgia, serif;
    --font-body: "StagSans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: #F5F5F0;
    color: var(--black);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--red-primary); }

/* ========================================
   HEADER
   ======================================== */
.cl-header {
    background: var(--red-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.cl-header .cl-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 58px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    direction: ltr;
}

.cl-header .cl-header-left {
    display: flex;
    align-items: center;
    justify-self: left;
}

.cl-header .cl-header-center {
    display: flex;
    align-items: center;
    justify-self: center;
}

.cl-header .cl-header-right {
    display: flex;
    align-items: center;
    justify-self: end;
}

.cl-header-logo {
    display: inline-flex;
    align-items: center;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: white;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
  white-space: nowrap;
}

.cl-header-logo span {
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.cl-header-logo:hover { color: white; }

.cl-header-icon-link {
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    width: auto; min-width: 40px;
    height: auto; min-height: 40px;
}

.cl-header-icon-link:hover { color: white; opacity: 0.92; }

.cl-header .cl-menu-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    border-radius: 4px;
    outline: none !important;
    box-shadow: none !important;
}

.cl-header .cl-menu-btn:hover {
    opacity: 1;
    background: transparent;
    outline: none !important;
    box-shadow: none !important;
}
.cl-header .cl-menu-btn svg { width: 31px; height: 31px; }

.cl-header-link {
    color: white;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cl-header-link:hover { opacity: 1; color: white; }
.cl-header-link .cl-count {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.cl-header-link-text { display: inline; }

/* ========================================
   MAIN LAYOUT
   ======================================== */
.main-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px;
    background: var(--white);
    border-left: 1px solid #ECE8DD;
    border-right: 1px solid #ECE8DD;
    border-radius: 0;
    box-shadow: none;
}

.main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 40px;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--red-primary);
}

.section-arrow {
    color: var(--gray-400);
    font-size: 20px;
    transition: transform 0.2s;
}

.section-header:hover .section-arrow { transform: translateX(4px); }
.section-title-dark { color: var(--black); }
.section-title-white { color: var(--white); }

/* ========================================
   TOP STORIES SLIDER
   ======================================== */
.slider {
    position: relative;
}

.slider-track { position: relative; }

.slider-slide {
    display: none;
    animation: sliderFadeIn 0.4s ease;
}

.slider-slide.active { display: block; }

@keyframes sliderFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.2s;
}

.slider-btn:hover { background: rgba(0,0,0,0.75); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
    background: var(--red-primary);
    transform: scale(1.3);
}

.slider-dot:hover { background: var(--gray-500); }
.slider-dot.active:hover { background: var(--red-primary); }

/* More Headlines (below slider on desktop) */
.more-headlines {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid var(--black);
}

.more-headlines-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.more-headlines-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

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

.more-headlines-item a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--black);
    flex: 1;
}

.more-headlines-item a:hover { color: var(--red-primary); }

.more-headlines-time {
    font-size: 11px;
    color: var(--gray-400);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ========================================
   FEATURED ARTICLE (slider slides)
   ======================================== */
.featured-image-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 3px;
    cursor: pointer;
}

.featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.featured-image-wrap:hover .featured-image { transform: scale(1.02); }

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--red-primary);
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--black);
}

.featured-title a:hover { color: var(--red-primary); }

.featured-excerpt {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-500);
}

.article-meta .time { color: var(--gray-400); }
.article-meta .category { color: var(--red-primary); font-weight: 500; }
.article-meta .comments { display: flex; align-items: center; gap: 4px; }
.article-meta .separator { color: var(--gray-300); }

/* ========================================
   SECONDARY ARTICLES
   ======================================== */
.secondary-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.secondary-article { display: flex; gap: 16px; align-items: center; }
.secondary-image-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 2px;
    width: 160px;
    height: 100px;
}

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

.secondary-image-wrap:hover .secondary-image { transform: scale(1.05); }
.secondary-content { flex: 1; min-width: 0; }

.secondary-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--black);
}

.secondary-title a { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.secondary-title:hover { color: var(--red-primary); }

/* ========================================
   MIDDLE COLUMN - LATEST NEWS
   ======================================== */
.latest-section {
    border-left: 1px solid var(--gray-200);
    padding-left: 40px;
}

.news-list { display: flex; flex-direction: column; }
.news-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    align-items: flex-start;
}

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

.news-image-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 68px;
    overflow: hidden;
    border-radius: 3px;
}

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

.news-image-wrap:hover .news-image { transform: scale(1.05); }

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

.news-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--black);
    margin-bottom: 6px;
}

.news-title:hover { color: var(--red-primary); }
.news-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.news-time { color: var(--gray-400); font-weight: 500; }
.news-category { color: var(--red-primary); font-weight: 500; }
.news-comments { color: var(--gray-400); display: flex; align-items: center; gap: 3px; }

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar { display: flex; flex-direction: column; gap: 28px; }

/* Analysis Widget */
.analysis-widget {
    border: 1px solid var(--gray-200);
    padding: 20px;
    border-radius: 3px;
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

.analysis-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.analysis-item:first-of-type {
    padding-top: 0;
}

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

.analysis-arrow {
    flex-shrink: 0;
    color: var(--red-primary);
    margin-top: 1px;
    display: flex;
}

.analysis-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--black);
}

.analysis-title a { color: inherit; }
.analysis-title a:hover { color: var(--red-primary); }

/* Partner Widget */
.partner-widget {
    border: 1px solid var(--gray-200);
    padding: 20px;
    border-radius: 3px;
}

.partner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.partner-logo { font-size: 14px; font-weight: 700; color: var(--gray-700); }
.partner-logo span { color: var(--red-primary); }
.partner-list { list-style: none; }
.partner-item { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.partner-item:last-child { border-bottom: none; padding-bottom: 0; }
.partner-item a { font-size: 13px; line-height: 1.5; color: var(--gray-700); display: flex; align-items: flex-start; gap: 10px; }
.partner-item a::before { content: ""; width: 7px; height: 7px; background: var(--red-primary); flex-shrink: 0; margin-top: 5px; border-radius: 1px; }

/* Mobile Trending & Cards - hidden on desktop */
.mobile-trending { display: none; }
.mobile-cards { display: none; }

/* Trending Widget */
.trending-list { counter-reset: trending; }
.trending-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); counter-increment: trending; }
.trending-item:last-child { border-bottom: none; }
.trending-number { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--red-primary); line-height: 1; min-width: 28px; }
.trending-content { flex: 1; padding-top: 4px; }
.trending-title { font-size: 13px; font-weight: 500; line-height: 1.45; color: var(--black); margin-bottom: 4px; }
.trending-title:hover { color: var(--red-primary); }
.trending-meta { font-size: 11px; color: var(--gray-400); }


/* ========================================
   OPINION SECTION
   ======================================== */
.opinion-section {
    background: var(--white);
    padding: 32px 24px;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.opinion-inner { max-width: 1280px; margin: 0 auto; }
.opinion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.opinion-card {
    background: var(--gray-50);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.opinion-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.opinion-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.opinion-card .opinion-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--black);
    padding: 20px 20px 0;
}

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

.opinion-meta {
    padding: 12px 20px 20px;
    font-size: 13px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 12px;
}

.opinion-author { font-weight: 500; color: var(--gray-700); }
.opinion-time { color: var(--gray-400); }

/* ========================================
   CONTENT SECTIONS GRID
   ======================================== */
.content-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px;
    background: var(--white);
    border-left: 1px solid #ECE8DD;
    border-right: 1px solid #ECE8DD;
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 40px;
}

.content-section { padding-right: 20px; }
.content-section:nth-child(2) { padding-left: 20px; padding-right: 20px; border-left: 1px solid var(--gray-200); }

.section-article { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.section-article:first-of-type { padding-top: 0; }
.section-article-image { position: relative; overflow: hidden; flex-shrink: 0; border-radius: 2px; width: 120px; height: 80px; }
.section-article-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.section-article:hover .section-article-image img { transform: scale(1.05); }
.section-article-content { display: flex; flex-direction: column; justify-content: center; }

.section-article-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--black);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.section-article-title::before { display: none; }

.section-article-title:hover { color: var(--red-primary); }



/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--gray-900); color: white; margin-top: 0; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 32px 24px; }
.footer-top-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-editions { display: flex; gap: 24px; }
.footer-edition { font-size: 14px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-edition:hover { color: white; }
.footer-edition-logo { font-weight: 700; }
.footer-social { display: flex; gap: 12px; }

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: background 0.2s;
    border-radius: 3px;
}

.social-link:hover { background: var(--red-primary); color: white; }

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
}

.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 20px; }
.footer-column h4 { font-family: var(--font-display); font-size: 16px; font-weight: 500; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.4); margin-left: 24px; transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--red-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.2s;
    opacity: 0;
    visibility: hidden;
    z-index: 50;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--red-hover); transform: translateY(-2px); }

/* ========================================
   SLIDE-OUT MENU
   ======================================== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.menu-overlay.active { opacity: 1; visibility: visible; }

.slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--gray-900);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.slide-menu.active { transform: translateX(0); }

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--red-primary);
}

.menu-logo { font-family: "DM Serif Display", Georgia, serif; font-size: 22px; font-weight: 700; color: white; letter-spacing: 2px; }
.menu-close { background: none; border: none; color: white; cursor: pointer; padding: 4px; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: opacity 0.2s; }
.menu-close:hover { opacity: 0.8; }

.menu-search { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.menu-search-input { width: 100%; padding: 10px 14px; border: none; background: rgba(255,255,255,0.1); color: white; font-size: 14px; font-family: var(--font-body); border-radius: 2px; }
.menu-search-input::placeholder { color: rgba(255,255,255,0.5); }
.menu-search-input:focus { outline: none; background: rgba(255,255,255,0.15); }

.menu-quick-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.menu-quick-link { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; background: rgba(255,255,255,0.1); color: white; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; transition: background 0.2s; border-radius: 2px; }
.menu-quick-link:hover { background: rgba(255,255,255,0.2); color: white; }
.menu-quick-link svg { width: 14px; height: 14px; }

.menu-nav { flex: 1; padding: 8px 0; }
.menu-nav-item { display: block; padding: 12px 20px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; border-left: 3px solid transparent; transition: all 0.15s; }
.menu-nav-item:hover { background: rgba(255,255,255,0.05); color: white; border-left-color: var(--red-primary); }
.menu-nav-item.highlight { color: var(--red-primary); }
.menu-nav-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 8px 20px; }

.menu-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.menu-social { display: flex; gap: 10px; margin-bottom: 16px; }
.menu-social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; transition: background 0.2s; border-radius: 3px; }
.menu-social-link:hover { background: var(--red-primary); color: white; }
.menu-copyright { font-size: 11px; color: rgba(255,255,255,0.4); }

body.menu-open { overflow: hidden; }

/* ========================================
   SINGLE ARTICLE PAGE
   ======================================== */
.single-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 250px;
    background: var(--white);
    border-left: 1px solid #ECE8DD;
    border-right: 1px solid #ECE8DD;
}

.single-category {
    display: inline-block;
    background: var(--red-primary);
    color: white;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    transition: background 0.2s;
    border-radius: 2px;
}

.single-category:hover { background: var(--red-hover); color: white; }

.single-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 20px;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.single-meta span { display: flex; align-items: center; gap: 6px; }
.single-meta .author-name { font-weight: 600; color: var(--black); }

.single-featured-image {
    width: 100%;
    height: auto;
    margin-bottom: 36px;
    border-radius: 4px;
}

.single-content {
    font-size: 18px;
    line-height: 1.9;
    color: var(--gray-800);
    letter-spacing: -0.01em;
}

/* Lead paragraph with drop cap */

.single-content > p:first-of-type::first-letter {
    font-family: Georgia, serif;
    float: left;
    font-size: 3.4em;
    line-height: 0.85;
    padding-right: 10px;
    padding-top: 4px;
    color: var(--red-primary);
    font-weight: 700;
}

.single-content p { margin-bottom: 28px; }

.single-content h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: var(--black);
    margin-top: 48px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.single-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-top: 40px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.single-content blockquote {
    border-left: 4px solid var(--red-primary);
    padding: 20px 28px;
    margin: 36px 0;
    font-style: italic;
    color: var(--gray-700);
    font-size: 20px;
    line-height: 1.7;
    background: var(--gray-50);
    border-radius: 0 4px 4px 0;
}

.single-content blockquote p:last-child { margin-bottom: 0; }

.single-content ul,
.single-content ol { margin-bottom: 28px; padding-left: 28px; }
.single-content li { margin-bottom: 12px; }

.single-content a { color: var(--red-primary); text-decoration: underline; text-underline-offset: 2px; }
.single-content a:hover { color: var(--red-hover); }

.single-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 32px 0; }
.single-content figcaption { font-size: 14px; color: var(--gray-500); text-align: center; margin-top: -20px; margin-bottom: 28px; font-style: italic; }

/* Article end marker */
.single-content > p:last-of-type::after {
    content: " \25A0";
    color: var(--red-primary);
    font-size: 12px;
    vertical-align: middle;
    margin-left: 4px;
}

.single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
}

.single-tags a {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.2s;
}

.single-tags a:hover { background: var(--red-primary); color: white; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .main-grid { grid-template-columns: 1fr 320px; }
    .opinion-grid { grid-template-columns: 1fr 1fr; }
    .content-grid { grid-template-columns: 1fr 1fr; }
    .content-grid .sidebar { display: none; }
    .archive-grid { grid-template-columns: 1fr 280px; }
}

@media (max-width: 768px) {
    .cl-header .cl-header-inner { height: 54px; padding: 0 16px; }
    .cl-header-logo { font-size: 40px; letter-spacing: 4px;   white-space: nowrap;
}
    .cl-header-link { font-size: 12px; gap: 4px;   white-space: nowrap;
}
    .cl-header-link .cl-count { font-size: 11px; padding: 2px 6px; }
    .cl-header-link-text { display: none; }

    /* Main layout - zero gap under header */
    body { background: var(--white); }
    .cl-header { box-shadow: none; }
    .main-wrapper { padding: 0; border: none; margin: 0; background: var(--white); }
    .main-grid { grid-template-columns: 1fr; gap: 0; }

    .more-headlines { display: none; }

    /* Slider - flush to header */
    .featured-section { margin: 0; padding: 0; }
    .slider, .slider-track, .slider-slide { margin: 0; padding: 0; }
    .featured-section .section-header { padding: 16px 16px 12px; margin-bottom: 0; }
    .featured-image-wrap { margin: 0; padding: 0; border-radius: 0; }

    /* Restore gaps for sections below slider */
    .latest-section { margin-top: 24px; }
    .featured-image { border-radius: 0; aspect-ratio: 16 / 9; }
    .slider-slide .featured-title,
    .slider-slide .featured-excerpt,
    .slider-slide .article-meta { padding: 0 16px; text-align: center; }
    .slider-slide .article-meta { justify-content: center; }
    .slider-slide .featured-title { padding-top: 14px; }
    .slider-slide .article-meta { padding-bottom: 4px; }
    .featured-title { font-size: 22px; }
    .featured-excerpt { font-size: 14px; margin-bottom: 8px; }
    .slider-btn { width: 36px; height: 36px; }
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
    .slider-dots { margin-top: 12px; padding-bottom: 8px; }
    .slider-counter { bottom: 8px; right: 8px; font-size: 11px; padding: 3px 8px; }

    /* Mobile Trending */
    .mobile-trending {
        display: block;
        padding: 16px 16px 0;
        border-top: 1px solid var(--gray-200);
    }
    .mobile-trending .section-header { margin-bottom: 8px; }
    .mobile-trending-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .mobile-trending-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 13px;
        font-weight: 500;
        line-height: 1.4;
        color: var(--black);
    }
    .mobile-trending-item:last-child { border-bottom: none; }
    .mobile-trending-item .trending-number {
        font-family: var(--font-display);
        font-size: 22px;
        color: var(--red-primary);
        line-height: 1;
        min-width: 20px;
        text-align: center;
    }
    .mobile-trending-item a { color: inherit; }
    .mobile-trending-item a:hover { color: var(--red-primary); }

    /* Mobile Cards Grid */
    .mobile-cards {
        display: block;
        padding: 16px;
        border-top: 1px solid var(--gray-200);
    }
    .mobile-cards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .mobile-card-img-wrap {
        display: block;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 8px;
    }
    .mobile-card-img {
        width: 100%;
        aspect-ratio: 3 / 2;
        object-fit: cover;
        display: block;
    }
    .mobile-card-cat {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--red-primary);
        margin-bottom: 4px;
        display: block;
    }
    .mobile-card-title {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.35;
        color: var(--black);
    }
    .mobile-card-title a { color: inherit; }
    .mobile-card-title a:hover { color: var(--red-primary); }

    /* Latest section */
    .latest-section { border-left: none; padding: 16px 16px 0; }
    .news-image-wrap { width: 80px; height: 54px; }

    /* Sections */
    .section-title { font-size: 22px; }
    .secondary-articles { padding: 16px 16px 0; border-top: none; }
    .opinion-grid { grid-template-columns: 1fr; }
    .opinion-section { padding: 20px 16px; }
    .content-grid { grid-template-columns: 1fr; padding: 20px 16px; }
    .content-section:first-child { display: none; }
    .content-section:nth-child(2) { padding-left: 0; border-left: none; padding-right: 0; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-top-inner { flex-direction: column; gap: 20px; }

    /* Single article */
    .single-wrapper { padding: 36px 20px; }
    .single-title { font-size: 32px; }
    .single-meta { gap: 14px; font-size: 13px; }
    .single-content { font-size: 16px; }
    .single-content h2 { font-size: 24px; }
    .single-content h3 { font-size: 20px; }
}

@media (max-width: 480px) {
    .cl-header .cl-header-inner { height: 50px; padding: 0 12px; }
    .cl-header .cl-menu-btn { padding: 6px; }
    .cl-header .cl-menu-btn svg { width: 29px; height: 29px; }
    .cl-header-logo { font-size: 32px; letter-spacing: 4px;   white-space: nowrap;
}
    .cl-header-link { gap: 0;   white-space: nowrap;
}
    .cl-header-link .cl-count { font-size: 10px; padding: 1px 6px; }
    .footer-main { grid-template-columns: 1fr; }
    .single-wrapper { padding: 28px 16px; border-left: none; border-right: none; }
    .single-title { font-size: 24px; }
    .featured-title { font-size: 20px; }
    .featured-excerpt { display: none; }
    .slider-btn { width: 32px; height: 32px; }
}

/* ========================================
   EMPTY STATE (no posts)
   ======================================== */
.empty-state {
    text-align: center;
    padding: 80px 24px;
}

.empty-state h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.empty-state a {
    color: var(--red-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ========================================
   ARCHIVE / CATEGORY PAGES
   ======================================== */
.archive-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 24px;
    background: var(--white);
    border-left: 1px solid #ECE8DD;
    border-right: 1px solid #ECE8DD;
}

.archive-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--black);
}

.archive-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
}

.archive-desc {
    font-size: 15px;
    color: var(--gray-600);
    margin-top: 8px;
    line-height: 1.6;
}

.archive-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.archive-posts {
    display: flex;
    flex-direction: column;
}

.archive-post {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
}

.archive-post:first-child { padding-top: 0; }

.archive-post-image {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 3px;
}

.archive-post-image img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.archive-post:hover .archive-post-image img { transform: scale(1.03); }

.archive-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.archive-post-category {
    display: inline-block;
    color: var(--red-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.archive-post-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 10px;
}

.archive-post-title a:hover { color: var(--red-primary); }

.archive-post-excerpt {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 10px;
}

.archive-post-meta {
    font-size: 13px;
    color: var(--gray-400);
}

/* Pagination */
.pagination { margin-top: 40px; }

.pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: 3px;
    transition: all 0.2s;
}

.pagination .page-numbers:hover {
    background: var(--gray-100);
    color: var(--black);
}

.pagination .page-numbers.current {
    background: var(--red-primary);
    color: white;
    border-color: var(--red-primary);
}

.pagination .prev,
.pagination .next {
    font-weight: 600;
}

/* ========================================
   MENU HEADER TEXT
   ======================================== */
.menu-header span {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

/* ========================================
   ARCHIVE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .archive-grid { grid-template-columns: 1fr; gap: 32px; }
    .archive-post { flex-direction: column; gap: 16px; }
    .archive-post-image img { width: 100%; height: 200px; }
    .archive-title { font-size: 28px; }
}

@media (max-width: 480px) {
    .archive-wrapper { padding: 24px 16px; border-left: none; border-right: none; }
    .archive-post-title { font-size: 18px; }
}

@media (max-width: 480px) {
    .cl-header-logo span {
        font-size: 24px !important;
        letter-spacing: 1px !important;
    }
    .cl-header-logo img {
        height: 28px !important;
        margin-right: 6px !important;
    }
}
