/*
 * Ganhador24-inspired theme override for SportBet
 * Re-styles all SportBet theme components to match ganhador24.com
 * HTML structure is NOT changed — this file overrides existing styles only.
 */

/* =========================================================================
   0. Override legacy theme CSS variables (repoints --color-* to new palette)
   ========================================================================= */
:root {
    --color-blue:  #2fba04 !important;  /* primary brand (was #c83333) */
    --color-blue2: #00a3ff !important;  /* secondary accent (was #a32929) */
    --color-blue3: #5fc0c7 !important;
    --color-blue4: #ccedff !important;
    --color-red:   #e74d4d !important;
    --color-green: #5acc00 !important;
    --color-green2: #89cb60 !important;
    --color-gray:  #cbcbcb !important;
    --color-pink:  #ffcccc !important;
    --color-default: #2e3847 !important;
    --color-nav-underline: #ffd100 !important;
    --color-white: #fff !important;
    --primary: #2fba04 !important;
    --success: #5acc00 !important;
    --orange: #2fba04 !important;
}

/* =========================================================================
   1. Design tokens
   ========================================================================= */
:root {
    /* Brand */
    --gh-brand:         #2fba04; /* primary green (header/footer) */
    --gh-brand-dark:    #259303;
    --gh-brand-light:   #53d627;
    --gh-accent:        #00a3ff; /* secondary blue (links, active states) */
    --gh-accent-dark:   #0081cc;
    --gh-yellow:        #ffd100; /* highlight yellow */
    --gh-cta:           #5acc00; /* CTA green */
    --gh-cta-dark:      #48a300;

    /* State */
    --gh-success:       #5acc00;
    --gh-success-soft:  rgba(137,203,96,0.5);
    --gh-danger:        #e74d4d;
    --gh-danger-soft:   rgba(255,204,204,0.5);
    --gh-alert:         #d90d33;

    /* Surfaces */
    --gh-bg:            #ffffff;
    --gh-bg-alt:        #f7f7f7;
    --gh-bg-card:       #fafafa;
    --gh-bg-info:       #ccedff;
    --gh-bg-muted:      #f6f6f6;
    --gh-bg-dark:       #2e3847;

    /* Text */
    --gh-text:          #2e3847;
    --gh-text-muted:    #808080;
    --gh-text-inverse:  #ffffff;
    --gh-text-link:     #00a3ff;

    /* Borders */
    --gh-border:        #dfdfdf;
    --gh-border-card:   #d9d9d9;
    --gh-border-light:  #eaeaea;

    /* Radii */
    --gh-r-sm:  6px;
    --gh-r-md:  8px;
    --gh-r-lg:  10px;
    --gh-r-pill: 999px;

    /* Shadows */
    --gh-shadow-card:  0 6px 8px rgba(0,0,0,0.06);
    --gh-shadow-row:   0 3px 10px rgba(0,0,0,0.12);
    --gh-shadow-sm:    0 2px 5px rgba(0,0,0,0.06);

    /* Type */
    --gh-font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* =========================================================================
   2. Base / global
   ========================================================================= */
html,
body {
    font-family: var(--gh-font) !important;
    background: var(--gh-bg) !important;
    color: var(--gh-text) !important;
    font-size: 16px;
    line-height: 1.45;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-weight: 400;
    overflow-x: hidden;
}

a {
    color: var(--gh-text-link);
    text-decoration: none;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease;
}

a:hover,
a:focus {
    color: var(--gh-accent-dark);
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

::selection {
    background: var(--gh-brand);
    color: #fff;
}

p {
    color: var(--gh-text);
    line-height: 1.55;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--gh-text);
    font-weight: 800;
    font-family: var(--gh-font);
}

h1 { font-size: 30px; line-height: 37px; font-weight: 800; }
h2 { font-size: 22px; line-height: 28px; font-weight: 700; }
h3 { font-size: 18px; line-height: 24px; font-weight: 700; }
h4 { font-size: 17px; line-height: 22px; font-weight: 700; }
h5 { font-size: 16px; line-height: 22px; font-weight: 600; }
h6 { font-size: 14px; line-height: 20px; font-weight: 600; }

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

hr {
    border: 0;
    border-top: 1px solid var(--gh-border);
    margin: 20px 0;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .container { padding-left: 20px; padding-right: 20px; }
}

section {
    padding: 24px 0;
}

/* =========================================================================
   3. Buttons (generic)
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px solid transparent;
    border-radius: var(--gh-r-md);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    padding: 10px 16px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
}

.btn:hover,
.btn:focus {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 12px;
    font-size: 12px;
}

.btn-md {
    padding: 10px 14px;
    font-size: 14px;
}

.btn-primary {
    background: var(--gh-cta);
    border-color: var(--gh-cta);
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--gh-cta-dark);
    border-color: var(--gh-cta-dark);
    color: #fff !important;
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--gh-brand);
    color: var(--gh-brand) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--gh-brand);
    color: #fff !important;
}

.btn-outline-secondary {
    background: #fff;
    border: 1px solid var(--gh-border);
    color: var(--gh-text) !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: var(--gh-accent);
    border-color: var(--gh-accent);
    color: #fff !important;
}

/* =========================================================================
   4. Loading spinner
   ========================================================================= */
.loading-container {
    background: var(--gh-bg);
}

.loading-container .spinner > div {
    background: var(--gh-brand);
}

/* =========================================================================
   5. Header / Topbar / Navigation
   ========================================================================= */
header.bg-light {
    background: var(--gh-bg) !important;
    border-bottom: 0;
}

/* Topbar — thin informational row */
.topbar {
    /*background: var(--gh-bg-dark);*/
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
}

.topbar .topbar-left,
.topbar .topbar-right {
    color: rgba(255,255,255,0.85);
}

.topbar .topbar-datetime,
.topbar .topbar-text {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 18px;
}

.topbar .topbar-datetime i,
.topbar .topbar-text i {
    color: var(--gh-yellow);
}

.topbar .topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}

.topbar-link li {
    list-style: none;
}

.topbar-link a {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 4px 8px;
}

.topbar-link a:hover {
    color: var(--gh-yellow);
}

.topbar-sosmed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-sosmed li {
    list-style: none;
}

.topbar-sosmed a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    transition: background .15s ease;
}

.topbar-sosmed a:hover {
    background: var(--gh-accent);
    color: #fff;
}

.topbar-apk-wrap {
    display: inline-flex;
}

.topbar-apk-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: var(--gh-yellow) !important;
    color: #000 !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: var(--gh-r-md) !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.topbar-apk-btn:hover,
.topbar-apk-btn:focus {
    background: #ffde38 !important;
    color: #000 !important;
}

/* Main navigation bar */
.navigation-wrap,
.navigation-wrap.bg-white,
header .navigation-wrap {
    background: var(--gh-brand) !important;
    background-color: var(--gh-brand) !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    border: 0;
    min-height: 64px;
}

.navigation-shadow {
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.navbar {
    padding: 14px 0;
    /*background: transparent !important;*/
}

.navbar-soft {
    /*background: transparent !important;*/
}

.navbar > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.navbar figure.mb-0 {
    margin: 0;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

/* Force logo size regardless of img's width/height attributes (SVG fix) or img-fluid override */
.logo,
.logo-mobile,
img.logo,
img.logo-mobile,
.custom-logo-link img,
figure img.logo,
figure img.logo-mobile,
.mobile-header-logo-apk img {
    height: 70px !important;
    max-height: 100px !important;
    width: auto !important;
    max-width: 320px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1);
    display: block;
}

/* Responsive logo: shrink on smaller screens */
@media (max-width: 991px) {
    .logo,
    img.logo,
    .custom-logo-link img,
    figure img.logo {
        height: 52px !important;
        max-height: 52px !important;
        max-width: 220px !important;
    }
}

@media (max-width: 575px) {
    .logo-mobile,
    img.logo-mobile,
    .mobile-header-logo-apk img,
    figure img.logo-mobile {
        height: 38px !important;
        max-height: 38px !important;
        max-width: 160px !important;
    }
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item,
.navbar-nav > li {
    list-style: none;
    position: relative;
}

.navbar-nav .nav-link,
.navbar-nav > li > a {
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 14px !important;
    text-transform: uppercase;
    letter-spacing: .3px;
    border-radius: var(--gh-r-md);
    transition: background .15s ease;
    display: inline-flex;
    align-items: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav > li:hover > a,
.navbar-nav > li.current-menu-item > a,
.navbar-nav > li.current_page_item > a,
.navbar-nav > li.current-menu-ancestor > a {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
}

/* Sub-menu / dropdown */
.navbar-nav .sub-menu,
.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 8px 0;
    list-style: none;
    border-radius: var(--gh-r-md);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid var(--gh-border-light);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    margin: 0;
}

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

.navbar-nav .sub-menu li,
.navbar-nav .dropdown-menu li {
    list-style: none;
}

.navbar-nav .sub-menu a,
.navbar-nav .dropdown-menu a {
    display: block;
    padding: 8px 16px !important;
    color: var(--gh-text) !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
}

.navbar-nav .sub-menu a:hover,
.navbar-nav .dropdown-menu a:hover {
    background: var(--gh-bg-info) !important;
    color: var(--gh-accent) !important;
}

/* Search trigger in nav */
.nav-item.search .nav-link {
    background: rgba(255,255,255,0.15);
    width: 40px;
    height: 40px;
    justify-content: center;
    padding: 0 !important;
    border-radius: 50% !important;
}

.nav-item.search .nav-link:hover {
    background: #fff;
    color: var(--gh-brand) !important;
}

/* Top-search drawer */
.top-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding: 16px 0;
    display: none;
}

.top-search.open,
.top-search.show {
    display: block;
}

.top-search .form-control {
    height: 44px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--gh-border) !important;
    border-right: 0 !important;
    border-radius: var(--gh-r-md) 0 0 var(--gh-r-md) !important;
    padding: 0 16px;
}

