/**
 * Thanos Bola Theme - Bola.com Exact Style
 * Matching https://www.bola.com design exactly
 *
 * @package Thanos_Bola
 */

/* ============================================
   1. CSS VARIABLES - BOLA.COM EXACT
   ============================================ */
:root {
    /* Bola.com Colors */
    --bola-green: #2D8348;
    --bola-green-dark: #236339;
    --bola-yellow: #D1DB00;
    --bola-red: #E53935;
    --bola-white: #ffffff;
    --bola-black: #000000;
    --bola-text: #333333;
    --bola-text-light: #666666;
    --bola-text-muted: #999999;
    --bola-bg: #F5F5F5;
    --bola-bg-white: #ffffff;
    --bola-border: #e0e0e0;
    --bola-border-light: #eaeaea;

    /* Typography */
    --bola-font-heading: 'Montserrat', 'Arial', sans-serif;
    --bola-font-body: 'PT Sans', 'Arial', sans-serif;
    --bola-font-size-base: 14px;
    --bola-font-size-sm: 12px;
    --bola-font-size-xs: 11px;
    --bola-font-size-lg: 16px;
    --bola-line-height: 1.5;

    /* Layout */
    --bola-container: 980px;
    --bola-header-height: 50px;
    --bola-sidebar-width: 300px;
    --bola-gap: 20px;
    --bola-gap-sm: 12px;
    --bola-gap-xs: 8px;

    /* Misc */
    --bola-radius: 4px;
    --bola-radius-sm: 3px;
    --bola-radius-pill: 16px;
    --bola-transition: 0.2s ease;
    --bola-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: var(--bola-font-size-base);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto !important;
    position: static !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--bola-font-body);
    font-size: 1rem;
    line-height: var(--bola-line-height);
    color: var(--bola-text);
    background-color: var(--bola-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh;
    position: static !important;
}

/* WordPress admin bar fix */
body.admin-bar {
    padding-top: 0;
}

/* Main wrapper - ensure no overflow issues */
#page,
.site {
    overflow: visible !important;
    height: auto !important;
    min-height: 100vh;
    position: relative;
}

.site-content {
    overflow: visible !important;
}

/* Fix scroll when modal is open */
body.modal-open,
body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bola-font-heading);
    font-weight: 700;
    color: var(--bola-black);
    margin: 0 0 0.5em;
    line-height: 1.3;
}

a {
    color: var(--bola-text);
    text-decoration: none;
    transition: color var(--bola-transition);
}

a:hover {
    color: var(--bola-green);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ============================================
   3. LAYOUT - CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--bola-container);
    margin: 0 auto;
    padding: 0 15px;
}

.site-content {
    background: var(--bola-bg);
    min-height: 60vh;
    overflow: visible !important;
    height: auto !important;
}

.content-wrapper {
    display: flex;
    gap: var(--bola-gap);
    padding: var(--bola-gap) 0;
}

.content-wrapper.has-sidebar .main-content {
    flex: 1;
    min-width: 0;
}

.content-wrapper .sidebar {
    width: var(--bola-sidebar-width);
    flex-shrink: 0;
}

.content-wrapper.no-sidebar .main-content {
    width: 100%;
}

/* Sidebar Position Options */
.content-wrapper.sidebar-left {
    flex-direction: row-reverse;
}

.content-wrapper.sidebar-right {
    flex-direction: row;
}

/* ============================================
   3.5 TOP BAR - SECONDARY NAVIGATION
   ============================================ */
.top-bar {
    background: #1a472a;
    padding: 6px 0;
    font-size: var(--bola-font-size-xs);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-left .current-date {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left .current-date i {
    color: var(--bola-yellow);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Top Bar Secondary Menu */
.top-bar-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-menu li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--bola-font-size-xs);
    transition: color var(--bola-transition);
}

.top-bar-menu li a:hover {
    color: var(--bola-white);
}

/* Top Bar Social Links */
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-social .social-link {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    border-radius: 3px;
    transition: all var(--bola-transition);
}

.top-bar-social .social-link:hover {
    color: var(--bola-white);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive: Hide top-bar on mobile */
@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
}

/* ============================================
   4. HEADER - BOLA.COM 3-PART STYLE
   ============================================ */
.site-header {
    background: var(--bola-green);
    position: relative;
    z-index: 1000;
}

.site-header.fixed-header {
    position: sticky;
    top: 0;
}

/* ----------------------------------------
   4.1 HEADER TOP - Logo + Big Search
   ---------------------------------------- */
.header-top {
    background: var(--bola-green);
    padding: 12px 0;
}

.header-top-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-logo .site-title {
    font-family: var(--bola-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bola-white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.header-logo .site-title:hover {
    color: var(--bola-yellow);
}

/* Header Search - Bola.com Big Search Style */
.header-search {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.header-search-form {
    display: flex;
    align-items: center;
    background: var(--bola-white);
    border-radius: var(--bola-radius);
    overflow: hidden;
    position: relative;
}

.header-search-icon-left {
    position: absolute;
    left: 14px;
    color: var(--bola-text-muted);
    font-size: 14px;
    pointer-events: none;
}

.header-search-input {
    flex: 1;
    border: none;
    padding: 12px 14px 12px 40px;
    font-size: var(--bola-font-size-sm);
    background: transparent;
    color: var(--bola-text);
    outline: none;
}

.header-search-input::placeholder {
    color: var(--bola-text-muted);
}

.header-search-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bola-green-dark);
    color: var(--bola-white);
    border: none;
    padding: 12px 20px;
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--bola-transition);
}

.header-search-button:hover {
    background: var(--bola-black);
}

.header-search-button i {
    font-size: 12px;
}

/* Popular Search Dropdown */
.search-popular-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bola-white);
    border-radius: 0 0 var(--bola-radius) var(--bola-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
}

.search-popular-header {
    padding: 12px 14px;
    font-size: var(--bola-font-size-xs);
    font-weight: 600;
    color: var(--bola-text-muted);
    text-transform: uppercase;
    border-bottom: 1px solid var(--bola-border-light);
}

.search-popular-list {
    padding: 8px 0;
}

.search-popular-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--bola-text);
    transition: background var(--bola-transition);
}

.search-popular-item:hover {
    background: var(--bola-bg);
}

.search-popular-item i {
    color: var(--bola-green);
    font-size: 12px;
}

/* Mobile Toggle in Header Top */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--bola-white);
    background: rgba(255,255,255,0.1);
    border-radius: var(--bola-radius);
    margin-left: auto;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--bola-white);
    transition: all var(--bola-transition);
}

/* ----------------------------------------
   4.2 HEADER MENU - Main Navigation
   ---------------------------------------- */
.header-menu {
    background: var(--bola-green-dark);
}

.header-menu-inner {
    display: flex;
    align-items: center;
}

/* Slim Logo (shown when scrolled) */
.header-logo-slim {
    display: none;
    align-items: center;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.header-logo-slim img {
    height: 28px;
    width: auto;
}

.header-logo-slim span {
    font-family: var(--bola-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--bola-white);
}

/* Menu List */
.header-menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.header-menu-list > li {
    position: relative;
}

.header-menu-list > li > a {
    display: block;
    padding: 14px 16px;
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    color: var(--bola-white);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background var(--bola-transition);
}

.header-menu-list > li > a:hover,
.header-menu-list > li.current-menu-item > a,
.header-menu-list > li.current_page_item > a {
    background: rgba(0,0,0,0.2);
}

/* Dropdown Submenu */
.header-menu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bola-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--bola-transition);
    z-index: 100;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menu-list > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-menu-list .sub-menu li a {
    display: block;
    padding: 12px 16px;
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text);
    border-bottom: 1px solid var(--bola-border-light);
}

.header-menu-list .sub-menu li:last-child a {
    border-bottom: none;
}

.header-menu-list .sub-menu li a:hover {
    background: var(--bola-bg);
    color: var(--bola-green);
}

