:root { --logo-gradient: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%); --brand-color: #ff5722; --brand-dark: #1a1a1a; --bg-body: #f4f6f8; --font-head: 'Roboto Condensed', sans-serif; --font-body: 'Inter', sans-serif; --font-logo: 'Oswald', sans-serif; --card-border: #e1e4e8; }
body { font-family: var(--font-body); background-color: var(--bg-body); color: #111; overflow-x: hidden; font-size: 14px; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
a:hover { color: var(--brand-color); }
.filter-tabs .nav-item .nav-link.active { background: transparent !important; }
.section-gap { margin-bottom: 30px; }
.section-title { border-bottom: 2px solid #e0e0e0; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 5px; }
.section-title h3 { font-family: var(--font-head); font-weight: 800; font-size: 18px; text-transform: uppercase; margin: 0; position: relative; }
.section-title h3::after { content: ''; position: absolute; bottom: -7px; left: 0; width: 100%; height: 3px; background: var(--brand-color); }
.view-all-link { font-size: 12px; font-weight: 700; color: var(--brand-color); text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.view-all-link i { transition: transform 0.3s ease; font-size: 10px; }
.view-all-link:hover i { transform: translateX(5px); }
.filter-tabs { background: #fff; border-bottom: 1px solid #e0e0e0; padding: 0; margin-bottom: 30px; }
.filter-tabs .nav-tabs { border: none; }
.filter-tabs .nav-link { color: #666 !important; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 13px; padding: 15px 20px !important; border: none; border-bottom: 3px solid transparent; background: none; border-radius: 0; }
.filter-tabs .nav-link:hover { color: #333 !important; background: #f8f9fa; }
.filter-tabs .nav-link.active { color: var(--brand-color) !important; border-bottom-color: var(--brand-color); background: none; }
.featured-article { background: #fff; border-radius: 8px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: relative; display: block; }
.featured-article .featured-image { height: 400px; overflow: hidden; position: relative; }
.featured-article .featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.featured-article:hover .featured-image img { transform: scale(1.05); }
.featured-article .featured-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 35px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%); color: #fff; }
.featured-article .featured-category { background: var(--brand-color); color: #fff; padding: 5px 12px; border-radius: 3px; font-weight: 700; text-transform: uppercase; font-size: 11px; display: inline-block; margin-bottom: 15px; }
.featured-article .featured-title { font-family: var(--font-head); font-weight: 800; font-size: 32px; line-height: 1.2; margin-bottom: 12px; }
.featured-article .featured-excerpt { font-size: 15px; opacity: 0.9; margin-bottom: 12px; max-width: 600px; }
.featured-article .featured-meta { display: flex; align-items: center; gap: 20px; font-size: 12px; color: rgba(255,255,255,0.8); }
.featured-article .featured-meta i { margin-right: 5px; }
.news-list-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid #e8e8e8; transition: all 0.3s ease; position: relative; }
.news-list-item:first-child { padding-top: 0; }
.news-list-item:last-child { border-bottom: none; }
.news-list-item:hover { background: #fafafa; margin-left: -15px; margin-right: -15px; padding-left: 15px; padding-right: 15px; }
.news-list-thumb { width: 250px; height: 160px; flex-shrink: 0; overflow: hidden; border-radius: 6px; position: relative; }
.news-list-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-list-item:hover .news-list-thumb img { transform: scale(1.08); }
.news-list-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.news-list-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; font-size: 12px; }
.news-list-category { background: var(--brand-color); color: #fff; padding: 3px 10px; border-radius: 3px; font-weight: 700; text-transform: uppercase; font-size: 10px; }
.news-list-date { color: #888; font-weight: 500; }
.news-list-title { font-family: var(--font-head); font-weight: 700; font-size: 22px; line-height: 1.3; margin-bottom: 10px; color: #111; transition: color 0.3s ease; }
.news-list-item:hover .news-list-title { color: var(--brand-color); }
.news-list-excerpt { color: #555; font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.news-list-footer { display: flex; align-items: center; gap: 20px; font-size: 12px; color: #888; }
.news-list-footer i { margin-right: 5px; color: #bbb; }
.news-card { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid var(--card-border); border-bottom: 3px solid var(--card-border); position: relative; top: 0; background: #fff; border-radius: 4px; overflow: hidden; margin-bottom: 15px; }
.news-card:last-child { margin-bottom: 0; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); border-bottom-color: var(--brand-color); border-color: transparent; }
.news-card .img-wrap { overflow: hidden; border-radius: 0; position: relative; height: 150px; }
.news-card .img-wrap img { transition: transform 0.6s ease; width: 100%; height: 100%; object-fit: cover; }
.news-card:hover .img-wrap img { transform: scale(1.1); }
.news-card .card-content { padding: 15px; }
.news-card .cat-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--brand-color); margin-bottom: 4px; display: block; }
.news-card .news-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; line-height: 1.3; margin-top: 5px; margin-bottom: 5px; color: #111; }
.news-card .news-title a { color: inherit; }
.news-card:hover .news-title { color: var(--brand-color); }
.news-card .time-stamp { font-size: 11px; color: #888; font-weight: 600; text-transform: uppercase; display: block; margin-top: 5px; }
.news-card:hover .time-stamp { color: var(--brand-color) !important; }
.related-sections ul { list-style: none; padding: 0; margin: 0; }
.related-sections ul li { margin-bottom: 0; }
.related-sections ul li a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #f0f0f0; color: #333; font-size: 14px; }
.related-sections ul li:last-child a { border-bottom: none; padding-bottom: 0; }
.related-sections ul li a:hover { color: var(--brand-color); }
.related-sections ul li a i { color: #ccc; margin-right: 8px; }
.related-sections ul li a:hover i { color: var(--brand-color); }
.related-sections ul li a .badge { font-size: 11px; font-weight: 600; }
.sticky-sidebar { position: sticky; top: 20px; }
.ad-section-wrapper { width: 100%; background: #f8f9fa; border: 1px dashed #ced4da; margin: 30px 0; padding: 15px; display: flex; justify-content: center; align-items: center; flex-direction: column; border-radius: 6px; }
.ad-section-wrapper.sidebar-ad { margin: 0 0 25px 0; }
.ad-label { font-size: 10px; color: #999; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.ad-box { background: #fff; border: 1px solid #ccc; display: flex; justify-content: center; align-items: center; color: #ccc; font-size: 12px; }
.ad-box-300x250 { width: 300px; height: 250px; max-width: 100%; }
.ad-box-horizontal { width: 728px; height: 90px; max-width: 100%; }
.load-more-wrapper { margin-top: 40px; text-align: center; }
.load-more-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--brand-color); color: #fff; padding: 14px 45px; border: none; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease; }
.load-more-btn:hover { background: #e64a19; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3); }
.load-more-btn.loading i { animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

@media (max-width: 1199px) {
.filter-tabs .nav-link {padding: 10px 15px !important;}
.filter-tabs { margin-bottom: 20px;}
.news-card .news-title { font-size: 14px;}
.news-list-title { font-size: 20px;}
.featured-article .featured-overlay { padding: 20px;}
.featured-article .featured-title { font-size: 26px; margin-bottom: 10px;}
.featured-article .featured-excerpt {font-size: 14px;}
.related-sections ul li a { padding: 10px 0;}
}
@media (max-width: 991px) {
.featured-article .featured-image { height: 320px; }
.featured-article .featured-title { font-size: 26px; }
.news-list-thumb { width: 180px; height: 120px; }
.news-list-title { font-size: 18px; }
.news-list-excerpt { display: none; }
}
@media (max-width: 767px) {
.filter-tabs .nav-link { padding: 12px 12px !important; font-size: 11px; }
.featured-article .featured-image { height: 250px; }
.featured-article .featured-overlay { padding: 20px; }
.featured-article .featured-title { font-size: 20px; }
.featured-article .featured-excerpt { display: none; }
.news-list-item { flex-direction: column; gap: 12px; }
.news-list-thumb { width: 100%; height: 180px; }
.news-list-title { font-size: 17px; }
.section-title h3 { font-size: 16px; }
.load-more-btn { padding: 12px 30px; font-size: 12px; }
.news-card .img-wrap { height: 120px; }
}