.top-search .btn {
    height: 44px;
    border-radius: 0 var(--gh-r-md) var(--gh-r-md) 0 !important;
    background: var(--gh-accent) !important;
    color: #fff !important;
    border-color: var(--gh-accent) !important;
    padding: 0 18px;
}

/* Mobile header */
.mobile-header-burger-inner .btn-md {
    background: rgba(255,255,255,0.2);
    border: 0;
    padding: 8px 10px;
    border-radius: var(--gh-r-md);
    color: #fff;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #fff;
}

.navbar-toggler-icon::before { top: -6px; }
.navbar-toggler-icon::after  { top: 6px; }

/* .mobile-header-logo-apk img sizing is handled by the shared logo rules above */

.mobile-apk-menu__toggle {
    background: var(--gh-yellow) !important;
    color: #000 !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: var(--gh-r-md) !important;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.mobile-apk-menu__toggle::-webkit-details-marker {
    display: none;
}

.mobile-apk-menu__dropdown {
    position: absolute;
    right: 20px;
    margin-top: 8px;
    background: #fff;
    border-radius: var(--gh-r-md);
    padding: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
}

.mobile-apk-menu__link {
    background: var(--gh-yellow) !important;
    color: #000 !important;
    font-size: 12px;
}

/* Mobile sidebar modal */
#modal_aside_right.modal {
    background: rgba(0,0,0,0.4);
}

#modal_aside_right .modal-dialog-aside {
    margin: 0 0 0 auto;
    max-width: 320px;
    height: 100vh;
}

#modal_aside_right .modal-content {
    height: 100%;
    background: #fff;
    border: 0;
    border-radius: 0;
}

#modal_aside_right .modal-header {
    background: var(--gh-brand);
    padding: 14px;
    border-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#modal_aside_right .modal-header .widget__form-search-bar {
    flex: 1;
}

#modal_aside_right .close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    opacity: .85;
}

#modal_aside_right .close:hover { opacity: 1; }

#modal_aside_right .modal-body {
    padding: 12px 0;
}

#modal_aside_right .list-group-flush {
    margin: 0;
    padding: 0;
    list-style: none;
}

#modal_aside_right .modal-body .navbar-nav {
    display: block;
    padding: 0;
}

#modal_aside_right .modal-body .navbar-nav li {
    display: block;
    border-bottom: 1px solid var(--gh-border-light);
}

#modal_aside_right .modal-body .navbar-nav a {
    display: block;
    color: var(--gh-text) !important;
    background: transparent !important;
    padding: 12px 20px !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 !important;
}

#modal_aside_right .modal-body .navbar-nav a:hover {
    background: var(--gh-bg-info) !important;
    color: var(--gh-accent) !important;
}

#modal_aside_right .modal-footer {
    border-top: 1px solid var(--gh-border-light);
    padding: 14px;
    text-align: center;
    font-size: 12px;
}

#modal_aside_right .modal-footer a {
    color: var(--gh-brand);
    font-weight: 700;
}

/* =========================================================================
   6. Breadcrumbs
   ========================================================================= */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    list-style: none;
    background: transparent !important;
    padding: 16px 0;
    margin: 0 0 24px 0;
    font-size: 13px;
    color: var(--gh-text-muted);
}

.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    color: var(--gh-text-muted);
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: "/";
    color: var(--gh-border);
    padding: 0 8px;
}

.breadcrumbs__url {
    color: var(--gh-brand);
    text-decoration: underline;
    font-weight: 500;
}

.breadcrumbs__url:hover {
    color: var(--gh-brand-dark);
}

.breadcrumbs__item--current {
    color: var(--gh-text);
    font-weight: 600;
}

.breadcrumbs .fa-home {
    color: var(--gh-brand);
}

/* =========================================================================
   7. Cards — generic card__post
   ========================================================================= */
.card__post {
    background: var(--gh-bg-card);
    border-radius: var(--gh-r-md);
    overflow: hidden;
    box-shadow: var(--gh-shadow-card);
    transition: transform .2s ease, box-shadow .2s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.card__post:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.1);
}

.card__post img {
    display: block;
    width: 100%;
    height: auto;
}

.card__post__body {
    padding: 14px 16px 16px;
}

.card__post-list {
    display: flex;
    /*flex-direction: column;*/
    height: 100%;
}

.card__post-list .image-sm {
    overflow: hidden;
    background: var(--gh-bg-muted);
    line-height: 0;
}

.card__post-list .image-sm a {
    display: block;
    line-height: 0;
}

.card__post-list .image-sm img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .4s ease;
}

.card__post-list:hover .image-sm img {
    transform: scale(1.05);
}

.card__post__content {
    padding: 0;
}

.card__post__author-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 8px;
    font-size: 12px;
    color: var(--gh-text-muted);
    font-weight: 500;
}

.card__post__author-info ul.list-inline {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    list-style: none;
}

.card__post__author-info .list-inline-item {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: var(--gh-text-muted);
    list-style: none;
}

.card__post__author-info .list-inline-item + .list-inline-item::before {
    content: "•";
    color: var(--gh-border);
    padding: 0 6px;
}

.card__post__author-info .text-primary,
.card__post__author-info .article__author-link {
    color: var(--gh-accent) !important;
    font-weight: 600;
}

.card__post__author-info .text-dark {
    color: var(--gh-text-muted) !important;
}

.card__post__category {
    display: inline-block;
    background: var(--gh-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 3px 10px;
    border-radius: var(--gh-r-pill);
    margin: 0 0 8px;
}

.card__post__title h3,
.card__post__title h4,
.card__post__title h5,
.card__post__title h6 {
    color: var(--gh-text);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.35;
    margin: 0;
}

.card__post__title a {
    color: var(--gh-text);
}

.card__post__title a:hover {
    color: var(--gh-accent);
}

.card__post__excerpt,
.card__post__content p {
    color: var(--gh-text);
    font-size: 13px;
    line-height: 1.5;
    margin: 6px 0 0;
}

.card__post__meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--gh-text-muted);
    margin-top: 8px;
}

/* Card post list style (archive) */
.card__post.card__post-list.card__post__transition.mt-30 {
    padding: 14px;
}

.card__post.card__post-list.card__post__transition.mt-30 .row {
    margin: 0;
    align-items: center;
}

.card__post.card__post-list.card__post__transition.mt-30 .col-md-5 {
    padding-right: 16px;
}

.card__post.card__post-list.card__post__transition.mt-30 .col-md-7 {
    padding-left: 0;
}

.card__post.card__post-list.card__post__transition.mt-30 .card__post__transition {
    overflow: hidden;
    border-radius: var(--gh-r-md);
    aspect-ratio: 16 / 10;
}

.card__post.card__post-list.card__post__transition.mt-30 .card__post__transition img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__post.card__post-list.card__post__transition.mt-30 .card__post__title h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 6px 0 6px;
}

.card__post.card__post-list.card__post__transition.mt-30 .card__post__title p {
    margin: 4px 0 0;
    color: var(--gh-text-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* Sidebar small card post */
.card__post.card__post__transition.mb-3 {
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
    border-bottom: 1px solid var(--gh-border-light);
    border-radius: 0;
    padding-bottom: 12px;
    margin-bottom: 12px !important;
}

.card__post.card__post__transition.mb-3:hover {
    transform: none;
    box-shadow: none;
}

.card__post.card__post__transition.mb-3 .card__post__body {
    display: flex;
    gap: 10px;
    padding: 0;
}

.card__post.card__post__transition.mb-3 a > img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--gh-r-sm);
    flex-shrink: 0;
}

.card__post.card__post__transition.mb-3 .card__post__content {
    flex: 1;
    background: transparent !important;
    padding: 0;
}

.card__post.card__post__transition.mb-3 .card__post__title h5 {
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 4px;
    color: var(--gh-text);
}

.card__post.card__post__transition.mb-3 .card__post__author-info {
    margin: 4px 0 0;
    font-size: 11px;
}

/* =========================================================================
   8. Front-page — Trending carousel
   ========================================================================= */
/* Static list (e.g., "Latest Posts") — grid layout. Exclude carousel variant
   so Slick's .slick-list / .slick-track layout is not broken by display:grid. */
.wrapp__list__article-responsive:not(.wrapp__list__article-responsive-carousel) {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 1199px) {
    .wrapp__list__article-responsive:not(.wrapp__list__article-responsive-carousel) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .wrapp__list__article-responsive:not(.wrapp__list__article-responsive-carousel) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 479px) {
    .wrapp__list__article-responsive:not(.wrapp__list__article-responsive-carousel) {
        grid-template-columns: 1fr;
    }
}

/* Slick carousel — let Slick handle layout. We only add visual padding. */
.wrapp__list__article-responsive-carousel {
    padding: 18px 0;
}