/* Search Toggle (compact) */
.header-menu-search {
    margin-left: auto;
}

.search-toggle-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--bola-white);
    transition: background var(--bola-transition);
}

.search-toggle-compact:hover {
    background: rgba(255,255,255,0.1);
}

/* ----------------------------------------
   4.3 HEADER SUBCHANNEL - Sub-category Menu
   ---------------------------------------- */
.header-subchannel {
    background: var(--bola-bg-white);
    border-bottom: 1px solid var(--bola-border);
}

.header-subchannel-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.subchannel-title {
    flex-shrink: 0;
}

.subchannel-title a {
    display: block;
    padding: 12px 0;
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-base);
    font-weight: 700;
    color: var(--bola-green);
    text-transform: uppercase;
}

.subchannel-list {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.subchannel-list::-webkit-scrollbar {
    display: none;
}

.subchannel-item a {
    display: block;
    padding: 12px 16px;
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all var(--bola-transition);
}

.subchannel-item a:hover,
.subchannel-item.active a {
    color: var(--bola-green);
    border-bottom-color: var(--bola-green);
}

/* ----------------------------------------
   4.4 HEADER RESPONSIVE
   ---------------------------------------- */
@media (max-width: 991px) {
    .header-top-inner {
        flex-wrap: wrap;
    }

    .header-search {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-menu {
        display: none;
    }

    .header-subchannel-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .subchannel-title {
        width: 100%;
        border-bottom: 1px solid var(--bola-border-light);
    }

    .subchannel-list {
        width: 100%;
        padding: 8px 0;
    }
}

@media (max-width: 576px) {
    .header-top {
        padding: 10px 0;
    }

    .header-logo img {
        height: 32px;
    }

    .header-search-input {
        padding: 10px 10px 10px 36px;
        font-size: var(--bola-font-size-xs);
    }

    .header-search-button {
        padding: 10px 14px;
    }

    .header-search-button span {
        display: none;
    }
}

/* Legacy support for old header classes */
.header-main {
    height: var(--bola-header-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-branding {
    flex-shrink: 0;
}

.site-branding a {
    display: flex;
    align-items: center;
}

.site-branding img {
    height: 32px;
    width: auto;
}

.site-branding .site-title {
    font-family: var(--bola-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bola-white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    display: block;
    padding: 0 14px;
    height: var(--bola-header-height);
    line-height: var(--bola-header-height);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    color: var(--bola-white);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background var(--bola-transition);
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a {
    background: rgba(0,0,0,0.15);
}

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bola-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--bola-transition);
    z-index: 100;
}

.primary-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu a {
    display: block;
    padding: 10px 16px;
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text);
    border-bottom: 1px solid var(--bola-border-light);
}

.primary-menu .sub-menu a:hover {
    background: var(--bola-bg);
    color: var(--bola-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bola-white);
    border-radius: 50%;
    transition: background var(--bola-transition);
}

.search-toggle:hover {
    background: rgba(255,255,255,0.15);
}

/* ============================================
   5. BREAKING NEWS - YELLOW BADGE STYLE
   ============================================ */
.breaking-news-bar {
    background: var(--bola-bg);
    padding: 10px 0;
    border-bottom: 1px solid var(--bola-border);
}

.breaking-news-inner {
    display: flex;
    align-items: center;
    gap: var(--bola-gap-sm);
}

.breaking-label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bola-yellow);
    color: var(--bola-black);
    padding: 6px 12px;
    border-radius: var(--bola-radius-pill);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breaking-label i {
    font-size: 10px;
}

.breaking-news-ticker {
    flex-grow: 1;
    overflow: hidden;
}

.ticker-list {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
    flex-shrink: 0;
    padding-right: 50px;
}

.ticker-item a {
    font-size: var(--bola-font-size-sm);
    font-weight: 500;
    color: var(--bola-text);
}

.ticker-item a:hover {
    color: var(--bola-green);
}

.ticker-time {
    margin-left: 8px;
    font-size: var(--bola-font-size-xs);
    color: var(--bola-text-muted);
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.breaking-nav {
    display: flex;
    gap: 4px;
}

.breaking-nav button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bola-border);
    border-radius: var(--bola-radius-sm);
    color: var(--bola-text);
    font-size: 10px;
}

.breaking-nav button:hover {
    background: var(--bola-green);
    color: var(--bola-white);
}

/* ============================================
   5.5. TAGS BOX - BOLA.COM STYLE
   ============================================ */
.tags-box {
    background: var(--bola-bg-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--bola-border-light);
}

.tags-box-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tags-box-nav {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bola-bg);
    border: 1px solid var(--bola-border);
    border-radius: 50%;
    color: var(--bola-text-muted);
    font-size: 10px;
    cursor: pointer;
    transition: all var(--bola-transition);
}

.tags-box-nav:hover {
    background: var(--bola-green);
    border-color: var(--bola-green);
    color: var(--bola-white);
}

.tags-box-nav.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.tags-box-wrapper {
    flex: 1;
    overflow: hidden;
}

.tags-box-list {
    display: flex;
    gap: 8px;
    transition: transform 0.3s ease;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tags-box-item {
    flex-shrink: 0;
}

.tags-box-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bola-bg);
    border: 1px solid var(--bola-border);
    border-radius: var(--bola-radius-pill);
    font-size: var(--bola-font-size-sm);
    font-weight: 500;
    color: var(--bola-text);
    transition: all var(--bola-transition);
    white-space: nowrap;
}

.tags-box-link:hover {
    background: var(--bola-green);
    border-color: var(--bola-green);
    color: var(--bola-white);
}

.tags-box-name {
    font-family: var(--bola-font-heading);
}

@media (max-width: 768px) {
    .tags-box {
        padding: 10px 0;
    }

    .tags-box-nav {
        display: none;
    }

    .tags-box-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tags-box-wrapper::-webkit-scrollbar {
        display: none;
    }

    .tags-box-link {
        padding: 5px 12px;
        font-size: var(--bola-font-size-xs);
    }
}

/* ============================================
   6. HERO SECTION - SINGLE LARGE IMAGE
   ============================================ */
.hero-section {
    background: var(--bola-bg-white);
    padding: var(--bola-gap) 0;
}

.hero-bola {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--bola-radius);
}

.hero-bola .hero-image {
    position: relative;
    width: 100%;
    padding-bottom: 50%; /* 2:1 aspect ratio */
}

.hero-bola .hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bola .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.hero-bola .hero-category {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bola-red);
    color: var(--bola-white);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--bola-radius-sm);
    margin-bottom: 10px;
}

.hero-bola .hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bola-white);
    line-height: 1.3;
    margin: 0 0 10px;
}

.hero-bola .hero-excerpt {
    font-size: var(--bola-font-size-sm);
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0;
}

.hero-bola:hover .hero-image img {
    transform: scale(1.03);
    transition: transform 0.4s ease;
}

/* Hero Sub Posts (below main hero) */
.hero-sub-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bola-gap-sm);
    margin-top: var(--bola-gap-sm);
}

.hero-sub-item {
    position: relative;
    border-radius: var(--bola-radius);
    overflow: hidden;
}

.hero-sub-item .sub-image {
    position: relative;
    padding-bottom: 65%;
}

.hero-sub-item .sub-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-sub-item .sub-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 12px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.hero-sub-item .sub-title {
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    color: var(--bola-white);
    line-height: 1.4;
    margin: 0;
}

/* ============================================
   7. ARTICLE LIST - HORIZONTAL STYLE (BOLA.COM)
   ============================================ */
.article-list {
    background: var(--bola-bg-white);
}

.article-item {
    display: flex;
    gap: var(--bola-gap-sm);
    padding: var(--bola-gap-sm) 0;
    border-bottom: 1px solid var(--bola-border-light);
}

.article-item:last-child {
    border-bottom: none;
}

.article-thumb {
    flex-shrink: 0;
    width: 120px;
}

