/* ========================================
   THREE COLUMN LAYOUT - PREMIUM DESIGN
   Matching Reference Image Layout
   ======================================== */

/* Main Featured Section Container */
.section-featured-new {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

/* ========================================
   LEFT COLUMN - PREMIUM SECTION
   ======================================== */

.premium-section {
    background: #fff;
    height: 100%;
}

.premium-section .section-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ed1c24;
}

.premium-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #ed1c24;
    margin: 0;
    font-family: var(--vr-font-secondary);
}

.premium-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-post-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.premium-post-item:last-child {
    border-bottom: none;
}

.premium-post-item:hover {
    padding-left: 5px;
}

.premium-post-item .post-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.premium-post-item .post-title {
    margin: 0 0 10px 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.premium-post-item .post-title a {
    color: #222;
    transition: color 0.3s ease;
}

.premium-post-item:hover .post-title a {
    color: #ed1c24;
}

.premium-post-item .post-meta-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.premium-post-item .author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5e5e5;
}

.premium-post-item .post-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
}

/* ========================================
   MIDDLE COLUMN - MAIN FEATURED POST
   ======================================== */

.main-featured-section {
    background: #fff;
}

.main-featured-post {
    position: relative;
    margin-bottom: 10px;
}

.main-featured-post .featured-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.main-featured-post .img-cover {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-featured-post:hover .img-cover {
    transform: scale(1.03);
}

/* Live Badge */
.live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ed1c24;
    color: #fff;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(237, 28, 36, 0.4);
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.featured-caption {
    padding: 20px 0;
}

.featured-title {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #222;
    font-family: var(--vr-font-secondary);
}

.featured-title a {
    color: #222;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #ed1c24;
}

.featured-summary {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.featured-meta {
    font-size: 13px;
    color: #777;
}

/* Sub Featured Posts */
.sub-featured-post {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sub-featured-post:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sub-featured-post .sub-img-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.sub-featured-post .img-fluid {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sub-featured-post:hover .img-fluid {
    transform: scale(1.05);
}

.sub-caption {
    padding: 12px;
}

.sub-title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
}

.sub-title a {
    color: #222;
    transition: color 0.3s ease;
}

.sub-featured-post:hover .sub-title a {
    color: #ed1c24;
}

/* ========================================
   RIGHT COLUMN - LATEST NEWS
   ======================================== */

.latest-news-section {
    background: #fff;
    height: 100%;
}

.latest-news-section .section-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ed1c24;
}

.latest-news-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #ed1c24;
    margin: 0;
    font-family: var(--vr-font-secondary);
}

.latest-news-posts {
    display: flex;
    flex-direction: column;
}

.latest-news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.latest-news-item:hover {
    padding-left: 5px;
}

.latest-news-item:last-of-type {
    border-bottom: none;
}

.news-timeline {
    position: relative;
    padding-top: 5px;
}

.timeline-dot {
    display: block;
    width: 10px;
    height: 10px;
    background: #ed1c24;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #ed1c24;
}

.news-content {
    flex: 1;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 11px;
    color: #999;
}

.news-time {
    font-weight: 600;
}

.news-separator {
    color: #ccc;
}

.news-category {
    color: #666;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-category:hover {
    color: #ed1c24;
}

.news-title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
}

.news-title a {
    color: #222;
    transition: color 0.3s ease;
}

.latest-news-item:hover .news-title a {
    color: #ed1c24;
}

/* Read More Button */
.read-more-stories {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #ed1c24;
    color: #ed1c24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.btn-read-more:hover {
    background: #ed1c24;
    color: #fff;
}

.btn-read-more svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.btn-read-more:hover svg {
    transform: translateX(3px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991.98px) {
    .main-featured-post .img-cover {
        height: 350px;
    }

    .featured-title {
        font-size: 26px;
    }

    .premium-section,
    .latest-news-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .section-featured-new {
        padding: 15px 0;
    }

    .main-featured-post .img-cover {
        height: 280px;
    }

    .featured-title {
        font-size: 22px;
    }

    .featured-summary {
        font-size: 14px;
    }

    .sub-featured-post .img-fluid {
        height: 120px;
    }

    .premium-section .section-title,
    .latest-news-section .section-title {
        font-size: 20px;
    }
}

/* ========================================
   DARK MODE SUPPORT
   ======================================== */

.dark-mode .section-featured-new {
    background: #1a1a1a;
    border-bottom-color: #333;
}

.dark-mode .premium-section,
.dark-mode .main-featured-section,
.dark-mode .latest-news-section,
.dark-mode .sub-featured-post {
    background: #2a2a2a;
}

.dark-mode .premium-post-item,
.dark-mode .latest-news-item {
    border-bottom-color: #333;
}

.dark-mode .premium-post-item .post-title a,
.dark-mode .featured-title a,
.dark-mode .sub-title a,
.dark-mode .news-title a {
    color: #e0e0e0;
}

.dark-mode .premium-post-item:hover .post-title a,
.dark-mode .featured-title a:hover,
.dark-mode .sub-featured-post:hover .sub-title a,
.dark-mode .latest-news-item:hover .news-title a {
    color: #ed1c24;
}

.dark-mode .featured-summary {
    color: #aaa;
}

.dark-mode .news-meta,
.dark-mode .premium-post-item .post-meta-info {
    color: #888;
}

.dark-mode .read-more-stories {
    border-top-color: #333;
}