.page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(255,85,0,0.7) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-banner-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-banner-breadcrumb {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.page-banner-breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.page-banner-breadcrumb a:hover {
    color: var(--white);
}

.page-banner-breadcrumb span {
    margin: 0 12px;
}

.section-news-main {
    background: var(--gray-100);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.news-empty i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.news-empty p {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.news-empty span {
    font-size: 14px;
    color: var(--gray-500);
}

.news-empty .btn {
    margin-top: 20px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.news-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.news-body {
    padding: 24px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--gray-500);
}

.news-meta i {
    margin-right: 6px;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title a:hover {
    color: var(--primary);
}

.news-excerpt {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-link:hover {
    gap: 10px;
}

.news-pagination {
    display: flex;
    gap: 8px;
    margin-top: 40px;
    justify-content: center;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--gray-300);
    transition: var(--transition);
}

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

.pagination-dots {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: var(--gray-500);
}

.section-cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,85,0,0.1);
}

.cta-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { flex-direction: column; text-align: center; padding: 40px; }
    .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
    .page-banner { height: 300px; }
    .page-banner-title { font-size: 36px; }
    .news-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 30px; }
    .cta-title { font-size: 24px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