.article-thumb a {
    display: block;
    position: relative;
    padding-bottom: 66.67%;
    border-radius: var(--bola-radius-sm);
    overflow: hidden;
}

.article-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--bola-transition);
}

.article-item:hover .article-thumb img {
    transform: scale(1.05);
}

.article-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category {
    display: inline-block;
    padding: 2px 8px;
    background: var(--bola-red);
    color: var(--bola-white);
    font-family: var(--bola-font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--bola-radius-sm);
    margin-bottom: 6px;
    align-self: flex-start;
}

.article-category.cat-timnas { background: #1565C0; }
.article-category.cat-liga-1 { background: #E53935; }
.article-category.cat-liga-inggris { background: #7B1FA2; }
.article-category.cat-liga-spanyol { background: #F57C00; }
.article-category.cat-liga-italia { background: #00897B; }
.article-category.cat-liga-champions { background: #1A237E; }

.article-title {
    font-size: var(--bola-font-size-base);
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px;
    color: var(--bola-black);
}

.article-title a {
    color: inherit;
}

.article-title a:hover {
    color: var(--bola-green);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--bola-font-size-xs);
    color: var(--bola-text-muted);
}

.article-meta .meta-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   8. SECTION HEADERS
   ============================================ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin-bottom: var(--bola-gap-sm);
    border-bottom: 2px solid var(--bola-green);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--bola-font-size-lg);
    font-weight: 700;
    color: var(--bola-black);
    margin: 0;
}

.section-title i {
    color: var(--bola-green);
}

.view-all {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--bola-font-size-xs);
    font-weight: 600;
    color: var(--bola-green);
    text-transform: uppercase;
}

.view-all:hover {
    color: var(--bola-green-dark);
}

/* ============================================
   9. HOME SECTIONS
   ============================================ */
.home-section {
    background: var(--bola-bg-white);
    padding: var(--bola-gap);
    margin-bottom: var(--bola-gap);
    border-radius: var(--bola-radius);
}

/* Berita Utama (Main News) Section */
.berita-utama-section .article-list {
    display: flex;
    flex-direction: column;
}

/* Popular Section - Numbered List */
.popular-section .popular-posts-list {
    display: flex;
    flex-direction: column;
}

.popular-post-item {
    display: flex;
    align-items: center;
    gap: var(--bola-gap-sm);
    padding: var(--bola-gap-sm) 0;
    border-bottom: 1px solid var(--bola-border-light);
}

.popular-post-item:last-child {
    border-bottom: none;
}

.popular-rank {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bola-bg);
    color: var(--bola-text-muted);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 700;
    border-radius: var(--bola-radius-sm);
}

.popular-rank.top-three {
    background: var(--bola-green);
    color: var(--bola-white);
}

.popular-thumb {
    flex-shrink: 0;
    width: 80px;
}

.popular-thumb a {
    display: block;
    position: relative;
    padding-bottom: 66.67%;
    border-radius: var(--bola-radius-sm);
    overflow: hidden;
}

.popular-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-content {
    flex: 1;
    min-width: 0;
}

.popular-title {
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.popular-title a {
    color: var(--bola-black);
}

.popular-title a:hover {
    color: var(--bola-green);
}

/* ============================================
   10. SIDEBAR - BOLA.COM STYLE
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--bola-gap);
}

.widget {
    background: var(--bola-bg-white);
    padding: var(--bola-gap);
    border-radius: var(--bola-radius);
}

.widget-title {
    font-size: var(--bola-font-size-base);
    font-weight: 700;
    color: var(--bola-black);
    padding-bottom: 10px;
    margin-bottom: var(--bola-gap-sm);
    border-bottom: 2px solid var(--bola-green);
}

/* Sidebar Article List */
.widget .article-item {
    padding: var(--bola-gap-xs) 0;
}

.widget .article-thumb {
    width: 80px;
}

.widget .article-title {
    font-size: var(--bola-font-size-sm);
}

/* Ad Widget */
.widget-ad {
    padding: 0;
    background: transparent;
}

.widget-ad img {
    width: 100%;
    border-radius: var(--bola-radius);
}

/* Trending Posts Widget - Bola.com Style */
.trending-posts-list {
    display: flex;
    flex-direction: column;
}

.trending-post-item {
    display: flex;
    align-items: center;
    gap: var(--bola-gap-sm);
    padding: var(--bola-gap-xs) 0;
    border-bottom: 1px solid var(--bola-border-light);
}

.trending-post-item:last-child {
    border-bottom: none;
}

.trending-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bola-green);
    color: var(--bola-white);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-xs);
    font-weight: 700;
    border-radius: var(--bola-radius-sm);
}

.trending-thumb {
    flex-shrink: 0;
    width: 70px;
}

.trending-thumb a {
    display: block;
    position: relative;
    padding-bottom: 66.67%;
    border-radius: var(--bola-radius-sm);
    overflow: hidden;
}

.trending-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-thumb-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bola-bg);
}

.trending-content {
    flex: 1;
    min-width: 0;
}

.trending-content .category-badge {
    font-size: 9px;
    padding: 2px 6px;
    margin-bottom: 4px;
    display: inline-block;
}

.trending-title {
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 4px;
}

.trending-title a {
    color: var(--bola-black);
}

.trending-title a:hover {
    color: var(--bola-green);
}

.trending-time {
    font-size: var(--bola-font-size-xs);
    color: var(--bola-text-muted);
}

/* Latest Posts Widget */
.latest-posts-list {
    display: flex;
    flex-direction: column;
}

.latest-post-item {
    display: flex;
    gap: var(--bola-gap-xs);
    padding: var(--bola-gap-xs) 0;
    border-bottom: 1px solid var(--bola-border-light);
}

.latest-post-item:last-child {
    border-bottom: none;
}

/* Social Follow Widget */
.social-follow-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-follow-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--bola-radius);
    color: var(--bola-white);
    font-size: 16px;
    transition: transform 0.2s ease;
}

.social-follow-list a:hover {
    transform: scale(1.1);
}