.wrapp__list__article-responsive-carousel.slick-initialized {
    display: block;
}

.wrapp__list__article-responsive-carousel.slick-initialized .slick-slide {
    padding: 0 8px;
    height: auto;
}

.wrapp__list__article-responsive-carousel.slick-initialized .slick-slide > div {
    height: 100%;
}

.wrapp__list__article-responsive-carousel.slick-initialized .slick-track {
    display: flex;
    align-items: stretch;
}

.wrapp__list__article-responsive-carousel .item {
    padding: 0 8px;
    list-style: none;
    height: auto;
}

/* Before Slick initializes, prevent a tall column of stacked items.
   After Slick adds .slick-initialized, these rules become inert because Slick
   overrides them with inline styles. */
.wrapp__list__article-responsive-carousel:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 16px;
}

.wrapp__list__article-responsive-carousel:not(.slick-initialized) > .item {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 1199px) {
    .wrapp__list__article-responsive-carousel:not(.slick-initialized) > .item {
        flex-basis: 33.3333%;
        max-width: 33.3333%;
    }
}

@media (max-width: 767px) {
    .wrapp__list__article-responsive-carousel:not(.slick-initialized) > .item {
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (max-width: 479px) {
    .wrapp__list__article-responsive-carousel:not(.slick-initialized) > .item {
        flex-basis: 100%;
        max-width: 100%;
    }
}

.wrapp__list__article-responsive:not(.wrapp__list__article-responsive-carousel) .item {
    height: 100%;
    list-style: none;
}

/* Trending forecast carousel — image fills container fully, sides cropped.
   Uses absolute positioning to bypass height-chain resolution issues.
   Selector includes .card__post-list to beat the generic rule at line ~867. */
.wrapp__list__article-responsive-carousel .card__post-list .image-sm {
    flex: 0 0 120px;
    width: 120px;
    /*height: 80px;*/
    overflow: hidden;
    position: relative; /* positioned ancestor for the absolutely placed img */
    flex-shrink: 0;
}

.wrapp__list__article-responsive-carousel .card__post-list .image-sm a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.wrapp__list__article-responsive-carousel .card__post-list .image-sm a img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    display: block !important;
    transform: none !important;
    transition: transform .4s ease !important;
}

.wrapp__list__article-responsive-carousel .card__post-list:hover .image-sm a img {
    transform: scale(1.05) !important;
}

section.bg-light {
    background: var(--gh-bg-alt) !important;
    padding: 30px 0 10px;
}

/* =========================================================================
   9. Featured news slider (Swiper)
   ========================================================================= */
.front-page-featured-slider-section {
    padding: 30px 0 0;
}

.tc-featured-news-style8 {
    background: transparent;
}

.tc-featured-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 20px;
    border-bottom: 2px solid var(--gh-border);
    padding-bottom: 10px;
    position: relative;
}

.tc-featured-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--gh-brand);
}

.tc-featured-title h5 {
    color: var(--gh-text);
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.tc-featured-title small a {
    color: var(--gh-accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.tc-featured-title small a:hover {
    color: var(--gh-accent-dark);
}

.tc-post-overlay-style8 {
    position: relative;
}

.tc-featured-news-slider8 {
    position: relative;
}

.tc-featured-news-slider8 .slick-slide,
.tc-featured-news-slider8__carousel .item {
    background: var(--gh-bg-card);
    border-radius: var(--gh-r-md);
    overflow: hidden;
    box-shadow: var(--gh-shadow-card);
    position: relative;
    height: auto;
}

.tc-featured-news-slider8 .slick-slide .item,
.tc-featured-news-slider8__carousel .item {
    position: relative;
    height: 100%;
    display: block;
}

/* Slick: normalize slide padding and stretch items */
.tc-featured-news-slider8__carousel.slick-initialized {
    display: block;
}

.tc-featured-news-slider8__carousel .slick-slide {
    padding: 0 6px;
    box-sizing: border-box;
}

.tc-featured-news-slider8__carousel .slick-list {
    margin: 0 -6px;
}

.tc-featured-news-slider8 .img.th-400 {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--gh-bg-muted);
}

.tc-featured-news-slider8 .img.th-400 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.tc-featured-news-slider8 .slick-slide:hover .img.th-400 img,
.tc-featured-news-slider8__carousel .item:hover .img.th-400 img {
    transform: scale(1.05);
}

/* Gradient overlay on image so the title text stays legible */
.tc-featured-news-slider8 .img.th-400::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.tc-featured-news-slider8 .tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}

.tc-featured-news-slider8 .tags a {
    display: inline-block;
    background: var(--gh-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 4px 10px;
    border-radius: var(--gh-r-pill);
}

.tc-featured-news-slider8 .tags .orange  { background: #ff8a3d; }
.tc-featured-news-slider8 .tags .yellow  { background: var(--gh-yellow); color: #000; }
.tc-featured-news-slider8 .tags .cyan    { background: #14a0ff; }
.tc-featured-news-slider8 .tags .blue    { background: var(--gh-accent); }
.tc-featured-news-slider8 .tags .green   { background: var(--gh-brand); }
.tc-featured-news-slider8 .tags .purple  { background: #9256d4; }

/* Text content overlays the image (bottom-aligned) — ganhador24/african-football style */
.tc-featured-news-slider8 .content.p-30 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 22px 22px;
    background: transparent;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
}

.tc-featured-news-slider8 .content .title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

.tc-featured-news-slider8 .content .title a {
    color: #fff;
}

.tc-featured-news-slider8 .content .title a:hover {
    color: #fff;
    text-decoration: underline;
}

.tc-featured-news-slider8 .meta-bot {
    margin-top: 4px !important;
    font-size: 12px;
    color: #fff;
}

.tc-featured-news-slider8 .meta-bot a {
    color: #fff !important;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Slick arrows for tc-featured-news-slider8 are handled by global .slick-slider rules */
.tc-featured-news-slider8__carousel .slick-prev { left: -20px !important; }
.tc-featured-news-slider8__carousel .slick-next { right: -20px !important; }

@media (max-width: 575px) {
    .tc-featured-news-slider8__carousel .slick-prev { left: 4px !important; }
    .tc-featured-news-slider8__carousel .slick-next { right: 4px !important; }
}

.tc-featured-news-slider8__carousel .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 14px;
}

.tc-featured-news-slider8__carousel .slick-dots li button::before {
    color: var(--gh-border);
    opacity: 1;
    font-size: 35px;
}

.tc-featured-news-slider8__carousel .slick-dots li.slick-active button::before {
    color: var(--gh-brand);
}

/* =========================================================================
   10. Section — Popular news, Latest posts, Bookmakers carousel
   ========================================================================= */
.popular__section-news {
    padding: 24px 0;
}

.wrapper__list__article {
    margin-bottom: 24px;
}

h4.border_section,
h1.border_section,
h2.border_section,
h3.border_section {
    font-size: 22px;
    font-weight: 800;
    color: var(--gh-text);
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 0 0 10px;
    margin: 0 0 20px;
    border-bottom: 2px solid var(--gh-border);
    position: relative;
}

h4.border_section::after,
h1.border_section::after,
h2.border_section::after,
h3.border_section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--gh-brand);
}

h1.border_section { font-size: 28px; }

/* Bookmakers carousel on front page */
.related-article--bookmakers {
    position: relative;
    padding: 0;
}

.related-bookmakers-carousel-wrap {
    position: relative;
}

.article__entry-carousel {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 1199px) {
    .article__entry-carousel {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .article__entry-carousel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 479px) {
    .article__entry-carousel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Slick active overrides — grid must be disabled when Slick takes over */
.article__entry-carousel.slick-initialized,
.article__entry-carousel-three.slick-initialized {
    display: block;
}

.article__entry-carousel.slick-initialized .slick-slide {
    padding: 0 7px;
}

.article__entry-carousel .item {
    list-style: none;
    display: block;
    width: 100%;
}

.article__entry-carousel .article__entry {
    background: #fff;
    border-radius: var(--gh-r-md);
    box-shadow: var(--gh-shadow-card);
    padding: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
    border: 1px solid var(--gh-border-light);
    height: 100%;
}

.article__entry-carousel .article__entry:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.1);
}

.article__entry-carousel .article__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    border-radius: var(--gh-r-sm);
}

.article__entry-carousel .article__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.article__entry-carousel .article__content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.related-bookmaker__rating {
    display: flex;
    justify-content: center;
}

.related-bookmaker__stars {
    display: inline-flex;
    gap: 2px;
    font-size: 12px;
    color: var(--gh-yellow);
}

.related-bookmaker__stars .fa-star,
.related-bookmaker__stars .fa-star-half-o {
    color: var(--gh-yellow);
}

.related-bookmaker__stars .fa-star-o {
    color: var(--gh-border);
}

/* Slick/carousel arrows */
.article__entry-carousel--arrows-sides {
    position: relative;
}

.slick-slider .slick-arrow,
.slick-slider .slick-prev,
.slick-slider .slick-next,
button.slick-arrow,
button.slick-prev,
button.slick-next {
    width: 36px !important;
    height: 36px !important;
    background: var(--gh-brand) !important;
    border: 0 !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    z-index: 5;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: 0 !important;
    line-height: 0 !important;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
}

.slick-slider .slick-arrow:hover,
.slick-slider .slick-arrow:focus,
button.slick-arrow:hover,
button.slick-arrow:focus {
    background: var(--gh-brand-dark) !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.slick-slider .slick-prev i,
.slick-slider .slick-next i,
button.slick-prev i,
button.slick-next i,
button.slick-arrow i {
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

/* Slick's default CSS pseudo-element arrow — hide if FontAwesome <i> is present */
.slick-slider .slick-prev::before,
.slick-slider .slick-next::before,
button.slick-prev::before,
button.slick-next::before {
    content: "" !important;
    font-family: inherit !important;
    color: transparent !important;
    opacity: 0 !important;
}

/* Fallback chevrons for slick buttons that DON'T contain an <i> (rare) */
.slick-slider .slick-prev:not(:has(i))::before {
    content: "\2039" !important;
    color: #fff !important;
    font-size: 18px !important;
    opacity: 1 !important;
}

.slick-slider .slick-next:not(:has(i))::before {
    content: "\203A" !important;
    color: #fff !important;
    font-size: 18px !important;
    opacity: 1 !important;
}

.slick-slider .slick-prev,
button.slick-prev { left: -18px !important; }

.slick-slider .slick-next,
button.slick-next { right: -18px !important; }

/* Arrows placed INSIDE the slider track (sides variant) */
.article__entry-carousel--arrows-sides .slick-prev { left: -22px !important; }
.article__entry-carousel--arrows-sides .slick-next { right: -22px !important; }

.slick-dots li button::before {
    color: var(--gh-border);
    opacity: 1;
    font-size: 10px;
}

.slick-dots li.slick-active button::before {
    color: var(--gh-brand);
}

/* =========================================================================
   11. Pagination
   ========================================================================= */
.pagination-area {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.pagination-area .pagination,
.pagination {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    list-style: none;
    margin: 0;
}

.pagination .nav-links,
.pagination-area .pagination .nav-links {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--gh-r-md);
    background: #fff;
    color: var(--gh-text);
    font-weight: 700;
    border: 1px solid var(--gh-border);
    font-size: 14px;
    text-decoration: none;
}

.page-numbers:hover,
.page-numbers:focus {
    background: var(--gh-bg-info);
    color: var(--gh-accent);
    border-color: var(--gh-accent);
}

.page-numbers.current {
    background: var(--gh-brand);
    color: #fff;
    border-color: var(--gh-brand);
}

.page-numbers.dots {
    border: 0;
    background: transparent;
}

/* Latest posts pagination (front page) */
#latest-posts-pagination {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

#latest-posts-pagination a,
#latest-posts-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--gh-r-md);
    background: #fff;
    color: var(--gh-text);
    font-weight: 700;
    border: 1px solid var(--gh-border);
    font-size: 14px;
    margin: 0 2px;
    text-decoration: none;
}

#latest-posts-pagination .current,
#latest-posts-pagination .active {
    background: var(--gh-brand);
    color: #fff;
    border-color: var(--gh-brand);
}

/* =========================================================================
   12. Sidebar widgets
   ========================================================================= */
.sticky-top {
    position: sticky;
    top: 20px;
}

.wrapper__list__article {
    background: #fff;
    border-radius: var(--gh-r-md);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--gh-shadow-card);
    border: 1px solid var(--gh-border-light);
}

.wrapper__list__article.top_news_widget h4 {
    margin-bottom: 16px;
}

.wrapper__list__article-small {
    display: flex;
    flex-direction: column;
}

.wrapper__list__article-small .card__post:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0 !important;
}

