/* ============================================
   NEWS SECTION — Horizontal Card & Detail View
   ============================================ */

.news-list-container {
    padding: 60px 0;
}

.news-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Horizontal News Card */
.news-row-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.news-row-card:hover {
    transform: translateX(10px);
}

.news-row-image {
    flex: 0 0 280px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-row-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.news-row-content {
    flex: 1;
}

.news-row-title {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.news-row-teaser {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-row-link {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.news-row-link span {
    font-size: 18px;
}

.news-row-card:hover .news-row-link {
    color: #e94560;
}

/* News Detail view */
.news-detail-container {
    padding-bottom: 60px;
}

.news-detail-category {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.news-detail-title {
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 30px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.news-detail-featured {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.news-detail-image {
    flex: 0 0 45%;
    border-radius: 4px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-intro {
    flex: 1;
}

.news-detail-intro .lead {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.news-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.news-detail-body p {
    margin-bottom: 25px;
}

/* Sidebar styling for News */
.sidebar {
    padding-left: 30px;
}

.sidebar h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a2e;
}

/* Empty State */
.news-empty {
    text-align: center;
    padding: 100px 0;
    color: #888;
}

/* Sidebar & Quick Links */
.sidebar-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #e94560;
}

.quick-links-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-content ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quick-links-content ul li:last-child {
    border-bottom: none;
}

.quick-links-content ul li a {
    color: #4a4a68;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-links-content ul li a::before {
    content: '→';
    color: #e94560;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.quick-links-content ul li a:hover {
    color: #e94560;
    padding-left: 8px;
}

.quick-links-content ul li a:hover::before {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .news-detail-featured {
        flex-direction: column;
    }

    .news-detail-image {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .news-row-card {
        flex-direction: column;
        gap: 20px;
    }

    .news-row-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .news-detail-title {
        font-size: 32px;
    }
}