.social-follow-list .social-facebook { background: #1877f2; }
.social-follow-list .social-twitter { background: #1da1f2; }
.social-follow-list .social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-follow-list .social-youtube { background: #ff0000; }
.social-follow-list .social-tiktok { background: #000000; }
.social-follow-list .social-telegram { background: #0088cc; }

/* Newsletter Widget */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--bola-border);
    border-radius: var(--bola-radius);
    font-size: var(--bola-font-size-sm);
}

.newsletter-form button {
    width: 100%;
    padding: 10px;
    background: var(--bola-green);
    color: var(--bola-white);
    border: none;
    border-radius: var(--bola-radius);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.newsletter-form button:hover {
    background: var(--bola-green-dark);
}

/* Sticky Sidebar */
.sidebar.sticky-sidebar {
    position: sticky;
    top: calc(var(--bola-header-height, 50px) + 20px);
    height: fit-content;
    max-height: calc(100vh - var(--bola-header-height, 50px) - 40px);
    overflow-y: auto;
    align-self: flex-start;
}

/* Custom scrollbar for sticky sidebar */
.sidebar.sticky-sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar.sticky-sidebar::-webkit-scrollbar-track {
    background: var(--bola-border-light);
    border-radius: 2px;
}

.sidebar.sticky-sidebar::-webkit-scrollbar-thumb {
    background: var(--bola-text-muted);
    border-radius: 2px;
}

.sidebar.sticky-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--bola-green);
}

/* Disable sticky on mobile */
@media (max-width: 991px) {
    .sidebar.sticky-sidebar {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
}

.sidebar.sticky-sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar.sticky-sidebar::-webkit-scrollbar-thumb {
    background: var(--bola-border);
    border-radius: 2px;
}

/* ============================================
   10.5 ADS MANAGEMENT
   ============================================ */
.thanos-ad {
    margin: 0;
    text-align: center;
    line-height: 0;
}

/* Header Ad - Below header banner */
.thanos-ad.ad-header {
    background: var(--bola-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--bola-border);
}

.thanos-ad.ad-header img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Sidebar Top Ad */
.thanos-ad.ad-sidebar_top {
    margin-bottom: var(--bola-gap);
}

.thanos-ad.ad-sidebar_top img {
    width: 100%;
    height: auto;
}

/* In-Content Ad */
.thanos-ad.ad-content {
    margin: var(--bola-gap) 0;
    padding: var(--bola-gap-sm);
    background: var(--bola-bg);
    border-radius: var(--bola-radius);
}

/* Footer Banner Ad */
.footer-banner-ad {
    background: var(--bola-bg);
    padding: 20px 0;
    text-align: center;
}

.footer-banner-ad img {
    max-width: 100%;
    height: auto;
}

/* Responsive Ads */
@media (max-width: 767px) {
    .thanos-ad.ad-header {
        padding: 10px 15px;
    }

    .thanos-ad.ad-content {
        margin: var(--bola-gap-sm) 0;
    }
}

/* ============================================
   11. FOOTER - BOLA.COM EXACT STYLE
   ============================================ */
.site-footer {
    background: var(--bola-bg);
    border-top: 1px solid var(--bola-border);
    margin-top: var(--bola-gap);
}

/* ----------------------------------------
   11.1 Footer Widgets Grid
   ---------------------------------------- */
.footer-widgets {
    padding: 30px 0;
    border-bottom: 1px solid var(--bola-border);
}

.footer-widgets-grid {
    display: grid;
    gap: var(--bola-gap);
}

.footer-widgets-grid.columns-1 { grid-template-columns: 1fr; }
.footer-widgets-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
.footer-widgets-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
.footer-widgets-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }

.footer-widget-area .widget {
    background: transparent;
    padding: 0;
}

.footer-widget-area .widget-title {
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-base);
    font-weight: 700;
    color: var(--bola-black);
    margin-bottom: var(--bola-gap-sm);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bola-green);
}

.footer-widget-area .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget-area .widget ul li {
    padding: 6px 0;
    border-bottom: 1px solid var(--bola-border-light);
}

.footer-widget-area .widget ul li:last-child {
    border-bottom: none;
}

.footer-widget-area .widget ul li a {
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text);
    transition: color var(--bola-transition);
}

.footer-widget-area .widget ul li a:hover {
    color: var(--bola-green);
}

/* ----------------------------------------
   11.2 Footer Bottom - Bola.com Style (Horizontal)
   ---------------------------------------- */
.footer-bottom {
    padding: 20px 0;
    background: var(--bola-bg);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Footer Copyright */
.footer-copyright {
    font-size: var(--bola-font-size-xs);
    color: var(--bola-text-muted);
}

.footer-copyright a {
    color: var(--bola-green);
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Footer Navigation - Horizontal Menu (Bola.com Style) */
.footer-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    padding: 0;
    border: none;
}

.footer-menu li a {
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text);
    transition: color var(--bola-transition);
    white-space: nowrap;
}

.footer-menu li a:hover {
    color: var(--bola-green);
}

/* Footer Social Links - Bola.com Style */
.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social .social-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bola-green);
    color: var(--bola-white);
    font-size: 12px;
    border-radius: 4px;
    transition: all var(--bola-transition);
}

.footer-social .social-link:hover {
    background: var(--bola-green-dark, #236339);
    transform: translateY(-2px);
}

/* ----------------------------------------
   11.3 Network Links Section
   ---------------------------------------- */
.network-links-section {
    padding: 15px 0;
    border-bottom: 1px solid var(--bola-border);
}

.network-links-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.network-links-label {
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-xs);
    font-weight: 700;
    color: var(--bola-text);
    text-transform: uppercase;
}

.network-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.network-link-item a {
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text);
    transition: color var(--bola-transition);
}

.network-link-item a:hover {
    color: var(--bola-green);
}

/* ----------------------------------------
   11.4 Footer Responsive
   ---------------------------------------- */
@media (max-width: 991px) {
    .footer-widgets-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-widgets-grid.columns-2,
    .footer-widgets-grid.columns-3,
    .footer-widgets-grid.columns-4 {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-navigation {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .footer-menu {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .network-links-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   12. CATEGORY/ARCHIVE PAGE
   ============================================ */
.archive-header {
    background: var(--bola-bg-white);
    padding: var(--bola-gap);
    margin-bottom: var(--bola-gap);
    border-radius: var(--bola-radius);
}

.archive-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.archive-description {
    margin-top: 8px;
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text-light);
}

/* Category Hero */
.category-hero {
    margin-bottom: var(--bola-gap);
}

/* ============================================
   13. SINGLE POST
   ============================================ */
.single-post-header {
    background: var(--bola-bg-white);
    padding: var(--bola-gap);
    margin-bottom: var(--bola-gap);
    border-radius: var(--bola-radius);
}

.single-post-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bola-red);
    color: var(--bola-white);
    font-size: var(--bola-font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--bola-radius-sm);
    margin-bottom: 12px;
}

.single-post-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text-muted);
}

.single-post-content {
    background: var(--bola-bg-white);
    padding: var(--bola-gap);
    border-radius: var(--bola-radius);
}

.single-post-content p {
    margin-bottom: 1em;
}

.single-post-content img {
    margin: 1em 0;
    border-radius: var(--bola-radius);
}

/* ============================================
   14. PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: var(--bola-gap) 0;
}

/* Reset ul.page-numbers (WordPress paginate_links with type='list') */
.pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
    min-width: auto;
    height: auto;
}

.pagination ul.page-numbers li {
    margin: 0;
    padding: 0;
}

/* Page number buttons (a and span) */
.pagination a.page-numbers,
.pagination span.page-numbers,
.pagination ul.page-numbers a,
.pagination ul.page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: var(--bola-bg-white);
    color: var(--bola-text);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    border-radius: var(--bola-radius);
    transition: all var(--bola-transition);
    text-decoration: none;
}

.pagination a.page-numbers:hover,
.pagination span.page-numbers.current,
.pagination ul.page-numbers a:hover,
.pagination ul.page-numbers span.current {
    background: var(--bola-green);
    color: var(--bola-white);
}

/* Dots style */
.pagination span.page-numbers.dots,
.pagination ul.page-numbers span.dots {
    background: transparent;
    color: var(--bola-text-light);
    min-width: 24px;
    padding: 0;
}

/* Load More Button */
.load-more-wrapper {
    text-align: center;
    padding: var(--bola-gap) 0;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--bola-green);
    color: var(--bola-white);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    border-radius: var(--bola-radius);
    transition: background var(--bola-transition);
}

.load-more-btn:hover {
    background: var(--bola-green-dark);
}

.load-more-btn:disabled {
    background: var(--bola-text-muted);
    cursor: not-allowed;
}

.load-more-btn.no-more {
    background: var(--bola-bg);
    color: var(--bola-text-muted);
}

/* Infinite Scroll */
.infinite-scroll-trigger {
    text-align: center;
    padding: var(--bola-gap) 0;
    min-height: 60px;
}

.infinite-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: var(--bola-text-muted);
    font-size: var(--bola-font-size-sm);
}

.infinite-loading i {
    color: var(--bola-green);
}

.no-more-infinite,
.no-more-posts {
    color: var(--bola-text-muted);
    font-size: var(--bola-font-size-sm);
    text-align: center;
    padding: 20px;
    margin: 10px 0;
    padding: 20px;
}

/* View All Button (for numbers pagination on homepage) */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bola-bg-white);
    color: var(--bola-green);
    border: 2px solid var(--bola-green);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    border-radius: var(--bola-radius);
    transition: all var(--bola-transition);
}

.view-all-btn:hover {
    background: var(--bola-green);
    color: var(--bola-white);
}