.bg__post-cover {
    background: transparent;
    padding: 0;
}

/* Search widget */
.widget__form-search-bar .form-control {
    height: 40px;
    border-radius: var(--gh-r-md) 0 0 var(--gh-r-md);
    border: 1px solid var(--gh-border);
    border-right: 0;
    padding: 0 14px;
    font-size: 13px;
}

.widget__form-search-bar .btn {
    height: 40px;
    border-radius: 0 var(--gh-r-md) var(--gh-r-md) 0;
    background: var(--gh-accent) !important;
    border-color: var(--gh-accent) !important;
    color: #fff !important;
    padding: 0 14px;
}

/* Social media widget */
.wrap__social__media {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wrap__social__media ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wrap__social__media li {
    list-style: none;
}

.wrap__social__media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gh-bg-info);
    color: var(--gh-accent);
    font-size: 14px;
}

.wrap__social__media a:hover {
    background: var(--gh-accent);
    color: #fff;
}

/* Tags widget */
.blog-tags.p-0 {
    padding: 0;
}

.blog-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-tags .list-inline-item {
    list-style: none;
}

.blog-tags a {
    display: inline-block;
    background: var(--gh-bg-info);
    color: var(--gh-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--gh-r-pill);
    border: 1px solid transparent;
}

.blog-tags a:hover {
    background: var(--gh-accent);
    color: #fff;
}

.blog-tags .fa-tags {
    color: var(--gh-text-muted);
}

/* Newsletter widget */
.widget__form-subscribe {
    background: var(--gh-bg-info);
    border-radius: var(--gh-r-lg);
    padding: 18px;
    box-shadow: none !important;
}

.widget__form-subscribe .newsletter__lead {
    font-size: 14px;
    font-weight: 700;
    color: var(--gh-text);
    margin: 0 0 6px;
}

.widget__form-subscribe small {
    color: var(--gh-text-muted);
    font-size: 12px;
}

.widget__form-subscribe .input-group {
    display: flex;
    gap: 0;
    margin-top: 12px;
}

.widget__form-subscribe .form-control {
    height: 42px;
    border-radius: var(--gh-r-md) 0 0 var(--gh-r-md);
    border: 1px solid #fff;
    padding: 0 14px;
    font-size: 13px;
    flex: 1;
}

.widget__form-subscribe .btn {
    height: 42px;
    border-radius: 0 var(--gh-r-md) var(--gh-r-md) 0;
    background: var(--gh-accent);
    color: #fff;
    border: 0;
    padding: 0 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* Sidebar partners */
.sidebar-partners__content {
    color: var(--gh-text);
    font-size: 13px;
    line-height: 1.5;
}

.sidebar-partners__content a {
    color: var(--gh-accent);
    font-weight: 600;
}

/* Advertise widget */
.wrapper__list__article figure {
    margin: 0;
}

.wrapper__list__article figure img {
    width: 100%;
    border-radius: var(--gh-r-md);
}

/* =========================================================================
   13. Archive pages (news/forecast) layout
   ========================================================================= */
section > .container {
    padding-top: 12px;
    padding-bottom: 12px;
}

.col-md-8 > aside.wrapper__list__article {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border: 0;
}

.col-md-8 > aside.wrapper__list__article h1.border_section {
    font-size: 26px;
}

.col-md-8 > aside.wrapper__list__article .wrapp__list__article-responsive {
    display: block;
    grid-template-columns: none;
    gap: 0;
}

.col-md-8 .card__post.card__post-list.card__post__transition {
    background: #fff;
    border: 1px solid var(--gh-border-light);
    box-shadow: var(--gh-shadow-card);
}

.col-md-8 .card__post.card__post-list.card__post__transition:hover {
    box-shadow: 0 8px 14px rgba(0,0,0,0.08);
}

/* =========================================================================
   14. Archive bookmakers — table & cards
   ========================================================================= */
.archive-bookmakers {
    padding: 20px 0 60px;
}

.archive-bookmakers__title {
    font-size: 26px;
}

.archive-bookmakers__header {
    background: var(--gh-accent);
    border-radius: var(--gh-r-md) var(--gh-r-md) 0 0;
    color: #fff;
    padding: 14px 12px;
    margin: 0 0 0 0;
}

.archive-bookmakers__header > div {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #fff;
}

.archive-bookmakers__row {
    background: var(--gh-bg-card);
    border: 1px solid var(--gh-border-light);
    border-top: 0;
    padding: 16px 12px;
    position: relative;
    box-shadow: var(--gh-shadow-row);
    margin-bottom: 16px;
    border-radius: 0 0 var(--gh-r-md) var(--gh-r-md);
}

.archive-bookmakers__row:hover {
    background: #fff;
}

.archive-bookmakers__row-inner {
    align-items: center;
}

.archive-bookmakers__rank {
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-bookmakers__rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gh-yellow);
    color: #000;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.archive-bookmakers__brand {
    text-align: center;
    padding: 6px;
}

.archive-bookmakers__logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.archive-bookmakers__pros,
.archive-bookmakers__cons {
    padding: 8px 12px;
}

.archive-bookmakers__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
}

.archive-bookmakers__list li {
    position: relative;
    padding: 3px 0 3px 20px;
    color: var(--gh-text);
    list-style: none;
}

