/* ===== Breadcrumb ===== */
.breadcrumb-bar {
    background: var(--gray-100); border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}
.breadcrumb-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--gray-500);
}
.breadcrumb-inner a { color: var(--gray-500); transition: color 0.3s; }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-inner .sep { color: var(--gray-300); }
.breadcrumb-inner .current { color: var(--primary); font-weight: 500; }

/* ===== News Main Layout ===== */
.news-main {
    max-width: 1280px; margin: 0 auto; padding: 60px 40px 80px;
    min-height: 600px;
}

/* News Section Header */
.news-section-header {
    text-align: center; margin-bottom: 50px;
}
.news-section-header .en-tag {
    display: inline-block; font-size: 13px; color: var(--gold);
    letter-spacing: 4px; text-transform: uppercase; font-weight: 600; margin-bottom: 12px;
}
.news-section-header h2 {
    font-size: 36px; font-weight: 700; color: var(--primary);
    letter-spacing: 3px; margin-bottom: 16px;
}
.news-section-header .desc {
    font-size: 15px; color: var(--gray-500); line-height: 1.8; max-width: 600px; margin: 0 auto;
}
.news-section-header .divider {
    width: 60px; height: 3px; background: var(--gold); margin: 20px auto 0; border-radius: 2px;
}

/* News List - Horizontal Card Style */
.news-list {
    display: flex; flex-direction: column; gap: 24px;
}
.news-item {
    display: flex; gap: 28px; background: var(--white);
    border-radius: 14px; overflow: hidden; box-shadow: var(--shadow);
    transition: all 0.4s; cursor: pointer; text-decoration: none; color: inherit;
    border: 1px solid var(--gray-200);
}
.news-item:hover {
    box-shadow: var(--shadow-lg); transform: translateX(6px);
    border-color: var(--primary);
}
.news-item-img {
    position: relative; width: 320px; min-width: 320px; height: 200px; overflow: hidden;
    flex-shrink: 0;
}
.news-item-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s;
}
.news-item:hover .news-item-img img { transform: scale(1.06); }
.news-item-date-badge {
    position: absolute; bottom: 0; left: 0; background: var(--primary);
    color: var(--white); padding: 6px 16px; font-size: 13px; letter-spacing: 1px;
    border-radius: 0 8px 0 0;
}
.news-item-date-badge .day { font-size: 20px; font-weight: 700; }
.news-item-date-badge .year { font-size: 11px; opacity: 0.8; margin-left: 4px; }
.news-item-body {
    flex: 1; padding: 24px 28px 24px 0; display: flex; flex-direction: column; justify-content: center;
}
.news-item-title {
    font-size: 18px; font-weight: 600; color: var(--dark); line-height: 1.6;
    margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden; transition: color 0.3s;
}
.news-item:hover .news-item-title { color: var(--primary); }
.news-item-desc {
    font-size: 14px; color: var(--gray-500); line-height: 1.8;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px;
}
.news-item-footer {
    display: flex; align-items: center; gap: 16px; margin-top: auto;
}
.news-item-meta {
    font-size: 13px; color: var(--gray-500); display: flex; align-items: center; gap: 6px;
}
.news-item-more {
    margin-left: auto; display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; color: var(--primary); font-weight: 500; transition: gap 0.3s;
}
.news-item:hover .news-item-more { gap: 8px; }
.news-item-more::after { content: '→'; }

/* Pagination */
.news-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 50px; padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}
.page-btn {
    width: 40px; height: 40px; border-radius: 8px; display: flex;
    align-items: center; justify-content: center; font-size: 14px;
    cursor: pointer; transition: all 0.3s; border: 1px solid var(--gray-300);
    color: var(--gray-700);
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-btn.prev, .page-btn.next { width: auto; padding: 0 16px; }

/* ===== News Responsive ===== */
@media (max-width: 900px) {
    .news-section-header h2 { font-size: 30px; }
    .news-item { flex-direction: column; }
    .news-item-img { width: 100%; min-width: 100%; height: 200px; }
}
@media (max-width: 768px) {
    .news-main { padding: 30px 16px 50px; }
    .news-section-header { margin-bottom: 30px; }
    .news-section-header h2 { font-size: 24px; }
    .news-section-header .desc { font-size: 13px; }
    .news-item { gap: 0; }
    .news-item-img { height: 180px; }
    .news-item-body { padding: 16px 18px; }
    .news-item-title { font-size: 16px; }
    .news-item-desc { font-size: 13px; }
}
@media (max-width: 480px) {
    .news-section-header h2 { font-size: 20px; }
    .news-item-img { height: 150px; }
}