/* ============================================
   15. SEARCH MODAL
   ============================================ */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--bola-transition);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-inner {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.search-modal .search-form {
    display: flex;
    background: var(--bola-white);
    border-radius: var(--bola-radius);
    overflow: hidden;
}

.search-modal .search-field {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: var(--bola-font-size-lg);
    outline: none;
}

.search-modal .search-submit {
    padding: 15px 20px;
    background: var(--bola-green);
    color: var(--bola-white);
    border: none;
}

.search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bola-white);
    font-size: 24px;
}

/* ============================================
   16. MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--bola-white);
    z-index: 9999;
    transition: left var(--bola-transition);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--bola-transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: var(--bola-green);
}

.mobile-menu-header .site-title {
    color: var(--bola-white);
    font-size: 1.25rem;
}

.mobile-menu-close {
    color: var(--bola-white);
    font-size: 20px;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--bola-border-light);
}

.mobile-nav-menu a {
    display: block;
    padding: 12px 15px;
    font-size: var(--bola-font-size-base);
    color: var(--bola-text);
}

.mobile-nav-menu a:hover {
    background: var(--bola-bg);
    color: var(--bola-green);
}

/* ============================================
   17. RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 991px) {
    :root {
        --bola-container: 100%;
        --bola-sidebar-width: 260px;
    }

    .hero-sub-posts {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   18. RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    :root {
        --bola-font-size-base: 13px;
        --bola-gap: 15px;
        --bola-gap-sm: 10px;
    }

    /* Header Mobile */
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-main {
        height: 46px;
    }

    /* Hero Mobile */
    .hero-bola .hero-title {
        font-size: 1.25rem;
    }

    .hero-sub-posts {
        grid-template-columns: 1fr;
        gap: var(--bola-gap-xs);
    }

    .hero-sub-item .sub-image {
        padding-bottom: 56%;
    }

    /* Article List Mobile */
    .article-thumb {
        width: 100px;
    }

    .article-title {
        font-size: var(--bola-font-size-sm);
    }

    /* Content Wrapper Mobile */
    .content-wrapper {
        flex-direction: column;
    }

    .content-wrapper .sidebar {
        width: 100%;
    }

    /* Footer Mobile */
    .footer-widgets {
        grid-template-columns: 1fr;
    }

    /* Breaking News Mobile */
    .breaking-news-inner {
        flex-wrap: wrap;
    }

    .breaking-news-ticker {
        order: 3;
        width: 100%;
        margin-top: 8px;
    }

    /* Popular Mobile */
    .popular-thumb {
        width: 70px;
    }

    .popular-rank {
        width: 24px;
        height: 24px;
        font-size: var(--bola-font-size-xs);
    }
}

/* ============================================
   19. UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.hidden { display: none !important; }

/* Placeholder for missing images */
.no-thumbnail,
img[src*="placeholder"] {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
}

.no-thumbnail::before {
    content: "No Image";
    position: absolute;
    font-size: 11px;
    color: #999;
}

/* Loading Spinner */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* ============================================
   SINGLE POST - BOLA.COM STYLE
   ============================================ */
.single-main {
    background: var(--bola-bg, #F5F5F5);
}

/* Full-width layout without sidebar (like bola.com) */
.single-main .content-wrapper.no-sidebar {
    max-width: 800px;
    margin: 0 auto;
}

.single-main .content-wrapper.no-sidebar .main-content {
    width: 100%;
}

.single-post {
    background: var(--bola-bg-white, #ffffff);
    border-radius: var(--bola-radius, 4px);
    overflow: visible;
}

/* Single Header */
.single-header {
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.single-categories {
    margin-bottom: 12px;
}

.single-categories .category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #E53935;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    margin-right: 6px;
    margin-bottom: 6px;
}

.single-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    margin: 0 0 15px;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
}

.author-role {
    font-size: 11px;
    color: #999999;
}

.meta-details {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #999999;
}

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

.meta-details i {
    font-size: 12px;
}

/* Featured Image */
.single-featured-image {
    position: relative;
}

.single-featured-image img {
    width: 100%;
    height: auto;
}

.featured-caption {
    padding: 10px 20px;
    background: #F5F5F5;
    font-size: 13px;
    color: #999999;
    font-style: italic;
}

/* Content */
.single-content {
    padding: 20px;
}

.single-content p {
    margin-bottom: 1.25em;
    line-height: 1.8;
    font-size: 15px;
}

.single-content h2,
.single-content h3,
.single-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    color: #000000;
}

.single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1em 0;
}

.single-content blockquote {
    margin: 1.5em 0;
    padding: 15px 20px;
    border-left: 4px solid #2D8348;
    background: #F5F5F5;
    font-style: italic;
}

.single-content ul,
.single-content ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

.single-content li {
    margin-bottom: 0.5em;
    list-style: disc;
}

.single-content ol li {
    list-style: decimal;
}

/* Baca Juga / Related Inline */
.baca-juga {
    margin: 1.5em 0;
    padding: 15px;
    background: #F5F5F5;
    border-left: 4px solid #2D8348;
    border-radius: 0 4px 4px 0;
}

.baca-juga-label {
    font-size: 11px;
    font-weight: 700;
    color: #2D8348;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.baca-juga a {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
}

.baca-juga a:hover {
    color: #2D8348;
}