.archive-bookmakers__pros .archive-bookmakers__list li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background: var(--gh-cta);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.archive-bookmakers__cons .archive-bookmakers__list li::before {
    content: "−";
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background: var(--gh-danger);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.archive-bookmakers__empty {
    color: var(--gh-text-muted);
}

.archive-bookmakers__bonus {
    padding: 8px 12px;
}

.archive-bookmakers__bonus-amount {
    color: var(--gh-cta);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.2;
}

.archive-bookmakers__bonus-text {
    color: var(--gh-text);
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.archive-bookmakers__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.archive-bookmakers__btn {
    border-radius: var(--gh-r-md) !important;
    font-size: 11px !important;
    padding: 7px 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .3px;
    border: 2px solid transparent !important;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.archive-bookmakers__btn--bonus {
    background: var(--gh-cta) !important;
    color: #fff !important;
    border-color: var(--gh-cta) !important;
}

.archive-bookmakers__btn--bonus:hover {
    background: var(--gh-cta-dark) !important;
    color: #fff !important;
    border-color: var(--gh-cta-dark) !important;
}

.archive-bookmakers__btn--review {
    background: transparent !important;
    color: var(--gh-brand) !important;
    border-color: var(--gh-brand) !important;
}

.archive-bookmakers__btn--review:hover {
    background: var(--gh-brand) !important;
    color: #fff !important;
}

.archive-bookmakers__btn--apk {
    background: var(--gh-accent) !important;
    color: #fff !important;
    border-color: var(--gh-accent) !important;
}

.archive-bookmakers__btn--apk:hover {
    background: var(--gh-accent-dark) !important;
    color: #fff !important;
    border-color: var(--gh-accent-dark) !important;
}

.archive-bookmakers__btn--site {
    background: var(--gh-yellow) !important;
    color: #000 !important;
    border-color: var(--gh-yellow) !important;
}

.archive-bookmakers__btn--site:hover {
    background: #ffde38 !important;
    color: #000 !important;
    border-color: #ffde38 !important;
}

.archive-bookmakers__recommended {
    margin-top: 12px;
    background: var(--gh-yellow);
    color: #000;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 8px 12px;
    border-radius: 0 0 var(--gh-r-md) var(--gh-r-md);
    text-align: center;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -16px;
}

/* Info/intro block */
.archive-bookmakers__info-content {
    margin-top: 24px;
    font-size: 14px;
    color: var(--gh-text);
    line-height: 1.6;
}

/* Legal bookmakers — compact 2-column cards */
.archive-bookmakers__legal {
    margin-top: 40px;
}

.archive-bookmakers__legal-title {
    font-size: 22px;
}

.archive-bookmakers__card {
    background: var(--gh-bg-card);
    border-radius: var(--gh-r-md);
    padding: 16px;
    box-shadow: var(--gh-shadow-card);
    border: 1px solid var(--gh-border-light);
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease;
}

.archive-bookmakers__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.1);
}

.archive-bookmakers__card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.archive-bookmakers__card-brand {
    display: flex;
    align-items: center;
    min-width: 110px;
    max-width: 130px;
}

.archive-bookmakers__card-logo {
    display: flex;
    align-items: center;
}

.archive-bookmakers__card-logo img {
    max-height: 44px;
    max-width: 120px;
    object-fit: contain;
}

.archive-bookmakers__card-bonus-amount {
    font-size: 15px;
    font-weight: 800;
    color: var(--gh-cta);
    line-height: 1.2;
}

.archive-bookmakers__card-bonus-label {
    display: block;
    font-size: 11px;
    color: var(--gh-text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    font-weight: 600;
}

.archive-bookmakers__card-bonus-text {
    font-size: 12px;
    color: var(--gh-text);
    line-height: 1.45;
    margin-bottom: 12px;
}

.archive-bookmakers__card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Mobile — stacking for bookmakers rows */
@media (max-width: 767px) {
    .archive-bookmakers__header { display: none !important; }

    .archive-bookmakers__row {
        border-radius: var(--gh-r-md);
        padding: 16px;
    }

    .archive-bookmakers__row-inner {
        row-gap: 10px;
    }

    .archive-bookmakers__rank {
        justify-content: flex-start;
        padding-bottom: 8px;
    }

    .archive-bookmakers__actions {
        justify-content: flex-start;
    }
}

/* =========================================================================
   15. Single post — article detail
   ========================================================================= */
.wrap__article-detail {
    background: #fff;
    border-radius: var(--gh-r-md);
    padding: 0;
    margin-bottom: 24px;
}

.wrap__article-detail > hr {
    margin: 14px 0 18px;
    border-top: 1px solid var(--gh-border);
}

.wrap__article-detail-title h1 {
    color: var(--gh-text);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 10px;
}

.wrap__article-detail-title h3 {
    color: var(--gh-text-muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.wrap__article-detail-info ul.list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
    padding: 0;
    list-style: none;
    align-items: center;
    font-size: 13px;
    color: var(--gh-text-muted);
}

.wrap__article-detail-info .list-inline-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.wrap__article-detail-info .image-profile img,
.wrap__article-detail-info .rounded-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.wrap__article-detail-info a {
    color: var(--gh-accent);
    font-weight: 600;
}

.wrap__article-detail-info .text-dark {
    color: var(--gh-text-muted) !important;
}

.wrap__article-detail-image {
    border-radius: var(--gh-r-md);
    overflow: hidden;
    margin: 18px 0;
}

.wrap__article-detail-image figure {
    margin: 0;
}

.wrap__article-detail-image img {
    width: 100%;
    height: auto;
}

.wrap__article-detail-content {
    padding: 0;
}

.total-views {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
    margin: 12px 0;
    border-top: 1px solid var(--gh-border-light);
    border-bottom: 1px solid var(--gh-border-light);
}

.total-views-read {
    font-weight: 700;
    font-size: 13px;
    color: var(--gh-text);
}

.total-views-read span {
    color: var(--gh-text-muted);
    font-weight: 500;
    margin-left: 2px;
}

.total-views .list-inline {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.total-views .share {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--gh-text-muted);
    margin-right: 4px;
}

.btn-social-o,
.btn-linkedin-o {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 10px !important;
    border-radius: var(--gh-r-md) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: .3px;
    border: 1px solid transparent !important;
    color: #fff !important;
}

.btn-social-o span,
.btn-linkedin-o span {
    display: none;
}

.btn-social-o.facebook,
.btn-social-o.facebook:hover { background: #1877f2 !important; border-color: #1877f2 !important; color: #fff !important; }
.btn-social-o.twitter,
.btn-social-o.twitter:hover  { background: #1da1f2 !important; border-color: #1da1f2 !important; color: #fff !important; }
.btn-social-o.whatsapp,
.btn-social-o.whatsapp:hover { background: #25d366 !important; border-color: #25d366 !important; color: #fff !important; }
.btn-social-o.telegram,
.btn-social-o.telegram:hover { background: #0088cc !important; border-color: #0088cc !important; color: #fff !important; }
.btn-linkedin-o,
.btn-linkedin-o:hover        { background: #0a66c2 !important; border-color: #0a66c2 !important; color: #fff !important; }
.btn-social-o.instagram      { background: #e4405f !important; border-color: #e4405f !important; color: #fff !important; }

.btn-social-o:hover,
.btn-linkedin-o:hover {
    opacity: .9;
}

/* Article content */
.article-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gh-text);
}

.article-content p {
    margin: 0 0 14px;
}

.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5 {
    margin: 24px 0 12px;
    color: var(--gh-text);
}

.article-content h2 { font-size: 22px; font-weight: 800; color: var(--gh-accent); }
.article-content h3 { font-size: 18px; font-weight: 700; }
.article-content h4 { font-size: 16px; font-weight: 700; }

.article-content a {
    color: var(--gh-accent);
    font-weight: 600;
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--gh-accent-dark);
}

.article-content ul,
.article-content ol {
    padding-left: 20px;
    margin: 0 0 14px;
}

.article-content ul li,
.article-content ol li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.article-content blockquote {
    border-left: 4px solid var(--gh-accent);
    background: var(--gh-bg-info);
    padding: 14px 18px;
    border-radius: 0 var(--gh-r-md) var(--gh-r-md) 0;
    margin: 18px 0;
    font-style: italic;
    color: var(--gh-text);
}

.article-content img {
    border-radius: var(--gh-r-md);
    margin: 12px 0;
}

.article-content table {
    width: 100%;
    text-align: center;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-r-sm);
    border-collapse: separate;
    border-spacing: 0;
    margin: 15px 0;
    overflow: hidden;
}

.article-content table th,
.article-content table td {
    padding: 10px;
    border: 1px solid var(--gh-border);
    font-size: 13px;
}

.article-content table th {
    background: var(--gh-accent);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .3px;
}

.article-content table tr:nth-child(even) td {
    background: var(--gh-bg-muted);
}

.article-content table tr:nth-child(odd) td {
    background: #fff;
}

/* Tags on single */
.blog-tags {
    margin: 18px 0;
    padding: 10px 0;
    border-top: 1px solid var(--gh-border-light);
    border-bottom: 1px solid var(--gh-border-light);
}

.blog-tags ul.list-inline {
    align-items: center;
}

/* Author profile */
.wrap__profile {
    margin: 24px 0;
    background: var(--gh-bg-card);
    border-radius: var(--gh-r-md);
    padding: 20px;
    border: 1px solid var(--gh-border-light);
}

.wrap__profile-author {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.wrap__profile-author > figure {
    margin: 0;
    flex-shrink: 0;
}

.wrap__profile-author > figure img {
    width: 80px;
    height: 80px;
    border-radius: 50% !important;
    object-fit: cover;
}

.wrap__profile-author-detail {
    flex: 1;
}

.wrap__profile-author-detail-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--gh-text-muted);
    margin-bottom: 2px;
}

.wrap__profile-author-detail h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--gh-text);
}

.wrap__profile-author-detail h4 a {
    color: var(--gh-text);
}

.wrap__profile-author-detail p {
    font-size: 13px;
    color: var(--gh-text-muted);
    margin: 0 0 10px;
    line-height: 1.5;
}

.wrap__profile-author-detail .list-inline {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wrap__profile-author-detail .list-inline-item {
    list-style: none;
}

.wrap__profile-author-detail .btn-social {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0 !important;
    border-radius: 50% !important;
    font-size: 13px;
}

/* Single navigation prev/next cards */
.single-navigation-cards {
    margin: 28px 0;
}

.single-navigation-cards .card__post {
    border: 1px solid var(--gh-border-light);
}

/* Related articles */
.related-article {
    margin: 30px 0;
}

.related-article h4 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 0 0 10px;
    margin: 0 0 20px;
    border-bottom: 2px solid var(--gh-border);
    position: relative;
}

.related-article h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--gh-brand);
}

