/* Magazine Layout Styles */
.news-magazine-layout {
    margin: 40px 0;
    font-family: 'Poppins', sans-serif;
}

.news-magazine-layout .row {
    margin: 0;
}

.news-magazine-layout [class*="col-"] {
    padding: 0 15px;
}

/* Left Column Styles */
.left-column-news {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-article-left {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-article-left:hover {
    transform: translateY(-2px);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-article-left:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px 0 0 0;
}

.article-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: #000;
}

.article-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #C99529;
}

.article-excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    margin: 0 0 12px 0;
}

.article-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.separator {
    color: #ccc;
}

/* Center Column Styles */
.center-column-news {
    padding: 0 20px;
}

.main-news-article {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.main-news-article:hover {
    transform: translateY(-2px);
}

.main-article-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.main-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-news-article:hover .main-article-image img {
    transform: scale(1.05);
}

.live-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
}

.live-badge {
    background: #ff0000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-article-content {
    padding: 25px 0 0 0;
}

.main-article-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
    color: #000;
}

.main-article-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-article-title a:hover {
    color: #C99529;
}

.main-article-excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    margin: 0 0 20px 0;
}

.main-article-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    position: relative;
    padding-left: 15px;
    transition: color 0.3s ease;
}

.article-link:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #C99529;
    font-weight: bold;
}

.article-link:hover {
    color: #C99529;
}

/* Right Column Styles */
.right-column-news {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-article-right {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.news-article-right:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-article-right .article-content {
    padding: 0;
}

.news-article-right .article-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
    color: #000;
}

.news-article-right .article-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-article-right .article-title a:hover {
    color: #C99529;
}

.news-article-right .article-excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
    margin: 0 0 8px 0;
}

.news-article-right .article-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .center-column-news {
        padding: 0;
        margin: 30px 0;
    }
    
    .main-article-image {
        height: 250px;
    }
    
    .main-article-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .news-magazine-layout [class*="col-"] {
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .left-column-news,
    .right-column-news {
        gap: 20px;
    }
    
    .article-image {
        height: 180px;
    }
    
    .main-article-image {
        height: 200px;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .main-article-title {
        font-size: 18px;
    }
}