/* Tags */
.single-tags {
    padding: 20px;
    border-top: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tags-label {
    font-size: 13px;
    font-weight: 600;
    color: #999999;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-link {
    display: inline-block;
    padding: 4px 12px;
    background: #F5F5F5;
    color: #333333;
    font-size: 11px;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.tag-link:hover {
    background: #2D8348;
    color: #ffffff;
}

/* Social Share */
.single-share-bottom {
    padding: 20px;
    border-top: 1px solid #eaeaea;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-share .share-label {
    font-size: 13px;
    font-weight: 600;
    color: #999999;
}

.social-share a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.social-share a:hover {
    transform: scale(1.1);
}

.social-share .share-facebook { background: #1877f2; }
.social-share .share-twitter { background: #1da1f2; }
.social-share .share-whatsapp { background: #25d366; }
.social-share .share-telegram { background: #0088cc; }
.social-share .share-linkedin { background: #0077b5; }
.social-share .share-copy { background: #999999; }

/* Share Buttons Wrapper - FIX inline display */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Single Share Top - Bola.com Style */
.single-share-top {
    padding: 15px 0;
    margin-top: 15px;
    border-top: 1px solid var(--bola-border-light);
}

.single-share-top .social-share {
    flex-wrap: wrap;
}

/* Author Box */
.author-box {
    padding: 20px;
    margin: 20px;
    background: #F5F5F5;
    border-radius: 4px;
    display: flex;
    gap: 15px;
}

.author-box .author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-box .author-info {
    flex: 1;
}

.author-box .author-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.author-box .author-name a {
    color: #000000;
}

.author-box .author-bio {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    border-top: 1px solid #eaeaea;
}

.post-navigation a {
    display: block;
    padding: 15px;
    background: #F5F5F5;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.post-navigation a:hover {
    background: #e0e0e0;
}

.nav-prev { text-align: left; }
.nav-next { text-align: right; }

.nav-label {
    display: block;
    font-size: 11px;
    color: #999999;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
}

/* Related Posts Section - Bola.com Style Grid */
.related-posts-section {
    background: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 4px;
}

.related-posts-section .article-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-posts-section .article-item {
    flex-direction: column;
    padding: 0;
    border-bottom: none;
}

.related-posts-section .article-thumb {
    width: 100%;
    padding-bottom: 60%;
    margin-bottom: 10px;
}

.related-posts-section .article-content {
    padding: 0;
}

.related-posts-section .article-title {
    font-size: 13px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
}

.related-posts-section .article-meta {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .related-posts-section .article-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-posts-section .article-list {
        grid-template-columns: 1fr;
    }

    .related-posts-section .article-item {
        flex-direction: row;
    }

    .related-posts-section .article-thumb {
        width: 100px;
        padding-bottom: 0;
        height: 70px;
        margin-bottom: 0;
    }
}

/* ============================================
   SINGLE BOTTOM SECTIONS - BOLA.COM STYLE
   ============================================ */
.single-bottom-sections {
    margin-top: 30px;
}

/* Berita Terkait - Grid Layout */
.berita-terkait-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.berita-terkait-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.terkait-item {
    display: flex;
    flex-direction: column;
}

.terkait-thumb {
    position: relative;
    padding-bottom: 60%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.terkait-thumb a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.terkait-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.terkait-item:hover .terkait-thumb img {
    transform: scale(1.05);
}

.no-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bola-bg);
}

.terkait-content {
    flex: 1;
}

.terkait-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--bola-green);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.terkait-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.terkait-title a {
    color: #000000;
}

.terkait-title a:hover {
    color: var(--bola-green);
}

.terkait-time {
    font-size: 11px;
    color: #999999;
}

/* Two Columns Layout */
.bottom-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bottom-column {
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .berita-terkait-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .berita-terkait-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bottom-two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .berita-terkait-grid {
        grid-template-columns: 1fr;
    }

    .terkait-item {
        flex-direction: row;
        gap: 12px;
    }

    .terkait-thumb {
        width: 100px;
        padding-bottom: 0;
        height: 70px;
        flex-shrink: 0;
        margin-bottom: 0;
    }
}

/* Legacy Bottom Sections */
.bottom-sections {
    margin-top: 20px;
}

.bottom-section {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Comments */
.comments-area {
    background: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 4px;
}

.comments-title {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #2D8348;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
}

.comment-body {
    display: flex;
    gap: 12px;
}

.comment-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.comment-content { flex: 1; }

.comment-meta { margin-bottom: 8px; }

.comment-meta .fn {
    font-weight: 600;
    color: #000000;
}

.comment-meta .comment-date {
    font-size: 11px;
    color: #999999;
    margin-left: 10px;
}

.comment-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.comment-reply-link {
    font-size: 11px;
    color: #2D8348;
    font-weight: 600;
}

/* Comment Form */
.comment-respond {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.comment-reply-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 12px;
    transition: border-color 0.2s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #2D8348;
}

.comment-form .submit {
    padding: 12px 30px;
    background: #2D8348;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.comment-form .submit:hover {
    background: #236339;
}

/* Mobile */
@media (max-width: 767px) {
    .single-title {
        font-size: 1.375rem;
    }

    .single-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .nav-next {
        text-align: left;
    }
}

/* ============================================
   TAG PAGE - BOLA.COM STYLE
   ============================================ */
/* ============================================
   CATEGORY PAGE - BOLA.COM STYLE
   ============================================ */
.category-main {
    background: var(--bola-bg);
}

/* Category Header Section */
.category-header-section {
    background: var(--bola-bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--bola-border-light);
}

.category-header {
    margin-bottom: 15px;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bola-black);
    margin: 0 0 8px;
}

.category-description {
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text);
    margin: 0 0 8px;
}

.category-count {
    font-size: var(--bola-font-size-xs);
    color: var(--bola-text-muted);
}

/* Category Tabs Navigation - Bola.com Style */
.category-tabs-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: 2px solid var(--bola-border-light);
}

.category-tabs-nav::-webkit-scrollbar {
    display: none;
}

.category-tab-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    color: var(--bola-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all var(--bola-transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.category-tab-link:hover {
    color: var(--bola-green);
}

.category-tab-link.active {
    color: var(--bola-green);
}

.category-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bola-green);
}

/* Category Hero */
.category-hero {
    margin-bottom: 0;
}

/* Category Posts Section */
.category-posts-section {
    background: var(--bola-bg-white);
    padding: 20px;
    border-radius: var(--bola-radius);
}

@media (max-width: 768px) {
    .category-header-section {
        padding: 15px 0;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-tab-link {
        padding: 10px 15px;
        font-size: var(--bola-font-size-xs);
    }
}

/* ============================================
   TAG PAGE - BOLA.COM STYLE
   ============================================ */
.tag-main {
    background: var(--bola-bg);
}

/* Tag Header Section */
.tag-header-section {
    background: var(--bola-bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--bola-border-light);
}

.tag-header {
    margin-bottom: 15px;
}

.tag-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bola-black);
    margin: 0 0 8px;
}

.tag-description {
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text);
    margin: 0 0 8px;
}

.tag-count {
    font-size: var(--bola-font-size-xs);
    color: var(--bola-text-muted);
}

/* Tag Tabs Navigation - Bola.com Style */
.tag-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--bola-border-light);
}

.tag-tab-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    color: var(--bola-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all var(--bola-transition);
}

.tag-tab-link:hover {
    color: var(--bola-green);
}

.tag-tab-link.active {
    color: var(--bola-green);
}

.tag-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bola-green);
}

/* Tag Hero */
.tag-hero {
    margin-bottom: 0;
}

/* Tag Posts Section */
.tag-posts-section {
    background: var(--bola-bg-white);
    padding: var(--bola-gap);
    border-radius: var(--bola-radius);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--bola-bg-white);
    border-radius: var(--bola-radius);
}

.no-results i {
    font-size: 48px;
    color: var(--bola-border);
    margin-bottom: 20px;
}

.no-results h2 {
    font-size: 1.25rem;
    color: var(--bola-black);
    margin: 0 0 10px;
}

.no-results p {
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text-muted);
    margin: 0 0 20px;
}

.btn-back {
    display: inline-block;
    padding: 10px 24px;
    background: var(--bola-green);
    color: var(--bola-white);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    border-radius: var(--bola-radius);
    transition: background var(--bola-transition);
}

.btn-back:hover {
    background: var(--bola-green-dark);
    color: var(--bola-white);
}

/* Tag Page Responsive */
@media (max-width: 768px) {
    .tag-title {
        font-size: 1.375rem;
    }

    .tag-tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tag-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tag-tab-link {
        padding: 10px 15px;
        font-size: var(--bola-font-size-xs);
        white-space: nowrap;
    }
}

/* ============================================
   POPULAR POSTS WIDGET - BOLA.COM STYLE
   ============================================ */
.widget-popular-posts .popular-posts-list {
    display: flex;
    flex-direction: column;
}

.widget-popular-posts .popular-post-item {
    display: flex;
    align-items: center;
    gap: var(--bola-gap-sm);
    padding: var(--bola-gap-xs) 0;
    border-bottom: 1px solid var(--bola-border-light);
}

.widget-popular-posts .popular-post-item:last-child {
    border-bottom: none;
}

.widget-popular-posts .popular-rank {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bola-bg);
    color: var(--bola-text-muted);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-xs);
    font-weight: 700;
    border-radius: var(--bola-radius-sm);
}

.widget-popular-posts .popular-rank.top-three {
    background: var(--bola-green);
    color: var(--bola-white);
}

.widget-popular-posts .popular-thumb {
    flex-shrink: 0;
    width: 70px;
}

.widget-popular-posts .popular-thumb a {
    display: block;
    position: relative;
    padding-bottom: 66.67%;
    border-radius: var(--bola-radius-sm);
    overflow: hidden;
}

.widget-popular-posts .popular-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-popular-posts .popular-content {
    flex: 1;
    min-width: 0;
}

.widget-popular-posts .popular-category {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    color: var(--bola-green);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.widget-popular-posts .popular-title {
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.widget-popular-posts .popular-title a {
    color: var(--bola-black);
}

.widget-popular-posts .popular-title a:hover {
    color: var(--bola-green);
}

/* ============================================
   WIDGET: TRENDING TAGS - BOLA.COM STYLE
   ============================================ */
.widget-trending-tags-bola {
    background: var(--bola-bg-white);
    padding: 15px;
    border-radius: var(--bola-radius);
}

.widget-trending-tags-bola .widget-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bola-black);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bola-green);
}