.article__entry-carousel-three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 991px) {
    .article__entry-carousel-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
    .article__entry-carousel-three { grid-template-columns: 1fr; }
}

.article__entry-carousel-three .article__entry {
    background: #fff;
    border: 1px solid var(--gh-border-light);
    border-radius: var(--gh-r-md);
    overflow: hidden;
    box-shadow: var(--gh-shadow-card);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article__entry-carousel-three .item {
    display: block;
    width: 100%;
}

/* Slick: slides and inner wrappers fill the slide width */
.article__entry-carousel.slick-initialized .slick-slide > div,
.article__entry-carousel-three.slick-initialized .slick-slide > div {
    width: 100%;
}

.article__entry-carousel.slick-initialized .item,
.article__entry-carousel-three.slick-initialized .item {
    width: 100%;
}

.article__entry-carousel.slick-initialized .article__entry,
.article__entry-carousel-three.slick-initialized .article__entry {
    width: 100%;
}

.article__entry-carousel-three .article__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.article__entry-carousel-three .article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article__entry-carousel-three .article__content {
    padding: 14px;
    flex: 1;
}

.article__entry-carousel-three .top-news-slider__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 6px;
}

.article__entry-carousel-three .top-news-slider__title a {
    color: var(--gh-text);
}

.article__entry-carousel-three .top-news-slider__title a:hover {
    color: var(--gh-accent);
}

.article__entry-carousel-three .article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 11px;
    color: var(--gh-text-muted);
    margin: 0;
}

.article__entry-carousel-three .article__meta .text-primary {
    color: var(--gh-accent) !important;
    font-weight: 600;
}

/* =========================================================================
   16. Single bookmaker hero
   ========================================================================= */
.single-bookmaker-hero {
    position: relative;
    border-radius: var(--gh-r-md);
    overflow: hidden;
    background: linear-gradient(135deg, var(--gh-brand), var(--gh-accent));
    color: #fff;
    padding: 0;
    min-height: 260px;
    margin: 20px 0 28px;
}

.single-bookmaker-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.single-bookmaker-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3) 60%, rgba(0,163,255,0.45));
}

.single-bookmaker-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.85);
}

.single-bookmaker-hero__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 24px;
    min-height: 260px;
}

.single-bookmaker-hero__logo {
    background: #fff;
    border-radius: var(--gh-r-md);
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 80px;
}

.single-bookmaker-hero__logo img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
}

.single-bookmaker-hero__title {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.single-bookmaker-hero__rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.single-bookmaker-hero__stars {
    display: inline-flex;
    gap: 4px;
    font-size: 22px;
}

.single-bookmaker-hero__stars .fa-star,
.single-bookmaker-hero__stars .fa-star-half-o {
    color: var(--gh-yellow);
}

.single-bookmaker-hero__stars .fa-star-o {
    color: rgba(255,255,255,0.55);
}

.single-bookmaker-hero__rating-text {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.single-bookmaker-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: auto;
    align-items: center;
}

.single-bookmaker-hero__btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 12px 22px !important;
    border-radius: var(--gh-r-md) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.single-bookmaker-hero__btn--apk {
    background: var(--gh-accent) !important;
    color: #fff !important;
    border-color: var(--gh-accent) !important;
}

.single-bookmaker-hero__btn--apk:hover {
    background: var(--gh-accent-dark) !important;
    color: #fff !important;
}

.single-bookmaker-hero__btn--site {
    background: var(--gh-cta) !important;
    color: #fff !important;
    border-color: var(--gh-cta) !important;
}

.single-bookmaker-hero__btn--site:hover {
    background: var(--gh-cta-dark) !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .single-bookmaker-hero__card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .single-bookmaker-hero__actions {
        margin: 0;
    }
}

/* =========================================================================
   17. Comments
   ========================================================================= */
#comments.comments-area {
    margin-top: 32px;
    background: #fff;
    border-radius: var(--gh-r-md);
    padding: 20px;
    border: 1px solid var(--gh-border-light);
}

.comments-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--gh-text);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gh-border);
    position: relative;
}

.comments-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--gh-brand);
}

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

.comment {
    list-style: none;
    margin-bottom: 14px;
    padding: 14px;
    background: var(--gh-bg-card);
    border-radius: var(--gh-r-md);
    border: 1px solid var(--gh-border-light);
}

.comment-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--gh-text-muted);
}

.comment-meta .avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.comment-author .fn {
    font-weight: 700;
    color: var(--gh-text);
    font-size: 14px;
}

.comment-content {
    font-size: 13px;
    line-height: 1.55;
    color: var(--gh-text);
}

.reply a {
    display: inline-block;
    margin-top: 6px;
    color: var(--gh-accent);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.comment-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-text);
}

.comment-form .form-control,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    background: #fff;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-r-md);
    padding: 10px 12px;
    font-size: 14px;
    width: 100%;
    color: var(--gh-text);
}

.comment-form .form-control:focus,
.comment-form textarea:focus,
.comment-form input:focus {
    border-color: var(--gh-accent);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0,163,255,0.12);
}

.comment-form .form-submit input[type="submit"] {
    background: var(--gh-cta);
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: var(--gh-r-md);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-size: 13px;
}

.comment-form .form-submit input[type="submit"]:hover {
    background: var(--gh-cta-dark);
}

/* =========================================================================
   18. Pages (About, Contact, 404, Author, Search)
   ========================================================================= */
.wrap__about-us .team-member figure img,
.member img {
    border-radius: var(--gh-r-md);
    overflow: hidden;
}

.member figcaption {
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    color: var(--gh-text);
}

.wrap__contact-form .form-control {
    background: #fff;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-r-md);
    padding: 10px 12px;
    font-size: 14px;
    width: 100%;
    color: var(--gh-text);
}

.wrap__contact-form .form-control:focus {
    border-color: var(--gh-accent);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0,163,255,0.12);
}

.wrap__contact-form .form-group {
    margin-bottom: 14px;
}

.wrap__contact-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-text);
    margin-bottom: 4px;
    display: inline-block;
}

.wrap__contact-form .required {
    color: var(--gh-danger);
    margin-left: 2px;
}

.wrap__contact-form .btn-primary {
    background: var(--gh-cta);
    border-color: var(--gh-cta);
    padding: 12px 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.alert {
    border-radius: var(--gh-r-md);
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 16px;
}

.alert-success {
    background: rgba(90,204,0,0.12);
    border: 1px solid var(--gh-cta);
    color: #2a6100;
}

.alert-danger {
    background: rgba(231,77,77,0.1);
    border: 1px solid var(--gh-danger);
    color: #a01c1c;
}

/* 404 page */
.error-page {
    padding: 60px 0;
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: var(--gh-brand);
    margin: 0;
}

.error-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--gh-text);
    margin: 10px 0 8px;
}

.error-message {
    color: var(--gh-text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.error-actions .btn {
    background: var(--gh-cta);
    color: #fff;
    border-color: var(--gh-cta);
}

/* Author header */
.author-header {
    padding: 36px 0;
    background: var(--gh-bg-alt);
    border-radius: var(--gh-r-md);
    margin-bottom: 24px;
    text-align: center;
}

.author-header__avatar-wrapper {
    display: flex;
    justify-content: center;
}

.author-header__avatar {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    border-radius: 50% !important;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.author-header__name {
    font-size: 24px;
    font-weight: 800;
    color: var(--gh-text);
    margin: 12px 0 8px;
}

.author-bio__content {
    max-width: 620px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--gh-text-muted);
    line-height: 1.55;
}

/* Search results */
.page-header {
    padding: 12px 0 18px;
}

.page-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gh-text);
    margin: 0 0 10px;
}

.posts-list .card__post {
    margin-bottom: 16px;
}

.no-posts {
    text-align: center;
    padding: 30px 10px;
    background: var(--gh-bg-card);
    border-radius: var(--gh-r-md);
    border: 1px solid var(--gh-border-light);
    color: var(--gh-text-muted);
}

.no-posts h2 {
    color: var(--gh-text);
    margin-bottom: 6px;
    font-size: 20px;
}

/* =========================================================================
   19. Custom blocks — FAQ, Pros/Cons, Download button, TOC, Icon, Match
   ========================================================================= */
/* FAQ block */
.sportbet-faq {
    margin: 24px 0;
}

.sportbet-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sportbet-faq__item {
    border: 3px solid var(--gh-accent);
    border-radius: var(--gh-r-lg);
    background: #fff;
    padding: 0;
    overflow: hidden;
    transition: background .2s ease;
}

.sportbet-faq__item[open] {
    background: var(--gh-accent);
}

.sportbet-faq__item[open] .sportbet-faq__question {
    color: #fff;
}

