/* ===== News List ===== */
.news-list {
    padding: 80px 0;
    background: var(--light-bg);
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.news-card-full {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card-full:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.news-img {
    height: 300px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-full:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}

.btn-read-more:hover {
    gap: 15px;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination a.prev,
.pagination a.next {
    width: auto;
    padding: 0 15px;
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== News Detail ===== */
.news-detail {
    padding: 80px 0;
    background: var(--light-bg);
    min-height: 600px;
}

.news-detail-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 60px;
    min-height: 500px;
}

.news-detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-detail-header h1 {
    font-size: 32px;
    color: var(--secondary-color);
    line-height: 1.4;
    margin-bottom: 15px;
}

.news-detail-image {
    margin-bottom: 30px;
    overflow: hidden;
}

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

.news-detail-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    padding-bottom: 20px;
}

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

.news-detail-footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .news-detail-content {
        padding: 40px;
    }
    
    .news-detail-header h1 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .news-detail {
        padding: 60px 0;
    }
    
    .news-detail-content {
        padding: 30px 20px;
    }
    
    .news-detail-header h1 {
        font-size: 22px;
    }
    
    .news-detail-body {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .news-card-full {
        grid-template-columns: 1fr;
    }
    
    .news-img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .news-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .news-content h2 {
        font-size: 20px;
    }
}