/* List Layout */
.trending-tags-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trending-tag-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bola-border-light);
    color: var(--bola-text);
    transition: all var(--bola-transition);
}

.trending-tag-item:last-child {
    border-bottom: none;
}

.trending-tag-item:hover {
    color: var(--bola-green);
}

.trending-tag-item .tag-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--bola-bg);
    color: var(--bola-text-muted);
    font-family: var(--bola-font-heading);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.trending-tag-item:nth-child(-n+3) .tag-number {
    background: var(--bola-green);
    color: var(--bola-white);
}

.trending-tag-item .tag-name {
    flex: 1;
    font-size: var(--bola-font-size-sm);
    font-weight: 500;
    line-height: 1.3;
}

.trending-tag-item .tag-count {
    font-size: var(--bola-font-size-xs);
    color: var(--bola-text-muted);
    background: var(--bola-bg);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Pills Layout */
.trending-tags-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trending-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bola-bg);
    border: 1px solid var(--bola-border);
    border-radius: var(--bola-radius-pill);
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text);
    transition: all var(--bola-transition);
}

.trending-tag-pill:hover {
    background: var(--bola-green);
    border-color: var(--bola-green);
    color: var(--bola-white);
}

.trending-tag-pill .tag-count {
    font-size: var(--bola-font-size-xs);
    background: rgba(0,0,0,0.1);
    padding: 2px 6px;
    border-radius: 8px;
}

.trending-tag-pill:hover .tag-count {
    background: rgba(255,255,255,0.2);
}

/* ============================================
   BLOG MODULES - HOMEPAGE SECTIONS
   ============================================ */
.blog-module {
    margin-bottom: var(--bola-gap);
}

/* ============================================
   BLOG LIST 1 - Hero + Horizontal List
   ============================================ */
.blog-list-1 {
    background: var(--bola-bg-white);
    border-radius: var(--bola-radius);
    overflow: hidden;
}

/* Hero Section */
.bl1-hero {
    position: relative;
}

.bl1-hero-link {
    display: block;
    position: relative;
}

.bl1-hero-image {
    position: relative;
    padding-bottom: 50%;
    overflow: hidden;
}

.bl1-hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--bola-transition);
}

.bl1-hero-link:hover .bl1-hero-image img {
    transform: scale(1.03);
}

.bl1-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--bola-white);
}

.bl1-hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.bl1-hero-excerpt {
    font-size: var(--bola-font-size-sm);
    margin: 0;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* List Section */
.bl1-list-section {
    padding: 15px;
    border-top: 1px solid var(--bola-border-light);
}

.bl1-list-header {
    margin-bottom: 12px;
}

.bl1-list-title {
    font-size: var(--bola-font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bola-text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bl1-list-title i {
    color: var(--bola-green);
}

.bl1-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.bl1-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bl1-item-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 55px;
    border-radius: var(--bola-radius);
    overflow: hidden;
}

.bl1-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl1-item-content {
    flex: 1;
    min-width: 0;
}

.bl1-item-cat {
    font-size: 10px;
    font-weight: 600;
    color: var(--bola-green);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.bl1-item-title {
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bl1-item-title a {
    color: var(--bola-black);
}

.bl1-item-title a:hover {
    color: var(--bola-green);
}

/* ============================================
   BLOG LIST 2 - Featured Block
   ============================================ */
.blog-list-2 {
    background: var(--bola-bg-white);
    border-radius: var(--bola-radius);
    overflow: hidden;
}

.bl2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

/* Featured (Left) */
.bl2-featured {
    position: relative;
}

.bl2-featured-link {
    display: block;
    height: 100%;
    position: relative;
}

.bl2-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bl2-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl2-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: var(--bola-white);
}

.bl2-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--bola-green);
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.bl2-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* List (Right) */
.bl2-list {
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.bl2-list-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bl2-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--bola-border-light);
}

.bl2-item:last-child {
    border-bottom: none;
}

.bl2-item-first {
    padding-top: 0;
}

.bl2-item-title {
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.bl2-item-title-large {
    font-size: 1rem;
}

.bl2-item-title a {
    color: var(--bola-black);
}

.bl2-item-title a:hover {
    color: var(--bola-green);
}

.bl2-item-excerpt {
    font-size: var(--bola-font-size-xs);
    color: var(--bola-text-muted);
    margin: 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bl2-item-time {
    font-size: 11px;
    color: var(--bola-text-muted);
}

.bl2-item:not(.bl2-item-first) {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bl2-item-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 50px;
    border-radius: var(--bola-radius);
    overflow: hidden;
}

.bl2-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl2-item-content {
    flex: 1;
    min-width: 0;
}

.bl2-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bola-green);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    margin-top: auto;
    padding-top: 10px;
}

.bl2-view-all:hover {
    text-decoration: underline;
}

/* ============================================
   BLOG LIST 3 - Slider/Carousel
   ============================================ */
.blog-list-3 {
    background: #1a1a2e;
    border-radius: var(--bola-radius);
    padding: 40px;
    overflow: hidden;
}

.bl3-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}

/* Title Section */
.bl3-title-section {
    color: var(--bola-white);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bl3-title-content {
    flex: 1;
}

.bl3-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 15px;
    line-height: 1.2;
}

.bl3-month {
    display: block;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bl3-description {
    font-size: var(--bola-font-size-sm);
    color: rgba(255,255,255,0.7);
    margin: 0 0 20px;
    line-height: 1.6;
}

/* Navigation Arrows - Side by Side */
.bl3-nav-wrapper {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.bl3-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--bola-white);
    cursor: pointer;
    transition: all var(--bola-transition);
    font-size: 16px;
}

.bl3-nav:hover {
    background: var(--bola-green);
    border-color: var(--bola-green);
}

.bl3-nav:active {
    transform: scale(0.95);
}

/* Slider Container */
.bl3-slider-container {
    position: relative;
    overflow: hidden;
}

.bl3-slider {
    overflow: hidden;
}

.bl3-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.bl3-slide {
    flex-shrink: 0;
    width: 200px;
}

.bl3-card {
    display: block;
    background: rgba(255,255,255,0.05);
    border-radius: var(--bola-radius);
    overflow: hidden;
    transition: transform var(--bola-transition);
}

.bl3-card:hover {
    transform: translateY(-5px);
}

.bl3-card-image {
    position: relative;
    padding-bottom: 140%;
    overflow: hidden;
}

.bl3-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl3-card-content {
    padding: 12px;
}

.bl3-card-title {
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    color: var(--bola-white);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   BLOG LIST 4 - Grid + List with AJAX
   ============================================ */
.blog-list-4 {
    background: var(--bola-bg-white);
    border-radius: var(--bola-radius);
    overflow: hidden;
}

.bl4-header {
    padding: 15px;
    border-bottom: 1px solid var(--bola-border-light);
}

.bl4-title {
    font-size: var(--bola-font-size-base);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bl4-title i {
    color: var(--bola-green);
}

.bl4-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Featured (Left) */
.bl4-featured {
    border-right: 1px solid var(--bola-border-light);
}

.bl4-featured-item {
    height: 100%;
}

.bl4-featured-link {
    display: block;
    height: 100%;
    position: relative;
    min-height: 350px;
}

.bl4-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bl4-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl4-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 15px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: var(--bola-white);
}

.bl4-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--bola-green);
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.bl4-featured-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* List (Right) */
.bl4-list {
    display: flex;
    flex-direction: column;
}

.bl4-list-inner {
    flex: 1;
}

.bl4-item {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    border-bottom: 1px solid var(--bola-border-light);
    align-items: flex-start;
}

.bl4-item:last-child {
    border-bottom: none;
}

.bl4-item-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: var(--bola-radius);
    overflow: hidden;
}

.bl4-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl4-item-content {
    flex: 1;
    min-width: 0;
}