.sportbet-faq__item[open] .sportbet-faq__question::after {
    transform: rotate(180deg);
    color: #fff;
}

.sportbet-faq__item[open] .sportbet-faq__answer {
    background: #fff;
    color: var(--gh-text);
}

.sportbet-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.35;
    color: var(--gh-text);
    cursor: pointer;
    list-style: none;
    margin: 0;
    position: relative;
}

.sportbet-faq__question::-webkit-details-marker {
    display: none;
}

.sportbet-faq__question::after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 18px;
    color: var(--gh-accent);
    transition: transform .2s ease;
    margin-left: 10px;
}

.sportbet-faq__answer {
    padding: 14px 20px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--gh-text);
    border-top: 1px solid var(--gh-border-light);
}

/* Pros / Cons block */
.sportbet-pros-cons {
    margin: 24px 0;
}

.sportbet-pros-cons__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 575px) {
    .sportbet-pros-cons__grid { grid-template-columns: 1fr; }
}

.sportbet-pros-cons__col {
    border-radius: var(--gh-r-lg);
    padding: 18px 20px;
}

.sportbet-pros-cons__col--pros {
    background: var(--gh-success-soft);
}

.sportbet-pros-cons__col--cons {
    background: var(--gh-danger-soft);
}

.sportbet-pros-cons__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--gh-text);
    margin: 0 0 12px;
}

.sportbet-pros-cons__title-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: #fff;
    border: 3px solid transparent;
    line-height: 1;
}

.sportbet-pros-cons__title-icon--plus {
    background: var(--gh-cta);
    color: #fff;
}

.sportbet-pros-cons__title-icon--plus::before {
    content: "+";
}

.sportbet-pros-cons__title-icon--minus {
    background: var(--gh-danger);
    color: #fff;
}

.sportbet-pros-cons__title-icon--minus::before {
    content: "−";
}

.sportbet-pros-cons__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sportbet-pros-cons__list li {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--gh-text);
    font-weight: 600;
    list-style: none;
}

.sportbet-pros-cons__list--pros li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gh-cta);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sportbet-pros-cons__list--cons li::before {
    content: "−";
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gh-danger);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Download button block */
.sportbet-download-button-block {
    margin: 20px 0;
}

.sportbet-download-button__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gh-cta);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--gh-r-md);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: background .15s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.sportbet-download-button__link:hover {
    background: var(--gh-cta-dark);
    color: #fff;
    text-decoration: none;
}

.sportbet-download-button__icon {
    font-size: 18px;
    line-height: 1;
}

/* Post navigation / TOC block */
.custom-post-navigation-block {
    background: var(--gh-bg-info);
    border-radius: var(--gh-r-lg);
    padding: 18px 22px;
    margin: 20px 0;
}

.custom-post-navigation-block__title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--gh-accent);
}

.custom-post-navigation-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.custom-post-navigation-block__list li {
    list-style: none;
}

.custom-post-navigation-block__list a {
    color: var(--gh-accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.custom-post-navigation-block__list a:hover {
    color: var(--gh-accent-dark);
    text-decoration: underline;
}

.custom-post-navigation-block__list a::before {
    content: "▸";
    font-size: 11px;
    color: var(--gh-accent);
}

/* Icon block */
.sportbet-icon {
    display: inline-block;
    color: var(--gh-accent);
    font-size: 20px;
}

.sportbet-icon--align-center { display: block; text-align: center; }
.sportbet-icon--align-right  { display: block; text-align: right; }

/* Match / team-results blocks */
.sportbet-single-match-block,
.sportbet-team-results-block {
    background: #fff;
    border: 1px solid var(--gh-border-light);
    border-radius: var(--gh-r-md);
    padding: 16px;
    margin: 20px 0;
    box-shadow: var(--gh-shadow-card);
}

.sportbet-single-match-block__loading,
.sportbet-team-results-block__loading {
    text-align: center;
    padding: 20px;
    color: var(--gh-text-muted);
    font-size: 13px;
}

.sportbet-single-match-block__error,
.sportbet-team-results-block__error {
    padding: 10px;
    background: rgba(231,77,77,0.1);
    border-radius: var(--gh-r-md);
    color: var(--gh-danger);
    font-size: 13px;
}

.sportbet-single-match-block__results-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gh-accent);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--gh-r-md);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.sportbet-single-match-block__results-link:hover {
    background: var(--gh-accent-dark);
    color: #fff;
}

/* Place-a-bet 1xbet block */
.sportbet-place-a-bet-wrapper {
    background: var(--gh-bg-dark);
    color: #fff;
    border-radius: var(--gh-r-md);
    padding: 16px;
    margin: 20px 0;
}

.sportbet-place-a-bet-inner .risk-free-bet-event__title {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
}

.risk-free-bet-event-wrap__btn {
    background: var(--gh-accent);
    color: #fff;
    border: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.risk-free-bet-event-pagination .swiper-pagination-bullet-active {
    background: var(--gh-accent);
}

/* =========================================================================
   20. Footer
   ========================================================================= */
footer {
    margin-top: 48px;
}

.wrapper__footer.bg__footer-dark {
    background: var(--gh-brand) !important;
    color: #fff;
    padding: 36px 0 20px;
    border-top: 0;
}

.widget__footer {
    margin-bottom: 20px;
}

.widget__footer .footer-title {
    color: #fff !important;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin: 0 0 14px;
    padding: 0 0 8px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    position: relative;
}

.widget__footer .footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 36px;
    height: 2px;
    background: var(--gh-yellow);
}

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

.widget__footer .list-unstyled li {
    list-style: none;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.widget__footer .list-unstyled li:last-child {
    border-bottom: 0;
}

.widget__footer .list-unstyled a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity .15s ease;
}

.widget__footer .list-unstyled a:hover {
    color: var(--gh-yellow);
}

.widget__footer .list-unstyled a::before {
    content: "›";
    color: var(--gh-yellow);
}

/* Footer about column */
.footer-about-logo-wrap {
    margin-bottom: 12px;
}

.footer-about-logo {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-about-text,
.footer-about-email {
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px !important;
    line-height: 1.55;
}

.footer-about-email a {
    color: #fff !important;
    font-weight: 600;
    text-decoration: underline;
}

/* Footer post list */
.footer__post-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer__post-item {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    list-style: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    align-items: flex-start;
}

.footer__post-item:last-child {
    border-bottom: 0;
}

.footer__post-item::before {
    content: none;
}

.footer__post-thumb {
    flex-shrink: 0;
    width: 62px;
    height: 52px;
    overflow: hidden;
    border-radius: var(--gh-r-sm);
}

.footer__post-thumb-img,
.footer__post-thumb img {
    width: 62px;
    height: 52px;
    object-fit: cover;
    display: block;
}

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

.footer__post-title {
    margin-bottom: 4px;
}

.footer__post-title a {
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    display: block;
    text-decoration: none;
}

.footer__post-title a:hover {
    color: var(--gh-yellow) !important;
}

.footer__post-date {
    font-size: 11px;
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
}

/* Footer bottom */
.wrapper__footer-bottom {
    background: var(--gh-brand-dark) !important;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.bg__footer-bottom-section {
    padding: 0;
}

.wrapper__footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.9) !important;
    margin: 0 !important;
}

.wrapper__footer-bottom a {
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
}

.wrapper__footer-bottom a:hover {
    color: var(--gh-yellow) !important;
}

.border-top-1 {
    border-top: 0;
}

/* Back to top */
#return-to-top {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: var(--gh-brand);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background .15s ease;
}

#return-to-top.visible,
#return-to-top[style*="display: block"],
#return-to-top[style*="display:block"] {
    display: flex !important;
}

#return-to-top:hover {
    background: var(--gh-brand-dark);
    color: #fff;
}

#return-to-top i {
    font-size: 16px;
}

/* =========================================================================
   21. Responsive refinements
   ========================================================================= */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none;
    }

    .topbar { display: none !important; }

    .nav-item.search {
        display: none;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 24px; line-height: 30px; }
    h2 { font-size: 20px; line-height: 26px; }

    .wrap__article-detail-title h1 { font-size: 22px; }
    .wrap__article-detail-title h3 { font-size: 14px; }

    .tc-featured-title h5 { font-size: 18px; }

    h4.border_section,
    h1.border_section,
    h2.border_section,
    h3.border_section { font-size: 18px; }

    .archive-bookmakers__row-inner > div {
        padding: 6px 10px;
    }

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

/* =========================================================================
   22. Utility overrides (bootstrap colors → brand colors)
   ========================================================================= */
.text-primary {
    color: var(--gh-accent) !important;
}

.bg-light {
    background: var(--gh-bg-alt) !important;
}

.bg-dark {
    background: var(--gh-bg-dark) !important;
}

.bg-white {
    background: #fff !important;
}

.text-white-50 {
    color: rgba(255,255,255,0.7) !important;
}

/* Rounded circle helper */
.rounded-circle {
    border-radius: 50% !important;
}

/* Ensure images don't overflow */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Clearfix safety */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Restore Bootstrap row reset inside our grid zones */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

.no-gutters { margin-left: 0; margin-right: 0; }
.no-gutters > [class*="col-"] { padding-left: 0; padding-right: 0; }

/* =========================================================================
   23. High-specificity overrides for legacy CSS rules
   ========================================================================= */

