:root { --brand-color: #ff5722; --brand-dark: #e64a19; --bg-body: #f4f6f8; --font-head: 'Roboto Condensed', sans-serif; --font-body: 'Inter', sans-serif; --text-muted: #6c757d; --dark-bg: #1a1a2e; --dark-bg-secondary: #16213e; }
body { font-family: var(--font-body); background-color: var(--bg-body); color: #111; font-size: 14px; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
a:hover { color: var(--brand-color); }
.search-header { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); padding: 50px 0; position: relative; overflow: hidden; }
.search-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.search-header-content { position: relative; z-index: 1; }
.search-box-wrapper { max-width: 700px; margin: 0 auto; }
.search-box { display: flex; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3); }
.search-box input { flex: 1; padding: 20px 25px; border: none; font-size: 16px; font-family: var(--font-body); outline: none; }
.search-box input::placeholder { color: #aaa; }
.search-box button { padding: 20px 35px; background: var(--brand-color); border: none; color: #fff; font-size: 18px; cursor: pointer; transition: all 0.3s ease; }
.search-box button:hover { background: var(--brand-dark); }
.search-info { text-align: center; margin-top: 25px; color: rgba(255, 255, 255, 0.8); font-size: 14px; }
.search-info .search-query { color: var(--brand-color); font-weight: 700; }
.search-info .result-count { color: #fff; font-weight: 600; }
.search-content { padding: 40px 0 60px; }
.news-listing-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); padding: 25px; }
.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-title mark { background: rgba(255, 87, 34, 0.2); color: var(--brand-color); padding: 0 3px; border-radius: 3px; }
.news-list-excerpt { color: #555; font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.news-list-excerpt mark { background: rgba(255, 87, 34, 0.15); color: #333; padding: 0 2px; border-radius: 2px; }
.news-list-footer { display: flex; align-items: center; gap: 20px; font-size: 12px; color: #888; }
.news-list-footer i { margin-right: 5px; color: #bbb; }
.load-more-wrapper { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 0 20px; gap: 15px; }
.spinner-loader { width: 45px; height: 45px; border: 4px solid #f0f0f0; border-top: 4px solid var(--brand-color); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.load-more-text { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.search-sidebar { position: sticky; top: 20px; }
.sidebar-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); overflow: hidden; margin-bottom: 25px; }
.sidebar-card-header { padding: 18px 20px; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 10px; }
.sidebar-card-header h4 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #111; margin: 0; }
.sidebar-card-header i { color: var(--brand-color); font-size: 14px; }
.sidebar-card-body { padding: 20px; }
.category-list { display: flex; flex-direction: column; gap: 8px; border: none !important; }
.category-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 15px; background: #f8f9fa; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; }
.category-item:hover { background: rgba(255, 87, 34, 0.08); }
.category-item.active { background: var(--brand-color); }
.category-item .cat-name { font-size: 13px; font-weight: 600; color: #333; display: flex; align-items: center; gap: 10px; }
.category-item.active .cat-name { color: #fff; }
.category-item .cat-name i { font-size: 12px; color: var(--brand-color); }
.category-item.active .cat-name i { color: #fff; }
.category-item .cat-count { font-size: 11px; font-weight: 600; color: #999; background: #fff; padding: 3px 10px; border-radius: 50px; }
.category-item.active .cat-count { background: rgba(255, 255, 255, 0.2); color: #fff; }
.popular-searches { display: flex; flex-wrap: wrap; gap: 10px; }
.popular-search-tag { padding: 8px 16px; background: #f5f5f5; color: #555; font-size: 12px; font-weight: 600; border-radius: 50px; transition: all 0.3s ease; }
.popular-search-tag:hover { background: var(--brand-color); color: #fff; }
.no-results { text-align: center; padding: 80px 40px; background: #fff; border-radius: 12px; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); }
.no-results .icon-wrap { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 87, 34, 0.05) 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; }
.no-results .icon-wrap i { font-size: 40px; color: var(--brand-color); }
.no-results h3 { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: #111; margin-bottom: 12px; }
.no-results p { font-size: 14px; color: var(--text-muted); max-width: 380px; margin: 0 auto 25px; line-height: 1.7; }
.no-results .suggestions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 25px; }
.no-results .suggestion-tag { padding: 10px 20px; background: #f5f5f5; color: #555; font-size: 13px; font-weight: 600; border-radius: 50px; transition: all 0.3s ease; }
.no-results .suggestion-tag:hover { background: var(--brand-color); color: #fff; }
.no-results .btn-home { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; background: var(--brand-color); color: #fff; border-radius: 50px; font-size: 14px; font-weight: 700; transition: all 0.3s ease; }
.no-results .btn-home:hover { background: var(--brand-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3); color: #fff; }
@media (max-width: 991px) {
.search-header { padding: 40px 0; }
.news-list-thumb { width: 200px; height: 130px; }
.news-list-title { font-size: 18px; }
.search-sidebar { position: relative; top: 0; margin-top: 30px; }
}
@media (max-width: 767px) {
.search-header { padding: 30px 0; }
.search-box { flex-direction: column; border-radius: 12px; }
.search-box input { padding: 18px 20px; }
.search-box button { padding: 15px 25px; }
.search-content { padding: 30px 0 50px; }
.news-listing-card { padding: 20px; }
.news-list-item { flex-direction: column; gap: 15px; }
.news-list-item:hover { margin-left: -10px; margin-right: -10px; padding-left: 10px; padding-right: 10px; }
.news-list-thumb { width: 100%; height: 180px; }
.news-list-title { font-size: 18px; }
}
@media (max-width: 575px) {
.news-list-thumb { height: 160px; }
.news-list-title { font-size: 16px; }
.news-list-excerpt { font-size: 13px; }
.no-results { padding: 50px 25px; }
.no-results .icon-wrap { width: 80px; height: 80px; }
.no-results .icon-wrap i { font-size: 32px; }
.no-results h3 { font-size: 22px; }
}