.bl4-item-cat {
    font-size: 10px;
    font-weight: 600;
    color: var(--bola-green);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.bl4-item-title {
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bl4-item-title a {
    color: var(--bola-black);
}

.bl4-item-title a:hover {
    color: var(--bola-green);
}

.bl4-item-time {
    font-size: 11px;
    color: var(--bola-text-muted);
}

.bl4-ajax-wrapper {
    padding: 15px;
    text-align: center;
    border-top: 1px solid var(--bola-border-light);
}

.bl4-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: var(--bola-green);
    color: var(--bola-white);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    border-radius: var(--bola-radius);
    cursor: pointer;
    transition: background var(--bola-transition);
}

.bl4-load-more:hover {
    background: var(--bola-green-dark);
}

.bl4-load-more:disabled {
    background: var(--bola-text-muted);
    cursor: not-allowed;
}

/* ============================================
   BLOG MODULES - RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .bl2-inner {
        grid-template-columns: 1fr;
    }

    .bl2-featured {
        min-height: 250px;
    }

    .bl3-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bl3-title-section {
        text-align: center;
    }

    .bl3-nav-wrapper {
        justify-content: center;
    }

    .bl4-content {
        grid-template-columns: 1fr;
    }

    .bl4-featured {
        border-right: none;
        border-bottom: 1px solid var(--bola-border-light);
    }

    .bl4-featured-link {
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .bl1-hero-title {
        font-size: 1.25rem;
    }

    .bl1-list {
        grid-template-columns: 1fr;
    }

    .blog-list-3 {
        padding: 25px 15px;
    }

    .bl3-title {
        font-size: 1.5rem;
    }

    .bl3-slide {
        width: 160px;
    }

    .bl3-card-image {
        padding-bottom: 120%;
    }
}

/* ============================================
   SEARCH PAGE STYLES
   ============================================ */
.search-main {
    background: var(--bola-bg);
    min-height: 60vh;
}

.search-header {
    background: var(--bola-bg-white);
    padding: 30px;
    border-radius: var(--bola-radius);
    margin-bottom: var(--bola-gap);
}

.search-title {
    font-family: var(--bola-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bola-black);
    margin: 0 0 20px;
    line-height: 1.3;
}

.search-title .search-query {
    color: var(--bola-green);
}

.search-form-large {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-form-large .search-field {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--bola-border);
    border-radius: var(--bola-radius);
    font-size: 1rem;
    font-family: var(--bola-font-body);
    transition: border-color var(--bola-transition);
    outline: none;
}

.search-form-large .search-field:focus {
    border-color: var(--bola-green);
}

.search-form-large .search-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bola-green);
    color: var(--bola-white);
    border: none;
    border-radius: var(--bola-radius);
    font-family: var(--bola-font-heading);
    font-size: var(--bola-font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--bola-transition);
}

.search-form-large .search-submit:hover {
    background: var(--bola-green-dark);
}

.search-form-large .search-submit i {
    font-size: 1rem;
}

.search-count {
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text-muted);
    margin: 0;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bola-bg-white);
    border-radius: var(--bola-radius);
    overflow: hidden;
}

/* ============================================
   POST CARD LIST - Search & Archive Pages
   ============================================ */
.post-card-list {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--bola-border-light);
    transition: background var(--bola-transition);
}

.post-card-list:last-child {
    border-bottom: none;
}

.post-card-list:hover {
    background: var(--bola-bg);
}

.post-card-list-thumb {
    flex-shrink: 0;
    width: 180px;
}

.post-card-list-thumb a {
    display: block;
    position: relative;
    padding-bottom: 66.67%;
    border-radius: var(--bola-radius);
    overflow: hidden;
    background: var(--bola-bg);
}

.post-card-list-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--bola-transition);
}

.post-card-list-thumb a:hover img {
    transform: scale(1.05);
}

.post-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bola-bg);
    color: var(--bola-border);
    font-size: 2rem;
}

.post-card-list-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-card-list-cat {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bola-white);
    border-radius: var(--bola-radius-sm);
    letter-spacing: 0.5px;
    transition: opacity var(--bola-transition);
}

.post-card-list-cat:hover {
    opacity: 0.85;
    color: var(--bola-white);
}

.post-card-list-title {
    font-family: var(--bola-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.post-card-list-title a {
    color: var(--bola-black);
    transition: color var(--bola-transition);
}

.post-card-list-title a:hover {
    color: var(--bola-green);
}

.post-card-list-excerpt {
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-list-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.post-card-list-meta .meta-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--bola-font-size-xs);
    color: var(--bola-text-muted);
}

.post-card-list-meta .meta-date i {
    font-size: 12px;
}

/* Post Card List Responsive */
@media (max-width: 768px) {
    .post-card-list {
        flex-direction: column;
        gap: 12px;
    }

    .post-card-list-thumb {
        width: 100%;
    }

    .post-card-list-thumb a {
        padding-bottom: 56.25%;
    }

    .post-card-list-title {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .post-card-list-thumb {
        width: 150px;
    }

    .post-card-list-title {
        font-size: 1rem;
    }
}

/* Search Suggestions */
.search-suggestions {
    margin-top: 30px;
    padding: 20px;
    background: var(--bola-bg);
    border-radius: var(--bola-radius);
}

.search-suggestions h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bola-black);
    margin: 0 0 15px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions li {
    position: relative;
    padding: 8px 0 8px 20px;
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text-muted);
}

.search-suggestions li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--bola-green);
    font-size: 12px;
}

/* Search Page Responsive */
@media (max-width: 768px) {
    .search-header {
        padding: 20px 15px;
    }

    .search-title {
        font-size: 1.25rem;
    }

    .search-form-large {
        flex-direction: column;
    }

    .search-form-large .search-submit {
        justify-content: center;
    }
}

/* ============================================
   TAG SEARCH WIDGET STYLES
   ============================================ */
.widget-tag-search {
    background: var(--bola-bg-white);
}

.tag-search-widget {
    padding: 0;
}

.tag-search-box {
    position: relative;
    margin-bottom: 15px;
}

.tag-search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid var(--bola-border);
    border-radius: var(--bola-radius);
    font-size: var(--bola-font-size-sm);
    font-family: var(--bola-font-body);
    transition: all var(--bola-transition);
    outline: none;
    box-sizing: border-box;
}

.tag-search-input:focus {
    border-color: var(--bola-green);
    box-shadow: 0 0 0 3px rgba(0, 145, 76, 0.1);
}

.tag-search-input::placeholder {
    color: var(--bola-text-muted);
}

.tag-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bola-text-muted);
    pointer-events: none;
}

.tag-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bola-bg);
    border: 1px solid var(--bola-border);
    border-radius: var(--bola-radius-pill);
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text);
    transition: all var(--bola-transition);
    text-decoration: none;
}

.tag-pill:hover {
    background: var(--bola-green);
    border-color: var(--bola-green);
    color: var(--bola-white);
}

.tag-pill.hidden {
    display: none;
}

.tag-pill .tag-pill-name {
    font-weight: 500;
}

.tag-pill .tag-pill-count {
    font-size: var(--bola-font-size-xs);
    background: rgba(0,0,0,0.08);
    padding: 2px 6px;
    border-radius: 8px;
    min-width: 20px;
    text-align: center;
}

.tag-pill:hover .tag-pill-count {
    background: rgba(255,255,255,0.2);
}

.tag-pill mark {
    background: var(--bola-yellow);
    color: var(--bola-black);
    padding: 0 2px;
    border-radius: 2px;
}

.tag-pill:hover mark {
    background: var(--bola-white);
    color: var(--bola-green);
}

.tag-no-match {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--bola-bg);
    border-radius: var(--bola-radius);
    font-size: var(--bola-font-size-sm);
    color: var(--bola-text-muted);
}

.tag-no-match i {
    color: var(--bola-yellow);
}

.no-tags-message {
    text-align: center;
    padding: 20px;
    color: var(--bola-text-muted);
    font-size: var(--bola-font-size-sm);
}