/* Sidebar top news card — the base theme makes title white on an overlay; we render it as a normal list */
.wrapper__list__article .card__post .card__post__body .card__post__content,
.wrapper__list__article-small .card__post .card__post__content {
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    color: var(--gh-text) !important;
}

.wrapper__list__article .card__post .card__post__body .card__post__content .card__post__title h5,
.wrapper__list__article .card__post .card__post__body .card__post__content .card__post__title h6,
.wrapper__list__article-small .card__post .card__post__content .card__post__title h5,
.wrapper__list__article-small .card__post .card__post__content .card__post__title h6 {
    color: var(--gh-text) !important;
    font-weight: 700 !important;
}

.wrapper__list__article .card__post .card__post__body .card__post__content .card__post__title h5 a,
.wrapper__list__article .card__post .card__post__body .card__post__content .card__post__title h6 a,
.wrapper__list__article-small .card__post .card__post__content .card__post__title h5 a,
.wrapper__list__article-small .card__post .card__post__content .card__post__title h6 a {
    color: var(--gh-text) !important;
}

.wrapper__list__article .card__post .card__post__body .card__post__content .card__post__title h5 a:hover,
.wrapper__list__article .card__post .card__post__body .card__post__content .card__post__title h6 a:hover,
.wrapper__list__article-small .card__post .card__post__content .card__post__title h5 a:hover,
.wrapper__list__article-small .card__post .card__post__content .card__post__title h6 a:hover {
    color: var(--gh-accent) !important;
}

/* Card post title — default in-flow styling (not absolute overlay) */
.card__post .card__post__body .card__post__content {
    position: static;
    padding: 14px 16px 16px;
    background: transparent;
}

.card__post .card__post__body .card__post__content .card__post__title h5 a,
.card__post .card__post__body .card__post__content .card__post__title h4 a,
.card__post .card__post__body .card__post__content .card__post__title h6 a {
    color: var(--gh-text);
}

.card__post .card__post__body .card__post__content .card__post__title h5 a:hover,
.card__post .card__post__body .card__post__content .card__post__title h4 a:hover,
.card__post .card__post__body .card__post__content .card__post__title h6 a:hover {
    color: var(--gh-accent);
}

.card__post .card__post__body .card__post__content .card__post__title h5,
.card__post .card__post__body .card__post__content .card__post__title h4,
.card__post .card__post__body .card__post__content .card__post__title h6 {
    color: var(--gh-text);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.35;
}

/* Overlay gradient on cards with category label overlaid — keep hidden */
.bg__post-cover {
    position: static !important;
    background-image: none !important;
}

/* Loading container — match brand */
.loading-container {
    background-color: #fff !important;
}

.loading-container ul li p {
    color: var(--gh-brand) !important;
}

/* Topbar — restore dark bar (original was yellow via --color-nav-underline) */
.topbar {
    /*background-color: var(--gh-bg-dark) !important;*/
    min-height: auto !important;
    padding: 8px 0 !important;
}

.topbar .row {
    min-height: 0;
    align-items: center;
}

.topbar .topbar-left .topbar-text,
.topbar .topbar-datetime,
.topbar .topbar-text,
.topbar .topbar-datetime__date,
.topbar .topbar-datetime__time {
    color: var(--gh-text) !important;
    padding: 0 !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
}

/* Topbar links (wp_nav_menu output) */
.topbar .topbar-link a,
.topbar-link li a {
    color: var(--gh-text) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

/* Topbar apk btn — override base */
.topbar .topbar-apk-btn,
.topbar-apk-btn {
    background-color: var(--gh-yellow) !important;
    color: #000 !important;
    border-color: transparent !important;
    padding: 6px 12px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
}

.topbar .topbar-apk-btn:hover,
.topbar-apk-btn:hover {
    background-color: #ffde38 !important;
    color: #000 !important;
}

/* Navbar structural fixes */
.navbar-expand-lg .navbar-nav {
    flex-direction: row;
}

.navbar-expand-lg .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-basis: auto;
}

@media (max-width: 991px) {
    .navbar-expand-lg .navbar-collapse,
    #main_nav99.navbar-collapse.collapse {
        display: none !important;
    }
}

/* Bootstrap .bg-light override (used by header wrapper) */
.bg-light,
header.bg-light {
    background-color: transparent !important;
}

/* Navigation wrap — keep green even when combined with Bootstrap .bg-white utility.
   This must beat the later-declared `.bg-white { background: #fff !important }` rule. */
header .navigation-wrap,
header .navigation-wrap.bg-white,
.navigation-wrap.navigation-shadow,
.navigation-wrap.bg-white {
    background: var(--gh-brand) !important;
    background-color: var(--gh-brand) !important;
    min-height: 64px;
}

/* Navbar content baseline: make sure .navbar has enough height to show the brand strip
   even if no logo/menu is configured. */
header .navigation-wrap .navbar {
    min-height: 56px;
    padding-top: 10px;
    padding-bottom: 10px;
    /*background: transparent !important;*/
}

/* section.bg-light inside trending carousel should get alt bg */
section.bg-light {
    background-color: var(--gh-bg-alt) !important;
}

/* Force Montserrat everywhere, overriding theme's Poppins in footer/etc. */
body,
.widget__footer .footer-title,
.widget__footer,
.wrapper__footer,
.footer-about-text,
.wrap__profile-author-detail,
.wrap__profile-author-detail h4 {
    font-family: var(--gh-font) !important;
}

/* Wrap article detail title overrides (base has larger size) */
.wrap__article-detail-title h1 {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--gh-text) !important;
    line-height: 1.25 !important;
}

@media (max-width: 767px) {
    .wrap__article-detail-title h1 {
        font-size: 22px !important;
    }
}

.wrap__article-detail-title h3 {
    font-size: 16px !important;
    color: var(--gh-text-muted) !important;
    font-weight: 500 !important;
    font-family: var(--gh-font) !important;
}

/* Archive "no posts" */
.no-posts h2 {
    color: var(--gh-text) !important;
}

/* Fix potential float-based layouts in card__post__body */
.card__post .card__post__body {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 14px 16px 16px;
}

.card__post.card__post-list .card__post__body {
    display: block;
}

/* Single bookmaker — ensure article content is properly positioned */
.single-bookmaker-hero {
    isolation: isolate;
}

/* Ensure navbar dropdown sub-menu structure works with legacy CSS */
.navbar-nav .sub-menu {
    display: block;
}

/* Fix menu bullets being double-rendered */
.navbar-nav li,
.topbar-link li,
.topbar-sosmed li,
.list-unstyled li,
.footer__post-item,
.blog-tags li,
.wrap__social__media li {
    list-style: none !important;
}

.navbar-nav li::before,
.topbar-link li::before,
.topbar-sosmed li::before,
.wrap__social__media li::before {
    content: none !important;
}

/* Swiper overrides for smaller arrow size & brand color */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: 800 !important;
}

/* Post card in archive list — ensure two-column layout works */
.card__post.card__post-list.card__post__transition.mt-30 {
    padding: 14px !important;
    background: #fff !important;
    border-radius: var(--gh-r-md) !important;
    box-shadow: var(--gh-shadow-card) !important;
    border: 1px solid var(--gh-border-light) !important;
}

.card__post.card__post-list.card__post__transition.mt-30 > .row {
    align-items: center;
    margin: 0;
}

/* Hide any template bullets coming from bootstrap ul without list-unstyled */
#primary-content ul.list-inline {
    list-style: none;
    padding: 0;
}

#primary-content ul.list-inline > li {
    list-style: none;
}

/* Article content h2 accent color using new brand */
.article-content h2::before {
    content: none;
}

/* Remove extra borders from containers in ie */
*:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gh-accent);
    outline-offset: 2px;
}

/* Make sure clicked .nav-link on search doesn't get underline */
.nav-item.search .nav-link:hover {
    text-decoration: none;
}

/* Topbar right — list items horizontal */
.topbar .topbar-right,
.topbar-right {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar .topbar-right > * {
    list-style: none;
}

.topbar-link,
.topbar-sosmed {
    display: flex;
    gap: 10px;
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.topbar-link > li,
.topbar-sosmed > li {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

/* Make the trending carousel visually distinct */
section.bg-light > .container > .row > .col-md-12 {
    padding: 0 12px;
}

/* Hide any search form row mt-3 overflow */
.top-search .container .row.mt-3 {
    margin-top: 0 !important;
    flex-wrap: nowrap;
}

/* Single page — make the top 8/4 layout nice */
section.pb-80 > .container > .row > .col-md-12 + .col-md-8 {
    padding-right: 20px;
}

@media (min-width: 992px) {
    section.pb-80 > .container > .row > .col-md-8 {
        padding-right: 28px;
    }
}

/* Ensure pros-cons heading icons render correctly even if base ::before was different */
.sportbet-pros-cons__title-icon {
    border-color: transparent !important;
}

/* =========================================================================
   24. Print adjustments
   ========================================================================= */
@media print {
    header, footer, .sticky-top, #return-to-top { display: none !important; }
    body { background: #fff; color: #000; }
    a { color: #000; text-decoration: underline; }
}

/* Reading-time reuses .total-views-read, which styles.css inflates to 30px inside the
   article detail. Pin it back to the intended small label size. */
.wrap__article-detail-content .total-views-read.reading-time {
    font-size: 13px;
    font-weight: 700;
    color: var(--gh-text);
    text-align: left;
    margin-right: 0;
}
