@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --btv-red: #b40019;
    --btv-red-dark: #8d0014;
    --btv-dark: #061a33;
    --btv-text: #22324b;
    --btv-muted: #667085;
    --btv-bg: #f4f6f9;
    --btv-white: #ffffff;
    --btv-border: #e5e7eb;

    --blue-soft-bg: #eef4ff;
    --blue-main: #061a33;
    --blue-dark: #061a33;

    --icon-red: #a6001a;
    --icon-red-2: #af001c;
    --icon-blue-hover: #003271;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(180, 0, 25, .05), transparent 320px),
        linear-gradient(180deg, #ffffff 0%, var(--btv-bg) 300px);
    color: var(--btv-text);
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1300px, calc(100% - 42px));
    margin: 0 auto;
}

.main {
    padding-top: 30px;
}

/* =========================================================
   TOPBAR
========================================================= */
.btv-topbar {
    height: 38px;
    background: linear-gradient(90deg, #8c0016 0%, #061a33 44%, #740014 76%, #8c0016 100%);
    background-size: 260% 100%;
    animation: btvTopbarColor 10s ease infinite;
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@keyframes btvTopbarColor {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.topbar-label {
    height: 38px;
    min-width: 118px;
    padding: 0 15px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex: 0 0 auto;
}

.topbar-label i {
    font-size: 16px;
}

.topbar-marquee {
    flex: 1;
    height: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.topbar-track {
    width: max-content;
    height: 38px;
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    animation: btvTopbarMarquee 70s linear infinite;
    font-size: 13px;
    font-weight: 500;
    will-change: transform;
}

/* ÜSTÜNƏ GƏLƏNDƏ DAYANSIN */
.btv-topbar:hover .topbar-track,
.topbar-marquee:hover .topbar-track,
.topbar-track:hover {
    animation-play-state: paused;
}

/* XƏBƏR LİNKLƏRİ */
.topbar-track a,
.topbar-track span {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    height: 38px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.topbar-track a:hover {
    color: #ffffff;
    opacity: .82;
}

.topbar-track i {
    font-size: 5px;
    flex: 0 0 auto;
    opacity: .95;
}

@keyframes btvTopbarMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .btv-topbar {
        height: 36px;
    }

    .topbar-label {
        height: 36px;
        min-width: 42px;
        width: 42px;
        padding: 0;
        justify-content: center;
    }

    .topbar-label span {
        display: none;
    }

    .topbar-marquee {
        height: 36px;
    }

    .topbar-track {
        height: 36px;
        gap: 14px;
        font-size: 12px;
        font-weight: 500;
    }

    .topbar-track a,
    .topbar-track span {
        height: 36px;
        font-size: 12px;
        font-weight: 500;
    }
}
/* =========================================================
   DESKTOP HEADER
========================================================= */

.desktop-header {
    background: #ffffff;
    border-bottom: 1px solid var(--btv-border);
}

.header-info {
    height: 46px;
    border-bottom: 1px solid var(--btv-border);
    background: #ffffff;
}

.info-row {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.info-links {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 13px;
    font-weight: 500;
    color: #344054;
}

.info-links a {
    padding: 0 11px;
    border-right: 1px solid #d7dce3;
    line-height: 1;
}

.info-links a:first-child {
    padding-left: 0;
}

.info-links a:last-child {
    border-right: 0;
}

.info-links a:hover {
    color: var(--btv-red);
}

.info-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--btv-red);
    font-size: 13px;
    font-weight: 500;
}

.info-right span {
    padding-right: 8px;
    border-right: 1px solid #d7dce3;
}

.weather-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--btv-red);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.weather-inline i {
    font-size: 20px;
}

/* =========================================================
   BRAND ROW
========================================================= */

.header-brand {
    height: 74px;
    border-bottom: 1px solid var(--btv-border);
    background: #ffffff;
}

.brand-row {
    height: 74px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.btv-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.btv-logo img {
    height: 77px;
    width: auto;
}

.btv-live,
.sticky-live,
.mobile-live {
    background: linear-gradient(135deg, #c90022, #990017);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    box-shadow: none;
    white-space: nowrap;
}

.btv-live {
    height: 38px;
    padding: 0 17px;
    border-radius: 10px;
    gap: 8px;
    font-size: 17px;
    font-weight: 800;
}

.btv-live i {
    font-size: 15px;
}

/* =========================================================
   SEARCH
========================================================= */

.btv-search-form {
    position: relative;
}

.desktop-search {
    width: 330px;
    height: 34px;
    display: flex;
    align-items: center;
    margin-left: auto;
    border-radius: 7px;
    background: #d8919b;
}

.desktop-search input {
    flex: 1;
    height: 34px;
    border: 0;
    outline: none;
    background: transparent;
    color: #ffffff;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
}

.desktop-search input::placeholder {
    color: rgba(255, 255, 255, .88);
}

.desktop-search button {
    width: 42px;
    height: 34px;
    border: 0;
    background: #a30a21;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 17px;
    border-radius: 0 7px 7px 0;
}

.search-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 5000;
    background: #ffffff;
    border: 1px solid var(--btv-border);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(6, 26, 51, .14);
    overflow: hidden;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.search-suggestions a {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--btv-border);
    transition: .18s ease;
}

.search-suggestions a:last-child {
    border-bottom: 0;
}

.search-suggestions a:hover {
    background: #f8fafc;
}

.search-suggestions .suggestion-time {
    min-width: 42px;
    color: var(--btv-red);
    font-size: 12px;
    font-weight: 800;
}

.search-suggestions .suggestion-category {
    display: block;
    margin-bottom: 3px;
    color: var(--blue-main);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.search-suggestions .suggestion-title {
    display: block;
    color: var(--btv-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.search-suggestions .empty-suggestion {
    padding: 13px 14px;
    color: var(--btv-muted);
    font-size: 13px;
    font-weight: 600;
}

/* =========================================================
   CURRENCY
========================================================= */

.currency-list {
    display: flex;
    align-items: center;
    gap: 16px;
}

.currency-list span {
    height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 800;
    color: #344054;
    white-space: nowrap;
}

.currency-list span > i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #b2001c;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 12px;
    box-shadow: none;
}

.currency-list small {
    color: #12a66a;
    font-size: 10px;
}

/* =========================================================
   CATEGORY ROW
========================================================= */

.header-menu {
    height: 58px;
    background: #ffffff;
}

.menu-row {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.btv-categories {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: visible;
}

.btv-categories > a,
.nav-dropdown-toggle {
    color: #667085;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: .2s ease;
}

.btv-categories > a:hover,
.nav-dropdown-toggle:hover {
    color: var(--btv-red);
}

.nav-dropdown {
    position: relative;
    flex: 0 0 auto;
}

.nav-dropdown-toggle {
    height: 34px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.nav-dropdown-toggle i {
    font-size: 10px;
    transition: .2s ease;
}

.nav-dropdown.active .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 180px;
    background: #ffffff;
    border: 1px solid var(--btv-border);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(6, 26, 51, .13);
    padding: 8px;
    display: none;
    z-index: 3000;
}

.nav-dropdown.active .nav-dropdown-menu {
    display: grid;
    gap: 2px;
}

.nav-dropdown-menu a {
    min-height: 34px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 9px;
    color: #344054;
    font-size: 13px;
    font-weight: 500;
}

.nav-dropdown-menu a:hover {
    background:#003271;
    color: #ffffff;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.btv-socials {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

.btv-socials a,
.sticky-socials a,
.menu-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--icon-red);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 15px;
    transition: .2s ease;
    box-shadow: none;
}

.btv-socials a:hover,
.sticky-socials a:hover,
.menu-socials a:hover {
    background: var(--icon-blue-hover);
    color: #ffffff;
}

/* =========================================================
   FIXED HEADER
========================================================= */

.sticky-header {
    height: 66px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--btv-border);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2000;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    overflow: visible;
}

body.header-fixed .sticky-header {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-row {
    height: 66px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: visible;
}

.sticky-logo {
    flex: 0 0 auto;
}

.sticky-logo img {
    height: 30px;
    width: auto;
}

.sticky-live {
    height: 32px;
    padding: 0 11px;
    border-radius: 8px;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    flex: 0 0 auto;
}

.sticky-categories {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    overflow: visible;
    white-space: nowrap;
    position: relative;
}

.sticky-categories > a,
.sticky-categories .nav-dropdown-toggle {
    color: #344054;
    font-size: 14.2px;
    font-weight: 500;
    white-space: nowrap;
}

.sticky-categories > a:hover,
.sticky-categories .nav-dropdown-toggle:hover {
    color: var(--btv-red);
}

.sticky-categories .nav-dropdown {
    position: relative;
    flex: 0 0 auto;
    z-index: 2600;
}

.sticky-header .nav-dropdown-menu {
    top: calc(100% + 15px);
    right: 0;
    z-index: 6000;
}

.sticky-header .nav-dropdown.active .nav-dropdown-menu {
    display: grid;
}

.header-icon-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(6, 26, 51, .05);
    color: var(--btv-dark);
    display: grid;
    place-items: center;
    font-size: 17px;
    flex: 0 0 auto;
}

.header-icon-btn:hover {
    background: rgba(180, 0, 25, .08);
    color: var(--btv-red);
}

.sticky-socials {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.sticky-socials a {
    width: 30px;
    height: 30px;
    font-size: 13px;
    background: var(--icon-red-2);
    color: #ffffff;
    flex: 0 0 auto;
}

.sticky-socials a:hover {
    background: var(--icon-blue-hover);
    color: #ffffff;
}

/* =========================================================
   MOBILE HEADER
========================================================= */

.mobile-header {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid var(--btv-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mobile-row {
    height: 64px;
    width: calc(100% - 24px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo {
    flex: 1;
    min-width: 0;
}

.mobile-logo img {
    height: 31px;
    width: auto;
}

.mobile-live {
    height: 34px;
    padding: 0 11px;
    border-radius: 9px;
    gap: 7px;
    font-size: 12px;
    font-weight: 800;
}

.mobile-icon-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(6, 26, 51, .05);
    color: var(--btv-dark);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.mobile-categories-bar {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid var(--btv-border);
}

.mobile-categories-scroll {
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    padding: 10px 12px;
    white-space: nowrap;
    scrollbar-width: none;
}

.mobile-categories-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-categories-scroll a {
    color: #667085;
    font-size: 13px;
    font-weight: 500;
}

/* =========================================================
   MODALS
========================================================= */

.btv-overlay {
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(6, 26, 51, .55);
    backdrop-filter: blur(8px);
    display: none;
}

.btv-overlay.active {
    display: block;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(180, 0, 25, .08);
    color: var(--btv-red);
    display: grid;
    place-items: center;
    font-size: 20px;
}

.search-box {
    width: min(620px, calc(100% - 28px));
    margin: 120px auto 0;
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
}

.search-box .modal-close {
    position: absolute;
    right: 18px;
    top: 18px;
}

.search-box h3 {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 800;
}

.modal-search {
    display: flex;
    gap: 12px;
}

.modal-search input {
    flex: 1;
    height: 52px;
    border: 1px solid var(--btv-border);
    border-radius: 999px;
    padding: 0 20px;
    outline: none;
    font-size: 15px;
}

.modal-search button[type="submit"] {
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: var(--btv-red);
    color: #ffffff;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* =========================================================
   MENU MODAL SIMPLE
========================================================= */

.menu-box {
    width: min(390px, calc(100% - 24px));
    min-height: 100vh;
    background: #ffffff;
    margin: 0 auto;
    padding: 22px 0 42px;
    overflow-y: auto;
}

.menu-head {
    width: calc(100% - 40px);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-head img {
    height: 32px;
    width: auto;
}

.menu-simple-categories {
    width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.menu-simple-categories a {
    min-height: auto;
    border-bottom: 0;
    color: #22324b;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
}

.menu-simple-categories a:hover {
    color: var(--btv-red);
}

.menu-divider {
    width: calc(100% - 40px);
    height: 1px;
    margin: 18px auto;
    background: var(--btv-border);
}

.menu-info-line {
    width: calc(100% - 40px);
    margin: 0 auto 18px;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--btv-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-info-line span {
    color: #344054;
    font-size: 13px;
    font-weight: 500;
}

.menu-info-line i {
    width: 18px;
    color: var(--btv-red);
    margin-right: 6px;
}

.menu-simple-links {
    width: calc(100% - 40px);
    margin: 0 auto 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--btv-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-simple-links a {
    color: #344054;
    font-size: 13px;
    font-weight: 500;
}

.menu-simple-links a:hover {
    color: var(--btv-red);
}

.menu-socials {
    width: calc(100% - 40px);
    margin: 24px auto 0;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

/* =========================================================
   TEMP
========================================================= */

.test-area {
    min-height: 430px;
    padding: 40px 0;
}

.test-area h1 {
    margin: 0 0 10px;
    color: var(--btv-red);
    font-size: 42px;
    font-weight: 800;
}

.test-area p {
    color: var(--btv-muted);
}

.btv-footer {
    border-top: 1px solid var(--btv-border);
    background: #ffffff;
    padding: 24px 0;
    color: var(--btv-muted);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1280px) {
    .container {
        width: min(1240px, calc(100% - 34px));
    }

    .btv-categories {
        gap: 12px;
    }

    .btv-categories > a,
    .nav-dropdown-toggle {
        font-size: 12.5px;
    }

    .btv-socials {
        gap: 7px;
    }

    .btv-socials a {
        width: 33px;
        height: 33px;
        font-size: 14px;
    }
}

@media (max-width: 1180px) {
    .desktop-search {
        width: 260px;
    }

    .sticky-socials {
        display: none;
    }

    .sticky-categories {
        gap: 10px;
    }

    .sticky-categories > a,
    .sticky-categories .nav-dropdown-toggle {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .currency-list {
        display: none;
    }

    .btv-categories {
        overflow-x: auto;
        overflow-y: visible;
        scrollbar-width: none;
    }

    .btv-categories::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 24px);
    }

    .btv-topbar {
        height: 34px;
    }

    .topbar-label {
        min-width: 42px;
        width: 42px;
        padding: 0;
        justify-content: center;
    }

    .topbar-label span {
        display: none;
    }

    .topbar-track {
        font-size: 12px;
        gap: 14px;
    }

    .desktop-header,
    .sticky-header {
        display: none;
    }

    .mobile-header,
    .mobile-categories-bar {
        display: block;
    }

    .main {
        padding-top: 24px;
    }

    .search-box {
        margin-top: 90px;
        padding: 24px;
    }

    .modal-search {
        flex-direction: column;
    }

    .modal-search button[type="submit"] {
        width: 100%;
        justify-content: center;
    }

    .search-suggestions {
        top: calc(100% + 6px);
    }

    .menu-box {
        width: min(390px, calc(100% - 24px));
    }
}

@media (max-width: 460px) {
    .mobile-logo img {
        height: 28px;
    }

    .mobile-live span {
        display: none;
    }

    .mobile-live {
        width: 34px;
        padding: 0;
        justify-content: center;
    }
}


/* =========================================================
   HOME PAGE
========================================================= */

.main {
    padding-top: 0;
}

.home-page {
    padding-top: 0;
    padding-bottom: 40px;
}



@keyframes adSweep {
    0% {
        transform: translateX(0) skewX(-18deg);
    }

    100% {
        transform: translateX(1300px) skewX(-18deg);
    }
}

@keyframes adMailPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: .88;
        transform: translateY(-1px);
    }
}

@keyframes adFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1px);
    }
}

/* HERO GRID */

.home-hero-section {
    padding: 0 0 20px;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 235px;
    gap: 12px;
    align-items: start;
}

/* XÆBÆR LENTÄ° */

.headline-feed-box {
    background: #ffffff;
    border: 1px solid #d9dfe8;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 390px;
}

.headline-feed-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 12px;
    border-bottom: 1px solid #e6ebf1;
}

.headline-feed-head h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--btv-dark);
}

.headline-feed-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--btv-red);
    box-shadow: 0 0 0 4px rgba(180, 0, 25, .12);
}

.headline-feed-body {
    flex: 1;
    max-height: 310px;
    overflow-y: auto;
    padding: 8px 11px 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--btv-red) #f5d8de;
}

.headline-feed-body::-webkit-scrollbar {
    width: 6px;
}

.headline-feed-body::-webkit-scrollbar-thumb {
    background: var(--btv-red);
    border-radius: 10px;
}

.headline-feed-body::-webkit-scrollbar-track {
    background: #f5d8de;
    border-radius: 10px;
}

.headline-feed-item {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f7;
}

.headline-feed-item:last-child {
    border-bottom: 0;
}

.headline-feed-item h4 {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: #061a33;
}

.headline-feed-item h4 span {
    display: inline-block;
    margin-left: 4px;
    color: var(--btv-red);
    font-size: 12px;
    font-weight: 800;
}

.headline-feed-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: #8b97a8;
    font-size: 11px;
    font-weight: 500;
}

.headline-feed-more {
    min-height: 38px;
    margin: 10px;
    border-radius: 999px;
    background: var(--btv-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
}

/* ÆSAS SLIDER */

.hero-slider-card {
    min-width: 0;
}

.hero-slider {
    position: relative;
    min-height: 390px;
    border-radius: 10px;
    overflow: hidden;
    background: #dfe5ef;
    box-shadow: 0 14px 30px rgba(6, 26, 51, .10);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    display: block;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.04) 0%,
        rgba(0,0,0,.10) 25%,
        rgba(0,0,0,.72) 100%
    );
}

.hero-slide-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    z-index: 3;
    color: #ffffff;
}

.hero-slide-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 9px;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 3px 8px rgba(0,0,0,.45);
}

.hero-slide-meta span:first-child {
    font-weight: 800;
}

.hero-slide h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.16;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 5px 16px rgba(0,0,0,.55);
}

/* SLIDER RÆQÆMLÆRÄ° */

.hero-pagination {
    width: 100%;
    display: flex;
    gap: 5px;
    margin-top: 6px;
}

.hero-pagination-btn {
    flex: 1 1 0;
    min-width: 0;
    height: 32px;
    border: 0;
    border-radius: 6px;
    background: #b40019;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition: .2s ease;
}

.hero-pagination-btn.active {
    background: #667085;
    color: #ffffff;
}

.hero-pagination-btn:hover {
    background: #d94c64;
    color: #ffffff;
}

/* REDAKTOR SEÃ‡Ä°MÄ° - YENÄ° SADÆ FORM */

.editor-choice-area {
    min-width: 0;
}

.editor-title {
    margin: 0 0 10px;
    color: #111827;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
}

.editor-slider {
    position: relative;
    height: 390px;
    overflow: hidden;
    border: 2px solid var(--btv-red);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(6, 26, 51, .10);
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.editor-slider:active {
    cursor: grabbing;
}

.editor-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.editor-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.editor-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.editor-red-shadow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 62%;
    background: linear-gradient(
        180deg,
        rgba(180, 0, 25, 0) 0%,
        rgba(180, 0, 25, .55) 44%,
        rgba(180, 0, 25, .94) 100%
    );
    z-index: 2;
}

.editor-title-overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 16px;
    z-index: 3;
}

.editor-title-overlay h4 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.18;
    font-weight: 800;
    text-shadow: 0 5px 15px rgba(0,0,0,.40);
}

.editor-media-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,.92);
    background: rgba(180, 0, 25, .35);
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 14px;
    backdrop-filter: blur(4px);
}

/* XÆBÆR KARTLARI */

.news-grid-section {
    padding: 8px 0 0;
}

.section-head {
    margin-bottom: 18px;
}

.section-head h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: var(--btv-dark);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.news-card {
    background: #ffffff;
    border: 1px solid var(--btv-border);
    border-radius: 12px;
    overflow: hidden;
}

.news-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.04);
}

.news-card-body {
    padding: 14px 15px 16px;
}

.news-card-category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--btv-red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-card-body h4 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.news-card-body h4 a {
    color: var(--btv-dark);
}

.news-card-date {
    color: #8b97a8;
    font-size: 13px;
    font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 1280px) {
    .home-hero-grid {
        grid-template-columns: 220px minmax(0, 1fr) 225px;
    }

    .hero-slide h2 {
        font-size: 22px;
    }

    .editor-title {
        font-size: 20px;
    }
}

@media (max-width: 1100px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .headline-feed-box {
        min-height: auto;
        order: 2;
    }

    .headline-feed-body {
        max-height: 250px;
    }

    .hero-slider-card {
        order: 1;
    }

    .editor-choice-area {
        order: 3;
    }

    .editor-slider {
        height: 380px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-page {
        padding-top: 0;
    }

    .home-ad-section {
        padding-top: 0;
    }

    .home-top-ad {
        min-height: 76px;
        padding: 10px 12px;
    }

    .ad-animated-line {
        font-size: 14px;
        gap: 8px;
    }

    .ad-animated-line strong {
        font-size: 19px;
    }

    .ad-mail {
        font-size: 14px;
    }

    .hero-slider {
        min-height: 330px;
    }

    .hero-slide-overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .hero-slide h2 {
        font-size: 21px;
    }

    .hero-slide-meta {
        font-size: 11px;
        gap: 10px;
        margin-bottom: 8px;
    }

    .hero-pagination {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }

    .hero-pagination-btn {
        height: 32px;
        font-size: 14px;
    }

    .editor-title {
        font-size: 20px;
    }

    .editor-slider {
        height: 360px;
    }

    .editor-title-overlay h4 {
        font-size: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 285px;
    }

    .hero-slide h2 {
        font-size: 18px;
    }

    .headline-feed-head h3 {
        font-size: 16px;
    }

    .headline-feed-item h4 {
        font-size: 14px;
    }

    .editor-slider {
        height: 330px;
    }

    .editor-title-overlay h4 {
        font-size: 18px;
    }
}

/* =========================================================
   SLIDER ALT REKLAM BLOKLARI
========================================================= */

.below-slider-ads-section {
    padding: 0 0 18px;
}

.below-slider-ads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.below-slider-ad-card {
    position: relative;
    min-height: 74px;
    background: linear-gradient(135deg, #061a33 0%, #0b2548 50%, #061a33 100%);
    color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 18px;
    border-radius: 0;
}

.below-ad-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 19px;
    font-weight: 300;
    letter-spacing: .3px;
    text-align: center;
    animation: belowAdFloat 4.5s ease-in-out infinite;
}

.below-ad-text strong {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: .8px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(255,255,255,.18);
}

.below-ad-mail {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    opacity: .95;
    animation: belowAdMailPulse 2s ease-in-out infinite;
}

.below-ad-light {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}

.below-ad-light-1 {
    left: -190px;
    animation: belowAdSweep 5s linear infinite;
}

.below-ad-light-2 {
    left: -250px;
    animation: belowAdSweep 5s linear infinite 2s;
}

@keyframes belowAdSweep {
    0% {
        transform: translateX(0) skewX(-18deg);
    }

    100% {
        transform: translateX(760px) skewX(-18deg);
    }
}

@keyframes belowAdMailPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: .88;
        transform: translateY(-1px);
    }
}

@keyframes belowAdFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1px);
    }
}


/* =========================================================
   SLIDER ALT REKLAM BLOKLARI
========================================================= */

.below-slider-ads-section {
    padding: 0 0 18px;
}

.below-slider-ads-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
    width: 100%;
}

.below-slider-ad-card {
    position: relative;
    min-height: 76px;
    background: linear-gradient(135deg, #061a33 0%, #0b2548 50%, #061a33 100%);
    color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 18px;
    border-radius: 0;
}

.below-ad-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 19px;
    font-weight: 300;
    letter-spacing: .3px;
    text-align: center;
    animation: belowAdFloat 4.5s ease-in-out infinite;
}

.below-ad-text strong {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: .8px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(255,255,255,.18);
}

.below-ad-mail {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    opacity: .95;
    animation: belowAdMailPulse 2s ease-in-out infinite;
}

.below-ad-light {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}

.below-ad-light-1 {
    left: -190px;
    animation: belowAdSweep 5s linear infinite;
}

.below-ad-light-2 {
    left: -250px;
    animation: belowAdSweep 5s linear infinite 2s;
}

@keyframes belowAdSweep {
    0% {
        transform: translateX(0) skewX(-18deg);
    }

    100% {
        transform: translateX(760px) skewX(-18deg);
    }
}

@keyframes belowAdMailPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: .88;
        transform: translateY(-1px);
    }
}

@keyframes belowAdFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1px);
    }
}

/* MOBIL */
@media (max-width: 768px) {
    .below-slider-ads-grid {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    .below-slider-ad-card {
        min-height: 68px;
        padding: 10px 12px;
    }

    .below-ad-text {
        font-size: 14px;
        gap: 6px;
    }

    .below-ad-text strong {
        font-size: 19px;
    }

    .below-ad-mail {
        font-size: 13px;
    }
}


/* =========================================================
   DESKTOP SAÄž-SOL REKLAMLAR - KÆNARDAN KONTENTÆ QÆDÆR
========================================================= */

.desktop-side-ads {
    display: none;
}

.side-ad {
    position: fixed;
    top: 230px;
    width: calc((100vw - 1300px) / 2 - 18px);
    height: calc(100vh - 230px);
    min-height: 520px;
    z-index: 700;
    background:
        linear-gradient(180deg, rgba(180, 0, 25, .10) 0%, rgba(6, 26, 51, .96) 42%, rgba(6, 26, 51, 1) 100%),
        #061a33;
    color: #ffffff;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

/* Sol reklam ekranÄ±n solundan baÅŸlayÄ±r, xÉ™bÉ™r lentinÉ™ qÉ™dÉ™r gÉ™lir */
.side-ad-left {
    left: 4px;
}

/* SaÄŸ reklam ekranÄ±n saÄŸÄ±ndan baÅŸlayÄ±r, redaktor blokuna qÉ™dÉ™r gÉ™lir */
.side-ad-right {
    right: 4px;
}

/* Scroll edÉ™ndÉ™ fixed headerin altÄ±ndan baÅŸlasÄ±n */
body.header-fixed .side-ad {
    top: 66px;
    height: calc(100vh - 66px);
    min-height: 0;
}

body.header-fixed .sticky-header {
    z-index: 2000;
}

.side-ad::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.18) 45%, transparent 70%);
    transform: translateX(-160%);
    animation: sideAdLight 5s linear infinite;
}

.side-ad span {
    position: relative;
    z-index: 2;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 3px;
    color: #ffffff;
}

.side-ad strong {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.side-ad small {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}

@keyframes sideAdLight {
    0% {
        transform: translateX(-160%);
    }

    100% {
        transform: translateX(160%);
    }
}

/* BÃ¶yÃ¼k ekranlarda gÃ¶rÃ¼nsÃ¼n */
@media (min-width: 1700px) {
    .desktop-side-ads {
        display: block;
    }
}

/* KiÃ§ik ekranlarda gizlÉ™nsin */
@media (max-width: 1699px) {
    .desktop-side-ads {
        display: none !important;
    }
}


/* =========================================================
   BTV SUBSCRIBE + FOOTER
========================================================= */

.btv-subscribe-section {
    padding: 34px 0 0;
}

.btv-subscribe-box {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background:radial-gradient(circle at top left, rgba(255, 255, 255, .12), transparent 340px), linear-gradient(135deg, #25d366 0%, #25d366 45%, #061a33 100%);
    min-height: 300px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1.2fr .85fr;
    gap: 34px;
    align-items: center;
}

.btv-subscribe-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.12) 45%, transparent 70%);
    transform: translateX(-120%);
    animation: subscribeLight 7s linear infinite;
    pointer-events: none;
}

@keyframes subscribeLight {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

.btv-subscribe-left,
.btv-subscribe-right {
    position: relative;
    z-index: 2;
}

.subscribe-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.btv-subscribe-left h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 35px;
    line-height: 1.16;
    font-weight: 800;
}

.btv-subscribe-left p {
    margin: 0 0 24px;
    color: rgba(255,255,255,.9);
    font-size: 16px;
    line-height: 1.55;
    max-width: 640px;
}

.subscribe-form {
    display: flex;
    width: min(520px, 100%);
    height: 52px;
    border-radius: 13px;
    overflow: hidden;
    background: #ffffff;
}

.subscribe-form input {
    flex: 1;
    border: 0;
    outline: none;
    padding: 0 18px;
    color: #061a33;
    font-size: 14px;
    font-weight: 500;
}

.subscribe-form input::placeholder {
    color: #7b8494;
}

.subscribe-form button {
    width: 135px;
    border: 0;
    background: #075e54;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.whatsapp-channel-card {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 30px 28px;
    min-height: 220px;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
    backdrop-filter: blur(10px);
}

.whatsapp-channel-card > i {
    font-size: 40px;
    margin-bottom: 20px;
}

.whatsapp-channel-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
}

.whatsapp-channel-card p {
    margin: 0 0 22px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    line-height: 1.5;
}

.whatsapp-channel-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 20px;
    border-radius: 13px;
    background: #ffffff;
    color: #061a33;
    font-size: 15px;
    font-weight: 800;
}

/* FOOTER */

.btv-footer-main {
    margin-top: 34px;
    background: #061a33;
    color: #ffffff;
    border-top: 5px solid var(--btv-red);
    padding: 54px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr 1.05fr;
    gap: 44px;
    align-items: start;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.footer-logos img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: none;
}

.footer-logo-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.22);
}

.footer-brand-col p {
    margin: 0;
    max-width: 360px;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.65;
}

.footer-links-col h4,
.footer-contact-col h4 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.footer-links-col nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col nav a {
    color: rgba(255,255,255,.82);
    font-size: 15px;
    font-weight: 500;
    transition: .2s ease;
}

.footer-links-col nav a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.86);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--btv-red);
    font-size: 16px;
    width: 18px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #ffffff;
    margin: 6px 0 22px;
}

.footer-phone i {
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--btv-red);
    border: 0;
    font-size: 34px;
}

.footer-phone strong {
    color: #ffffff;
    font-size: 31px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: .5px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.10);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 17px;
    transition: .2s ease;
}

.footer-socials a:hover {
    background: var(--btv-red);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 46px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 500;
}

/* RESPONSIVE FOOTER */

@media (max-width: 1100px) {
    .btv-subscribe-box {
        grid-template-columns: 1fr;
        padding: 34px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }
}

@media (max-width: 768px) {
    .btv-subscribe-section {
        padding-top: 24px;
    }

    .btv-subscribe-box {
        border-radius: 18px;
        padding: 26px 20px;
    }

    .btv-subscribe-left h2 {
        font-size: 27px;
    }

    .btv-subscribe-left p {
        font-size: 14px;
    }

    .subscribe-form {
        height: auto;
        flex-direction: column;
        background: transparent;
        gap: 10px;
        border-radius: 0;
    }

    .subscribe-form input {
        height: 48px;
        border-radius: 12px;
        background: #ffffff;
    }

    .subscribe-form button {
        width: 100%;
        height: 48px;
        border-radius: 12px;
    }

    .whatsapp-channel-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logos {
        gap: 14px;
        margin-bottom: 20px;
    }

    .footer-logos img {
        max-height: 42px;
    }

    .footer-phone strong {
        font-size: 25px;
    }

    .footer-phone i {
    width: auto;
    height: auto;
    font-size: 29px;
}
}

@media (max-width: 480px) {
    .btv-subscribe-left h2 {
        font-size: 23px;
    }

    .whatsapp-channel-card h3 {
        font-size: 20px;
    }

    .footer-socials a {
        width: 39px;
        height: 39px;
        border-radius: 11px;
    }
}

.footer-links-col nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.footer-links-col nav a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--btv-red);
    flex: 0 0 auto;
}

/* =========================================================
   PREMIUM XÆBÆR KARTLARI - BTV STYLE
========================================================= */

.news-grid-section {
    padding: 12px 0 0;
}

.news-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.news-section-head span {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--btv-red);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.news-section-head h3 {
    margin: 0;
    color: var(--btv-dark);
    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;
}

.news-all-link {
    height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--btv-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

/* GRID */

.premium-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.premium-news-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(6, 26, 51, .07);
    transition: .25s ease;
}

.premium-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(6, 26, 51, .16);
}

/* ÅžÆKÄ°L */

.premium-news-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 12;
    overflow: hidden;
    background: #061a33;
}

.premium-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
}

.premium-news-card:hover .premium-news-image img {
    transform: scale(1.08);
}

.premium-news-image::after {
    content: "";
    position: absolute;
    inset: 0;
     bottom: -6px;
    background:
        linear-gradient(
            180deg,
            rgba(6, 26, 51, .02) 0%,
            rgba(6, 26, 51, .08) 35%,
            rgba(6, 26, 51, .88) 100%
        );
    z-index: 1;
    transition: .25s ease;
}

.premium-news-card:hover .premium-news-image::after {
     bottom: -6px;
    background:
        linear-gradient(
            180deg,
            rgba(180, 0, 25, .02) 0%,
            rgba(180, 0, 25, .20) 42%,
            rgba(180, 0, 25, .92) 100%
        );
}

/* ÅžÆKÄ°L ÃœSTÃœ TEQLÆR */

.premium-news-tags {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
    max-width: calc(100% - 20px);
}

.premium-news-tags span {
    height: 29px;
    padding: 0 9px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .92);
    color: var(--btv-dark);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: .25s ease;
}

.premium-news-tags span i {
    font-size: 11px;
}

.premium-news-card:hover .premium-news-tags span {
    background: var(--btv-dark);
    color: #ffffff;
}

/* ÅžÆKÄ°L ÃœSTÃœ BAÅžLIQ */

.premium-news-overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 15px;
    z-index: 3;
}

.premium-news-overlay h4 {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.28;
    font-weight: 600;
    text-shadow: 0 5px 18px rgba(0, 0, 0, .45);
}

/* ALT CONTENT */

.premium-news-content {
    background: #ffffff;
}

/* KATEQORIYA + SAAT + BUGÃœN CÆRGÆSÄ° */

.premium-news-info-row {
    width: 100%;
    min-height: 36px;
    padding: 0;
    border-bottom: 1px solid #edf1f6;
    display: grid;
    grid-template-columns: 1.15fr .75fr .9fr;
    gap: 0;
    overflow: hidden;
}

.premium-news-info-row span {
    min-height: 36px;
    padding: 0 8px;
    border-radius: 0;
    background: var(--btv-dark);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: .25s ease;
}

.premium-news-info-row span i {
    color: #ffffff;
    font-size: 11px;
}

/* 1-ci hissÉ™: Kateqoriya - gÃ¶y */
.premium-news-category-bottom {
    background: var(--btv-dark) !important;
    color: #ffffff !important;
    text-transform: uppercase;
}

/* 2-ci hissÉ™: Saat - qÄ±rmÄ±zÄ± */
.premium-news-info-row span:nth-child(2) {
    background: var(--btv-red);
    color: #ffffff;
}

/* 3-cÃ¼ hissÉ™: BugÃ¼n - gÃ¶y */
.premium-news-info-row span:nth-child(3) {
    background: var(--btv-dark);
    color: #ffffff;
}

/* Hover: É™ks rÉ™ng */
.premium-news-card:hover .premium-news-category-bottom {
    background: var(--btv-red) !important;
    color: #ffffff !important;
}

.premium-news-card:hover .premium-news-info-row span:nth-child(2) {
    background: var(--btv-dark);
    color: #ffffff;
}

.premium-news-card:hover .premium-news-info-row span:nth-child(3) {
    background: var(--btv-red);
    color: #ffffff;
}

/* VIEW + LIKE CÆRGÆSÄ° */

.premium-news-bottom {
    min-height: 50px;
    padding: 11px 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.premium-news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8b97a8;
    font-size: 13px;
    font-weight: 700;
}

.premium-news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.premium-news-meta i {
    color: var(--btv-red);
}

.premium-news-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reaction-btn {
    border: 0;
    background: transparent;
    color: #8b97a8;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 800;
    padding: 0;
    transition: .2s ease;
}

.reaction-btn i {
    font-size: 15px;
}

.reaction-btn[data-reaction-btn="like"] {
    color: #14b879;
}

.reaction-btn[data-reaction-btn="unlike"] {
    color: #d8213c;
}

.reaction-btn:hover,
.reaction-btn.active {
    color: var(--btv-red);
    transform: translateY(-1px);
}

.reaction-btn.active i {
    font-weight: 900;
}

/* RESPONSIVE */

@media (max-width: 1280px) {
    .premium-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .premium-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-news-image {
        aspect-ratio: 16 / 11;
    }
}

@media (max-width: 768px) {
    .news-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-section-head h3 {
        font-size: 26px;
    }

    .premium-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .premium-news-image {
        aspect-ratio: 16 / 12;
    }

    .premium-news-overlay {
        left: 10px;
        right: 10px;
        bottom: 12px;
    }

    .premium-news-overlay h4 {
        font-size: 14px;
        line-height: 1.25;
    }

    .premium-news-tags {
        right: 8px;
        top: 8px;
        gap: 4px;
    }

    .premium-news-tags span {
        height: 25px;
        padding: 0 7px;
        font-size: 9px;
    }

    .premium-news-info-row {
        min-height: 32px;
        grid-template-columns: 1.1fr .75fr .85fr;
    }

    .premium-news-info-row span {
        min-height: 32px;
        padding: 0 5px;
        font-size: 9.5px;
    }

    .premium-news-bottom {
        min-height: 44px;
        padding: 9px 10px;
    }

    .premium-news-meta {
        font-size: 11px;
    }

    .premium-news-actions {
        gap: 7px;
    }

    .reaction-btn {
        font-size: 11px;
        gap: 4px;
    }

    .reaction-btn i {
        font-size: 13px;
    }
}

@media (max-width: 430px) {
    .premium-news-grid {
        grid-template-columns: 1fr;
    }

    .premium-news-overlay h4 {
        font-size: 17px;
    }

    .premium-news-info-row span {
        font-size: 11px;
    }
}


/* =========================================================
   NEWS DETAIL PAGE - FINAL CLEAN VERSION
========================================================= */

.news-detail-page {
    padding-bottom: 40px;
}

/* TOP AD */

.detail-top-ad-section {
    padding: 0 0 12px;
}

.detail-top-ad {
    min-height: 66px;
    background: linear-gradient(135deg, #061a33 0%, #0b2548 50%, #061a33 100%);
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    position: relative;
}

.detail-top-ad::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.18) 45%, transparent 70%);
    transform: translateX(-140%);
    animation: detailAdLight 5s linear infinite;
}

.detail-top-ad div,
.detail-top-ad small {
    position: relative;
    z-index: 2;
}

.detail-top-ad div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.detail-top-ad strong {
    font-size: 25px;
    font-weight: 600;
}

.detail-top-ad small {
    color: rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: 500;
}

@keyframes detailAdLight {
    0% {
        transform: translateX(-140%);
    }

    100% {
        transform: translateX(140%);
    }
}

/* LAYOUT */

.news-detail-section {
    padding: 0;
}

.news-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.news-detail-main {
    min-width: 0;
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(6, 26, 51, .07);
}

/* BREADCRUMB */

.detail-breadcrumb {
    padding: 16px 22px;
    border-bottom: 1px solid #edf1f6;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7b8797;
    font-size: 13px;
    font-weight: 500;
    flex-wrap: wrap;
}

.detail-breadcrumb a {
    color: #667085;
}

.detail-breadcrumb a:hover {
    color: var(--btv-red);
}

.detail-breadcrumb i {
    font-size: 11px;
    color: var(--btv-red);
}

.detail-breadcrumb span {
    color: #667085;
}

/* HEAD */

.detail-head {
    padding: 28px 28px 18px;
}

.detail-category-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.detail-category,
.detail-tag {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.detail-category,
.detail-tag-main {
    background: var(--btv-red);
    color: #ffffff;
}

.detail-tag {
    background: #f3ccd4;
    color: var(--btv-red);
}

.detail-head h1 {
    margin: 0 0 18px;
    color: var(--btv-dark);
    font-size: 34px;
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.detail-subtitle {
    display: none;
}

.detail-meta-row {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.detail-meta-row span {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    color: #667085;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
}

.detail-meta-row span:first-child {
    background: var(--btv-dark);
    color: #ffffff;
}

.detail-meta-row span:first-child i {
    color: #ffffff;
}

.detail-meta-row i {
    color: var(--btv-red);
}

/* TOOLS */

.detail-tools {
    margin: 0 28px 22px;
    border: 1px solid #edf1f6;
    border-radius: 16px;
    background: #fbfcfe;
    min-height: 58px;
    padding: 10px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 12px;
}

.detail-reactions,
.detail-reader-tools,
.detail-share {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-reactions {
    flex-wrap: nowrap;
}

.detail-share {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.detail-reaction-btn,
.detail-reader-tools button,
.detail-share a,
.detail-share button {
    height: 38px;
    min-width: 38px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: var(--btv-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(6, 26, 51, .06);
    transition: .2s ease;
}

.detail-share-icons a,
.detail-share-icons button {
    width: 38px;
    padding: 0;
}

.detail-reaction-btn:hover,
.detail-reader-tools button:hover,
.detail-share a:hover,
.detail-share button:hover,
.detail-reaction-btn.active {
    background: var(--btv-red);
    color: #ffffff;
}

.detail-share-icons a:nth-child(1) {
    color: #1877f2;
}

.detail-share-icons a:nth-child(2) {
    color: #25d366;
}

.detail-share-icons a:nth-child(3) {
    color: #229ed9;
}

.detail-share-icons a:nth-child(4) {
    color: #061a33;
}

.detail-share-icons a:nth-child(5) {
    color: #0a66c2;
}

.detail-share-icons button:nth-last-child(2) {
    color: #c13584;
}

.detail-share-icons a:hover,
.detail-share-icons button:hover {
    color: #ffffff;
}

/* MAIN MEDIA */

.detail-main-media {
    margin: 0 28px 26px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--btv-dark);
}

.detail-main-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
}

.detail-media-label {
    position: absolute;
    top: 14px;
    right: 14px;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(180, 0, 25, .92);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

/* ARTICLE */

.detail-article-body {
    padding: 0 28px 10px;
    color: var(--btv-dark);
    font-size: var(--article-font-size, 18px);
    line-height: 1.85;
    font-weight: 500;
    transition: .2s ease;
}

.detail-article-body.dark-reading {
    background: #061a33;
    color: rgba(255,255,255,.92);
    padding-top: 24px;
    padding-bottom: 24px;
}

.detail-article-body p {
    margin: 0 0 22px;
}

.detail-article-body blockquote {
    margin: 28px 0;
    padding: 24px 26px;
    border-left: 5px solid var(--btv-red);
    border-radius: 14px;
    background: #f8fafc;
    color: var(--btv-dark);
    font-size: 21px;
    line-height: 1.55;
    font-weight: 600;
}

.detail-article-body.dark-reading blockquote {
    background: rgba(255,255,255,.08);
    color: #ffffff;
}

.detail-article-body blockquote i {
    color: var(--btv-red);
    margin-right: 10px;
}

/* INLINE AD */

.detail-inline-ad {
    margin: 30px 0;
    min-height: 82px;
    background: linear-gradient(135deg, #061a33 0%, #0b2548 50%, #061a33 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.detail-inline-ad::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.18) 45%, transparent 70%);
    transform: translateX(-140%);
    animation: detailAdLight 5s linear infinite;
}

.detail-inline-ad strong,
.detail-inline-ad span {
    position: relative;
    z-index: 2;
}

.detail-inline-ad strong {
    font-size: 24px;
    font-weight: 600;
}

.detail-inline-ad span {
    font-size: 14px;
    color: rgba(255,255,255,.88);
}

/* SECTION BLOCKS */

.detail-video-block,
.detail-gallery,
.detail-final-share,
.detail-facebook-comments,
.related-news-block {
    padding: 26px 28px;
    border-top: 1px solid #edf1f6;
}

.detail-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-section-title span {
    width: 5px;
    height: 30px;
    border-radius: 999px;
    background: var(--btv-red);
}

.detail-section-title h3 {
    margin: 0;
    color: var(--btv-dark);
    font-size: 24px;
    font-weight: 600;
}

/* VIDEO */

.detail-video-frame {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--btv-dark);
    box-shadow: 0 12px 28px rgba(6, 26, 51, .12);
}

.detail-video-frame iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

/* GALLERY */

.gallery-main {
    border-radius: 16px;
    overflow: hidden;
    background: var(--btv-dark);
    margin-bottom: 12px;
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumb {
    border: 3px solid transparent;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

.gallery-thumb.active {
    border-color: var(--btv-red);
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* FINAL SHARE */

.detail-final-share-grid {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.detail-final-share-grid a,
.detail-final-share-grid button {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: #f5f7fb;
    color: var(--btv-dark);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 600;
    transition: .2s ease;
}

.detail-final-share-grid a:hover,
.detail-final-share-grid button:hover {
    background: var(--btv-red);
    color: #ffffff;
}

/* FACEBOOK COMMENTS */

.facebook-comments-box {
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 16px;
    padding: 16px;
    overflow: hidden;
}

.fb-comments,
.fb-comments span,
.fb-comments iframe {
    width: 100% !important;
    max-width: 100% !important;
}

/* RELATED */

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.related-card {
    border: 1px solid #dfe5ee;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.related-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.related-card div {
    padding: 12px;
}

.related-card span {
    color: var(--btv-red);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.related-card h4 {
    margin: 7px 0 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.related-card h4 a {
    color: var(--btv-dark);
}

/* SIDEBAR */

.news-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 24px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(6, 26, 51, .06);
}

.sidebar-widget-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.sidebar-widget-head span {
    width: 5px;
    height: 26px;
    border-radius: 999px;
    background: var(--btv-red);
}

.sidebar-widget-head h3 {
    margin: 0;
    color: var(--btv-dark);
    font-size: 20px;
    font-weight: 600;
}

.sidebar-news-list,
.most-read-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-news-item {
   display: grid;
    grid-template-columns: 0px 1fr;
    gap: 0px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf1f6;
}

.sidebar-news-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar-news-item > strong {
    height: 34px;
    border-radius: 9px;
    background: var(--btv-red);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 600;
}

.sidebar-news-item span {
    color: var(--btv-red);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.sidebar-news-item h4 {
    margin: 4px 0 0;
    color: var(--btv-dark);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.most-read-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf1f6;
}

.most-read-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.most-read-item > strong {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--btv-dark);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600;
}

.most-read-item h4 {
    margin: 0 0 6px;
    color: var(--btv-dark);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.most-read-item span {
    color: #8b97a8;
    font-size: 12px;
    font-weight: 500;
}

.most-read-item span i {
    color: var(--btv-red);
}

.detail-sidebar-ad {
    min-height: 260px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(180, 0, 25, .16) 0%, #061a33 55%, #061a33 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    overflow: hidden;
    position: relative;
}

.detail-sidebar-ad::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.18) 45%, transparent 70%);
    transform: translateX(-140%);
    animation: detailAdLight 5s linear infinite;
}

.detail-sidebar-ad span,
.detail-sidebar-ad strong {
    position: relative;
    z-index: 2;
}

.detail-sidebar-ad span {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 2px;
}

.detail-sidebar-ad strong {
    font-size: 15px;
    font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .news-detail-grid {
        grid-template-columns: 1fr;
    }

    .news-detail-sidebar {
        position: static;
    }

    .related-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-detail-page {
        padding-bottom: 28px;
    }

    .detail-top-ad-section {
        padding-bottom: 8px;
    }

    .detail-top-ad {
        min-height: 58px;
    }

    .detail-head {
        padding: 20px 16px 14px;
    }

    .detail-category-row {
        gap: 7px;
        margin-bottom: 13px;
    }

    .detail-category,
    .detail-tag {
        min-height: 26px;
        padding: 0 10px;
        font-size: 10.5px;
        font-weight: 600;
    }

    .detail-head h1 {
        font-size: 24px;
        line-height: 1.18;
        font-weight: 600;
        margin-bottom: 14px;
        letter-spacing: -0.2px;
    }

    .detail-meta-row {
        gap: 7px;
    }

    .detail-meta-row span {
        min-height: 30px;
        padding: 0 9px;
        font-size: 11px;
        font-weight: 500;
    }

    .detail-tools {
        margin: 0 16px 18px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        padding: 9px;
        border-radius: 14px;
    }

    .detail-reactions {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        width: auto;
        order: 1;
    }

    .detail-reader-tools {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        width: auto;
        order: 2;
    }

    .detail-share {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        width: auto;
        order: 3;
        justify-content: flex-start;
    }

    .detail-reaction-btn,
    .detail-reader-tools button,
    .detail-share a,
    .detail-share button {
        height: 34px;
        min-width: 34px;
        padding: 0 10px;
        font-size: 12px;
        font-weight: 600;
    }

    .detail-share-icons a,
    .detail-share-icons button {
        width: 34px;
        padding: 0;
    }

    .detail-main-media {
        margin: 0 16px 22px;
        border-radius: 14px;
    }

    .detail-media-label {
        min-height: 32px;
        padding: 0 11px;
        font-size: 11px;
    }

    .detail-article-body {
        padding: 0 16px 8px;
        font-size: var(--article-font-size, 16px);
        line-height: 1.75;
    }

    .detail-article-body p {
        margin-bottom: 18px;
    }

    .detail-article-body blockquote {
        font-size: 17px;
        padding: 18px;
        margin: 22px 0;
        font-weight: 600;
    }

    .detail-video-block,
    .detail-gallery,
    .detail-final-share,
    .detail-facebook-comments,
    .related-news-block {
        padding: 22px 16px;
    }

    .detail-section-title {
        margin-bottom: 14px;
    }

    .detail-section-title h3 {
        font-size: 20px;
        font-weight: 600;
    }

    .detail-section-title span {
        height: 26px;
    }

    .facebook-comments-box {
        padding: 10px;
    }

    .detail-final-share-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .detail-final-share-grid a,
    .detail-final-share-grid button {
        justify-content: center;
        min-height: 40px;
        padding: 0 10px;
        font-size: 12px;
        font-weight: 600;
    }

    .related-news-grid {
        grid-template-columns: 1fr;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 430px) {
    .detail-head h1 {
        font-size: 21px;
    }

    .detail-tools {
        gap: 7px;
    }

    .detail-reactions,
    .detail-reader-tools,
    .detail-share {
        gap: 7px;
    }

    .detail-reaction-btn,
    .detail-reader-tools button,
    .detail-share a,
    .detail-share button {
        height: 32px;
        min-width: 32px;
        font-size: 11px;
        padding: 0 8px;
    }

    .detail-share-icons a,
    .detail-share-icons button {
        width: 32px;
        padding: 0;
    }

    .detail-final-share-grid {
        grid-template-columns: 1fr;
    }

    .detail-top-ad div {
        font-size: 13px;
    }

    .detail-top-ad strong {
        font-size: 18px;
    }
}

/* FACEBOOK COMMENTS PLUGIN FIX */

.detail-facebook-comments {
    padding: 26px 28px;
    border-top: 1px solid #edf1f6;
}

.facebook-comments-box {
    width: 100%;
    min-height: 180px;
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 16px;
    padding: 16px;
    overflow: hidden;
}

.fb-comments,
.fb-comments span,
.fb-comments iframe {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .detail-facebook-comments {
        padding: 22px 16px;
    }

    .facebook-comments-box {
        padding: 10px;
        border-radius: 14px;
    }
}


/* Xəbər kartında hover zamanı şəkil-alt xəttini gizlət */

.premium-news-image::after {
    bottom: -10px !important;
}

.premium-news-card:hover .premium-news-image::after {
    bottom: -10px !important;
}

.premium-news-image {
    margin-bottom: -2px;
}

.premium-news-content {
    margin-top: -2px;
    position: relative;
    z-index: 8;
}

.premium-news-info-row {
    border-top: 0 !important;
}



/* DETAIL VIDEO / FILE FIX */

.detail-video-list {
    display: grid;
    gap: 18px;
}

.detail-video-item h4 {
    margin: 0 0 10px;
    color: var(--btv-dark);
    font-size: 20px;
    font-weight: 600;
}

.detail-video-item p {
    margin: 10px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}

.detail-video-frame video,
.detail-video-frame iframe {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
    object-fit: cover;
}

.detail-files-block {
    padding: 26px 28px;
    border-top: 1px solid #edf1f6;
}

.detail-files-list {
    display: grid;
    gap: 10px;
}

.detail-files-list a {
    min-height: 46px;
    padding: 0 15px;
    border-radius: 12px;
    background: #f5f7fb;
    color: var(--btv-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.detail-files-list a:hover {
    background: var(--btv-red);
    color: #ffffff;
}

@media (max-width: 768px) {
    .detail-files-block {
        padding: 22px 18px;
    }

    .detail-video-item h4 {
        font-size: 17px;
    }
}


/* STATIC PAGE */

.static-page-section {
    padding: 18px 0 40px;
}

.static-page-card {
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(6, 26, 51, .07);
}

.static-page-content {
    padding: 28px;
}

.static-page-content h1 {
    margin: 0 0 16px;
    color: var(--btv-dark);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
}

.static-page-desc {
    margin: 0 0 20px;
    color: #667085;
    font-size: 17px;
    line-height: 1.6;
}

.static-page-body {
    color: var(--btv-dark);
    font-size: 17px;
    line-height: 1.8;
}

.static-page-body p {
    margin: 0 0 18px;
}

@media (max-width: 768px) {
    .static-page-content {
        padding: 22px 18px;
    }

    .static-page-content h1 {
        font-size: 26px;
    }
}


/* =========================================================
   CONTACT PAGE - BTV
========================================================= */

.contact-page-section {
    padding: 18px 0 46px;
}

.contact-page-card {
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(6, 26, 51, .08);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
}

/* LEFT INFO */

.contact-info-area {
    padding: 34px;
    background:
        radial-gradient(circle at top left, rgba(180, 0, 25, .20), transparent 34%),
        linear-gradient(135deg, #061a33 0%, #0b2548 55%, #8c0016 140%);
    color: #ffffff;
}

.contact-kicker {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.contact-info-area h1 {
    margin: 18px 0 12px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 600;
}

.contact-info-area p {
    margin: 0 0 24px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.contact-info-list {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px;
    border-radius: 16px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
}

.contact-info-item > span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--btv-red);
    color: #ffffff;
    display: grid;
    place-items: center;
}

.contact-info-item small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    font-weight: 500;
}

.contact-info-item strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

/* SOCIALS */

.contact-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--btv-red);
    color: #ffffff;
    display: grid;
    place-items: center;
    transition: .2s ease;
}

.contact-socials a:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: var(--btv-red);
}

/* MAP */

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
}

.contact-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

/* RIGHT FORM */

.contact-form-area {
    padding: 34px;
    background: #ffffff;
}

.contact-form-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.contact-form-head span {
    width: 5px;
    height: 30px;
    border-radius: 999px;
    background: var(--btv-red);
}

.contact-form-head h2 {
    margin: 0;
    color: var(--btv-dark);
    font-size: 28px;
    font-weight: 600;
}

.contact-success {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 14px;
    background: rgba(16, 185, 129, .10);
    color: #047857;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label > span {
    color: var(--btv-dark);
    font-size: 13px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dfe5ee;
    border-radius: 13px;
    background: #f8fafc;
    color: var(--btv-dark);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: .2s ease;
}

.contact-form input {
    height: 46px;
    padding: 0 14px;
}

.contact-form textarea {
    padding: 14px;
    resize: vertical;
    min-height: 130px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--btv-red);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(180, 0, 25, .08);
}

.contact-form small {
    color: var(--btv-red);
    font-size: 12px;
    font-weight: 600;
}

/* CHECKBOX */

.contact-checkbox-label {
    align-self: end;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 13px;
    border: 1px solid #dfe5ee;
    background: #f8fafc;
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.contact-checkbox-label input {
    width: 18px;
    height: 18px;
    padding: 0;
    accent-color: var(--btv-red);
}

.contact-checkbox-label span {
    margin: 0;
    color: var(--btv-dark);
    font-size: 13px;
    font-weight: 600;
}

/* FILE UPLOAD */

.contact-file-label input[type="file"] {
    display: none;
}

.contact-file-box {
    border: 1px dashed rgba(180, 0, 25, .42);
    border-radius: 16px;
    background: rgba(180, 0, 25, .04);
    min-height: 116px;
    padding: 18px;
    display: grid;
    place-items: center;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
}

.contact-file-box:hover {
    background: rgba(180, 0, 25, .08);
    border-color: var(--btv-red);
}

.contact-file-box i {
    color: var(--btv-red);
    font-size: 28px;
    margin-bottom: 6px;
}

.contact-file-box strong {
    color: var(--btv-dark);
    font-size: 15px;
    font-weight: 600;
}

.contact-file-box em {
    color: #667085;
    font-size: 12px;
    font-style: normal;
}

/* BUTTON */

.contact-submit-btn {
    height: 50px;
    border: 0;
    border-radius: 14px;
    background: var(--btv-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.contact-submit-btn:hover {
    background: var(--btv-dark);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 12px 0 32px;
    }

    .contact-info-area,
    .contact-form-area {
        padding: 24px 18px;
    }

    .contact-info-area h1 {
        font-size: 30px;
    }

    .contact-info-area p {
        font-size: 15px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        height: 220px;
    }

    .contact-form-head h2 {
        font-size: 24px;
    }
}


.currency-item strong {
    font-weight: 700;
}

.currency-trend {
    margin-left: 3px;
    font-size: 9px;
    display: inline-flex;
    align-items: center;
}

.currency-up {
    color: #009b72;
}

.currency-down {
    color: #b40019;
}

.currency-neutral {
    color: #7b8794;
}

.menu-info-line .currency-trend {
    margin-left: 4px;
}


.footer-about-text,
.footer-about-text p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.footer-contact-col .footer-contact-item {
    text-decoration: none;
}

.footer-links-col nav a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--btv-red);
    display: inline-block;
    margin-right: 8px;
    transform: translateY(-1px);
}

.footer-links-col nav a {
    display: flex;
    align-items: center;
}


/* =========================================================
   LIKE / UNLIKE BUTTONS - BTV STYLE
========================================================= */

.premium-news-actions,
.detail-reactions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.reaction-btn,
.detail-reaction-btn {
    min-width: 44px;
    height: 32px;
    padding: 0 9px;
    border: 1px solid #e6ebf2;
    border-radius: 999px;
    background: #f7f9fc;
    color: #7b8794;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .22s ease;
}

.reaction-btn i,
.detail-reaction-btn i {
    font-size: 13px;
    color: currentColor;
}

.reaction-btn span,
.detail-reaction-btn span {
    color: currentColor;
    font-weight: 700;
}

/* LIKE default hover */
.reaction-btn[data-reaction="like"]:hover,
.detail-reaction-btn[data-reaction="like"]:hover {
    border-color: var(--btv-dark);
    background: rgba(6, 26, 51, .08);
    color: var(--btv-dark);
}

/* UNLIKE default hover */
.reaction-btn[data-reaction="unlike"]:hover,
.detail-reaction-btn[data-reaction="unlike"]:hover {
    border-color: var(--btv-red);
    background: rgba(180, 0, 25, .08);
    color: var(--btv-red);
}

/* LIKE aktiv olanda */
.reaction-btn[data-reaction="like"].is-active,
.detail-reaction-btn[data-reaction="like"].is-active {
    background: var(--btv-dark) !important;
    border-color: var(--btv-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 14px rgba(6, 26, 51, .20);
}

/* UNLIKE aktiv olanda */
.reaction-btn[data-reaction="unlike"].is-active,
.detail-reaction-btn[data-reaction="unlike"].is-active {
    background: var(--btv-red) !important;
    border-color: var(--btv-red) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 14px rgba(180, 0, 25, .20);
}

.reaction-btn.is-active i,
.detail-reaction-btn.is-active i,
.reaction-btn.is-active span,
.detail-reaction-btn.is-active span {
    color: #ffffff !important;
}

.reaction-btn:disabled,
.detail-reaction-btn:disabled {
    opacity: .65;
    cursor: wait;
}

/* Ana səhifə kartında aşağı hissəni səliqəli saxla */
.premium-news-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.premium-news-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.premium-news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #98a2b3;
    font-size: 13px;
    font-weight: 700;
}

.premium-news-meta i {
    color: var(--btv-red);
}

/* Mobil üçün */
@media (max-width: 768px) {
    .reaction-btn,
    .detail-reaction-btn {
        min-width: 40px;
        height: 30px;
        padding: 0 8px;
        font-size: 12px;
    }

    .premium-news-actions,
    .detail-reactions {
        gap: 6px;
    }
}


/* =========================================================
   SEARCH AUTOCOMPLETE + SEARCH PAGE
========================================================= */

.btv-search-form {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e4e9f1;
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(6, 26, 51, .16);
    padding: 8px;
    z-index: 9999;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 10px;
    padding: 8px;
    border-radius: 11px;
    color: var(--btv-dark);
    text-decoration: none;
    transition: .18s ease;
}

.search-suggestion-item:hover {
    background: #f4f7fb;
}

.search-suggestion-item img {
    width: 54px;
    height: 42px;
    border-radius: 9px;
    object-fit: cover;
    background: #061a33;
}

.search-suggestion-item strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--btv-dark);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.search-suggestion-item span {
    display: block;
    margin-top: 4px;
    color: #7b8794;
    font-size: 11px;
    font-weight: 600;
}

.search-suggestion-all {
    height: 38px;
    margin-top: 6px;
    border-radius: 10px;
    background: var(--btv-red);
    color: #ffffff;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.search-suggestion-empty {
    padding: 14px;
    color: #667085;
    font-size: 13px;
    font-weight: 600;
}

/* Axtarış səhifəsi */

.search-page-section {
    padding: 20px 0 46px;
}

.search-page-head {
    margin-bottom: 24px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(6, 26, 51, .07);
}

.search-page-head h1 {
    margin: 18px 0 14px;
    color: var(--btv-dark);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
}

.search-page-head p {
    margin: 14px 0 0;
    color: #667085;
    font-size: 15px;
    font-weight: 500;
}

.search-page-form {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 10px;
}

.search-page-form input {
    height: 50px;
    border: 1px solid #dfe5ee;
    border-radius: 13px;
    padding: 0 16px;
    color: var(--btv-dark);
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

.search-page-form input:focus {
    border-color: var(--btv-red);
    box-shadow: 0 0 0 4px rgba(180, 0, 25, .08);
}

.search-page-form button {
    height: 50px;
    border: 0;
    border-radius: 13px;
    background: var(--btv-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.search-results-grid {
    margin-top: 16px;
}

.search-empty-box {
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 18px;
    padding: 42px 22px;
    text-align: center;
    color: var(--btv-dark);
}

.search-empty-box i {
    color: var(--btv-red);
    font-size: 42px;
    margin-bottom: 14px;
}

.search-empty-box h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 600;
}

.search-empty-box p {
    margin: 0;
    color: #667085;
    font-size: 15px;
}

.search-pagination {
    margin-top: 24px;
}

/* Mobil */

@media (max-width: 768px) {
    .search-page-head {
        padding: 18px;
    }

    .search-page-head h1 {
        font-size: 26px;
    }

    .search-page-form {
        grid-template-columns: 1fr;
    }

    .search-page-form button {
        width: 100%;
    }

    .search-suggestions {
        position: fixed;
        top: 74px;
        left: 12px;
        right: 12px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
}

/* Search dropdown hover fix */

.search-suggestion-item:hover {
    background: #f4f7fb !important;
    color: var(--btv-dark) !important;
}

.search-suggestion-item:hover strong {
    color: var(--btv-dark) !important;
}

.search-suggestion-item:hover span {
    color: #7b8794 !important;
}

.search-suggestion-all {
    background: var(--btv-red) !important;
    color: #ffffff !important;
}

.search-suggestion-all:hover {
    background: var(--btv-dark) !important;
    color: #ffffff !important;
}

.search-suggestion-all:hover i {
    color: #ffffff !important;
}


/* =========================================================
   CATEGORY PAGE FULL FIX - BTV
========================================================= */

.category-page-section {
    width: 100%;
    padding: 22px 0 50px !important;
    background: #f4f7fb !important;
}

.category-page-section .container {
    max-width: 1300px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

/* HEAD CARD */

.category-page-head {
    width: 100% !important;
    margin: 0 0 22px !important;
    padding: 24px !important;
    background: #ffffff !important;
    border: 1px solid #dfe5ee !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 34px rgba(6, 26, 51, .08) !important;
    overflow: visible !important;
}

.category-page-head .detail-breadcrumb {
    margin-bottom: 18px !important;
}

.category-title-row {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 18px !important;
}

.category-title-row > div > span {
    display: inline-flex !important;
    margin-bottom: 7px !important;
    color: var(--btv-red) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.category-title-row h1 {
    margin: 0 !important;
    color: var(--btv-dark) !important;
    font-size: 42px !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
}

.category-title-row strong {
    min-height: 40px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    background: rgba(180, 0, 25, .08) !important;
    color: var(--btv-red) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

/* CHILD CATEGORIES */

.category-child-list {
    margin-top: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.category-child-list a {
    min-height: 34px !important;
    padding: 0 13px !important;
    border-radius: 999px !important;
    background: #f4f7fb !important;
    color: var(--btv-dark) !important;
    border: 1px solid #e4e9f1 !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    transition: .2s ease !important;
}

.category-child-list a:hover {
    background: var(--btv-red) !important;
    border-color: var(--btv-red) !important;
    color: #ffffff !important;
}

/* FILTER BAR - native select üçün də işləyir */

.category-filter-bar {
    margin-top: 20px !important;
    display: flex !important;
    align-items: flex-end !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    position: relative !important;
    z-index: 20 !important;
}

.category-filter-group {
    display: grid !important;
    gap: 7px !important;
    min-width: 210px !important;
    position: relative !important;
}

.category-filter-group label {
    color: #667085 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding-left: 4px !important;
}

.category-filter-group select {
    width: 100% !important;
    height: 48px !important;
    padding: 0 42px 0 15px !important;
    border-radius: 15px !important;
    border: 1px solid #dfe5ee !important;
    background:
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23061a33' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    color: var(--btv-dark) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    outline: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    box-shadow: 0 8px 18px rgba(6, 26, 51, .05) !important;
}

.category-filter-group select:hover,
.category-filter-group select:focus {
    border-color: var(--btv-red) !important;
    box-shadow: 0 0 0 4px rgba(180, 0, 25, .09) !important;
}

/* CUSTOM SELECT də qalsa ona da stil */

.btv-custom-select {
    position: relative !important;
    width: 100% !important;
}

.btv-custom-select-btn {
    width: 100% !important;
    height: 48px !important;
    padding: 0 14px 0 16px !important;
    border: 1px solid #dfe5ee !important;
    border-radius: 15px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: var(--btv-dark) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: 0 8px 18px rgba(6, 26, 51, .05) !important;
}

.btv-custom-select-btn span {
    color: var(--btv-dark) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.btv-custom-select-btn i {
    color: var(--btv-dark) !important;
    font-size: 12px !important;
    transition: .22s ease !important;
}

.btv-custom-select.open .btv-custom-select-btn {
    border-color: var(--btv-red) !important;
    box-shadow: 0 0 0 4px rgba(180, 0, 25, .09) !important;
}

.btv-custom-select.open .btv-custom-select-btn i {
    color: var(--btv-red) !important;
    transform: rotate(180deg) !important;
}

.btv-custom-select-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    padding: 8px !important;
    border: 1px solid #e4e9f1 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 36px rgba(6, 26, 51, .16) !important;
    display: none !important;
}

.btv-custom-select.open .btv-custom-select-menu {
    display: grid !important;
    gap: 5px !important;
}

.btv-custom-select-menu button {
    width: 100% !important;
    min-height: 40px !important;
    padding: 0 12px !important;
    border: 0 !important;
    border-radius: 11px !important;
    background: transparent !important;
    color: var(--btv-dark) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
}

.btv-custom-select-menu button:hover {
    background: rgba(180, 0, 25, .07) !important;
    color: var(--btv-red) !important;
}

.btv-custom-select-menu button.active {
    background: linear-gradient(135deg, var(--btv-red) 0%, #8c0016 100%) !important;
    color: #ffffff !important;
}

.btv-custom-select-menu button.active span,
.btv-custom-select-menu button.active i {
    color: #ffffff !important;
}

/* MAIN LAYOUT */

.category-layout-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 340px !important;
    gap: 22px !important;
    align-items: start !important;
    position: relative !important;
    z-index: 1 !important;
}

.category-main-col {
    min-width: 0 !important;
    width: 100% !important;
}

.category-news-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

/* category səhifəsində kart ölçüsü normal olsun */

.category-page-section .premium-news-card {
    width: 100% !important;
    min-width: 0 !important;
}

.category-page-section .premium-news-image {
    width: 100% !important;
    height: 250px !important;
}

.category-page-section .premium-news-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.category-page-section .premium-news-overlay h4 {
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
}

/* SIDEBAR */

.category-sidebar {
    display: grid !important;
    gap: 16px !important;
    position: sticky !important;
    top: 90px !important;
}

.category-sidebar .sidebar-widget {
    background: #ffffff !important;
    border: 1px solid #dfe5ee !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 28px rgba(6, 26, 51, .07) !important;
}

.category-sidebar .detail-sidebar-ad {
    min-height: 190px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

/* LOAD STATUS */

.category-load-status {
    margin: 22px 0 0 !important;
    min-height: 50px !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    border: 1px solid #dfe5ee !important;
    color: #667085 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-shadow: 0 10px 24px rgba(6, 26, 51, .06) !important;
}

.category-load-status span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.category-load-status i {
    color: var(--btv-red) !important;
}

.category-load-status.is-loading i {
    animation: categorySpin .8s linear infinite !important;
}

@keyframes categorySpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* EMPTY */

.category-empty-box {
    padding: 46px 24px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid #dfe5ee !important;
    text-align: center !important;
    color: var(--btv-dark) !important;
    box-shadow: 0 12px 28px rgba(6, 26, 51, .07) !important;
}

.category-empty-box i {
    color: var(--btv-red) !important;
    font-size: 44px !important;
    margin-bottom: 14px !important;
}

.category-empty-box h3 {
    margin: 0 0 8px !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.category-empty-box p {
    margin: 0 !important;
    color: #667085 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .category-layout-grid {
        grid-template-columns: minmax(0, 1fr) 310px !important;
    }

    .category-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .category-page-section .premium-news-image {
        height: 235px !important;
    }
}

@media (max-width: 992px) {
    .category-layout-grid {
        grid-template-columns: 1fr !important;
    }

    .category-sidebar {
        position: static !important;
    }

    .category-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .category-page-section {
        padding: 12px 0 34px !important;
    }

    .category-page-section .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .category-page-head {
        padding: 18px !important;
        border-radius: 16px !important;
    }

    .category-title-row {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .category-title-row h1 {
        font-size: 30px !important;
    }

    .category-title-row strong {
        min-height: 34px !important;
        font-size: 13px !important;
    }

    .category-filter-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .category-filter-group {
        min-width: 0 !important;
    }

    .category-filter-group select,
    .btv-custom-select-btn {
        height: 44px !important;
        border-radius: 13px !important;
        font-size: 13px !important;
    }

    .category-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .category-page-section .premium-news-image {
        height: 210px !important;
    }

    .category-page-section .premium-news-overlay h4 {
        font-size: 17px !important;
    }
}

@media (max-width: 520px) {
    .category-news-grid {
        grid-template-columns: 1fr !important;
    }

    .category-filter-bar {
        grid-template-columns: 1fr !important;
    }

    .category-page-section .premium-news-image {
        height: 230px !important;
    }
}

/* =========================================================
   BTV FINAL HEADER + ADS FIX
   bunu style.css faylının ən sonuna qoy
========================================================= */

/* =========================
   STICKY HEADER FIX
========================= */

.sticky-header {
    height: 66px !important;
    background: rgba(255, 255, 255, .98) !important;
    backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid var(--btv-border) !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    z-index: 9000 !important;
    transform: translateY(-110%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: .25s ease !important;
    overflow: visible !important;
    display: block !important;
}

body.header-fixed .sticky-header {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

body.header-fixed .global-side-ad {
    top: 78px !important;
    height: calc(100vh - 92px) !important;
}

/* mobil versiyada sticky header gizli qalsın */
@media (max-width: 768px) {
    .sticky-header {
        display: none !important;
    }
}

/* =========================
   ÜMUMİ ADMIN AD SLOT
========================= */

.desktop-side-ads {
    display: none !important;
}

.btv-ad-slot {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    overflow: hidden !important;
    text-decoration: none !important;
    color: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: #b40019 !important;
}

.btv-ad-slot picture {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.btv-ad-slot img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

/* =========================
   PLACEHOLDER ÜMUMİ
========================= */

.btv-ad-placeholder {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: inherit !important;
    overflow: hidden !important;
    color: #ffffff !important;
    background: linear-gradient(90deg, #b40019 0%, #c9001f 45%, #8c0016 100%) !important;
}

.btv-ad-placeholder::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -35% !important;
    width: 30% !important;
    height: 100% !important;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.22),
        transparent
    ) !important;
    transform: skewX(-18deg) !important;
    animation: btvFinalAdLight 4s ease-in-out infinite !important;
    pointer-events: none !important;
}

@keyframes btvFinalAdLight {
    0% {
        left: -35%;
    }

    45% {
        left: 110%;
    }

    100% {
        left: 110%;
    }
}

.btv-ad-placeholder > * {
    position: relative !important;
    z-index: 2 !important;
}

/* =========================
   HEADER ÜST REKLAM
   SİZİN REKLAM BURADA yan-yana
========================= */

.home-ad-section,
.detail-top-ad-section {
    padding: 0 !important;
    margin: 0 0 10px !important;
    background: transparent !important;
}

.home-top-ad,
.detail-top-ad {
    width: 100% !important;
    height: 100px !important;
    min-height: 100px !important;
    max-height: 100px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #b40019 !important;
    box-shadow: none !important;
}

/* Əgər admin şəkil yüklənibsə tam görünsün */
.home-top-ad img,
.detail-top-ad img {
    object-fit: contain !important;
    background: #b40019 !important;
}

/* Placeholder olanda yazı yan-yana */
.home-top-ad .btv-ad-placeholder,
.detail-top-ad .btv-ad-placeholder {
    height: 100px !important;
    min-height: 100px !important;
    display: grid !important;
    grid-template-columns: max-content max-content max-content !important;
    grid-template-rows: auto auto !important;
    align-content: center !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 10px !important;
    row-gap: 5px !important;
    padding: 10px 16px !important;
    text-align: center !important;
}

.home-top-ad .btv-ad-placeholder span,
.detail-top-ad .btv-ad-placeholder span {
    color: #ffffff !important;
    font-size: 26px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .2px !important;
    text-transform: uppercase !important;
}

.home-top-ad .btv-ad-placeholder strong,
.detail-top-ad .btv-ad-placeholder strong {
    color: #ffffff !important;
    font-size: 36px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: .4px !important;
    text-transform: uppercase !important;
}

.home-top-ad .btv-ad-placeholder small,
.detail-top-ad .btv-ad-placeholder small {
    grid-column: 1 / -1 !important;
    color: rgba(255,255,255,.9) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
}

/* =========================
   SLIDER ALTINDA 2 REKLAM
========================= */

.below-slider-ads-section {
    padding: 20px 0 !important;
    margin: 0 !important;
    background: #f4f7fb !important;
}

.below-slider-ads-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    align-items: stretch !important;
}

.below-slider-ad-card {
    width: 100% !important;
    height: 100px !important;
    min-height: 100px !important;
    max-height: 100px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.below-slider-ad-card img {
    object-fit: cover !important;
}

.below-slider-ad-card .btv-ad-placeholder {
    height: 100px !important;
    min-height: 100px !important;
    display: grid !important;
    grid-template-columns: max-content max-content max-content !important;
    grid-template-rows: auto auto !important;
    align-content: center !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 8px !important;
    row-gap: 4px !important;
    padding: 8px 12px !important;
}

.below-slider-ad-card .btv-ad-placeholder span {
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.below-slider-ad-card .btv-ad-placeholder strong {
    color: #ffffff !important;
    font-size: 28px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.below-slider-ad-card .btv-ad-placeholder small {
    grid-column: 1 / -1 !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
}

/* =========================
   XƏBƏR İÇİ REKLAM
========================= */

.news-inside-ad {
    width: 100% !important;
    height: 115px !important;
    min-height: 115px !important;
    max-height: 115px !important;
    margin: 28px 0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.news-inside-ad img {
    object-fit: cover !important;
}

.news-inside-ad .btv-ad-placeholder {
    height: 115px !important;
    min-height: 115px !important;
    display: grid !important;
    grid-template-columns: max-content max-content max-content !important;
    grid-template-rows: auto auto !important;
    align-content: center !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 9px !important;
    row-gap: 5px !important;
    padding: 10px 14px !important;
}

.news-inside-ad .btv-ad-placeholder span {
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

.news-inside-ad .btv-ad-placeholder strong {
    color: #ffffff !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.news-inside-ad .btv-ad-placeholder small {
    grid-column: 1 / -1 !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
}

/* =========================
   SIDEBAR REKLAM
========================= */

.detail-sidebar-ad {
    width: 100% !important;
    height: 292px !important;
    min-height: 292px !important;
    max-height: 292px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.detail-sidebar-ad img {
    object-fit: cover !important;
}

.detail-sidebar-ad .btv-ad-placeholder {
    height: 292px !important;
    min-height: 292px !important;
    display: grid !important;
    grid-template-columns: max-content max-content max-content !important;
    grid-template-rows: auto auto !important;
    align-content: center !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 8px !important;
    row-gap: 6px !important;
    padding: 14px !important;
}

.detail-sidebar-ad .btv-ad-placeholder span {
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

.detail-sidebar-ad .btv-ad-placeholder strong {
    color: #ffffff !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.detail-sidebar-ad .btv-ad-placeholder small {
    grid-column: 1 / -1 !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
}

/* =========================
   FOOTER TOP AD
========================= */

.footer-top-ad-section {
    padding: 20px 0 !important;
    background: #f4f7fb !important;
}

.footer-top-ad {
    width: 100% !important;
    height: 100px !important;
    min-height: 100px !important;
    max-height: 100px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

.footer-top-ad img {
    object-fit: contain !important;
    background: #b40019 !important;
}

/* =========================
   MOBIL / DESKTOP GİZLƏTMƏ
========================= */

.ad-hide-mobile {
    display: block !important;
}

.ad-hide-desktop {
    display: none !important;
}

@media (max-width: 768px) {
    .ad-hide-mobile {
        display: none !important;
    }

    .ad-hide-desktop {
        display: block !important;
    }

    .home-top-ad,
    .detail-top-ad,
    .footer-top-ad,
    .below-slider-ad-card,
    .news-inside-ad {
        height: 92px !important;
        min-height: 92px !important;
        max-height: 92px !important;
        border-radius: 12px !important;
    }

    .below-slider-ads-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .home-top-ad .btv-ad-placeholder,
    .detail-top-ad .btv-ad-placeholder,
    .footer-top-ad .btv-ad-placeholder,
    .below-slider-ad-card .btv-ad-placeholder,
    .news-inside-ad .btv-ad-placeholder {
        height: 92px !important;
        min-height: 92px !important;
        grid-template-columns: max-content max-content max-content !important;
        column-gap: 6px !important;
    }

    .home-top-ad .btv-ad-placeholder span,
    .detail-top-ad .btv-ad-placeholder span,
    .footer-top-ad .btv-ad-placeholder span,
    .below-slider-ad-card .btv-ad-placeholder span,
    .news-inside-ad .btv-ad-placeholder span {
        font-size: 15px !important;
    }

    .home-top-ad .btv-ad-placeholder strong,
    .detail-top-ad .btv-ad-placeholder strong,
    .footer-top-ad .btv-ad-placeholder strong,
    .below-slider-ad-card .btv-ad-placeholder strong,
    .news-inside-ad .btv-ad-placeholder strong {
        font-size: 24px !important;
    }

    .home-top-ad .btv-ad-placeholder small,
    .detail-top-ad .btv-ad-placeholder small,
    .footer-top-ad .btv-ad-placeholder small,
    .below-slider-ad-card .btv-ad-placeholder small,
    .news-inside-ad .btv-ad-placeholder small {
        font-size: 11px !important;
    }

    .detail-sidebar-ad {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }
}

/* =========================
   GLOBAL SIDE ADS
========================= */

.global-side-ads {
    --btv-container-width: 1300px;
    --btv-side-ad-width: 160px;
    --btv-side-gap: 18px;
}

.global-side-ad {
    position: fixed !important;
    top: 128px !important;
    width: var(--btv-side-ad-width) !important;
    height: calc(100vh - 155px) !important;
    max-height: 620px !important;
    min-height: 500px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    z-index: 60 !important;
    box-shadow: 0 18px 40px rgba(6, 26, 51, .20) !important;
}

.global-side-ad-left {
    left: calc((100vw - var(--btv-container-width)) / 2 - var(--btv-side-ad-width) - var(--btv-side-gap)) !important;
}

.global-side-ad-right {
    right: calc((100vw - var(--btv-container-width)) / 2 - var(--btv-side-ad-width) - var(--btv-side-gap)) !important;
}

.global-side-ad img {
    object-fit: cover !important;
}

.global-side-ad .btv-ad-placeholder {
    height: 100% !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 14px !important;
}

.global-side-ad .btv-ad-placeholder span:first-child {
    writing-mode: vertical-rl !important;
    transform: rotate(180deg) !important;
    font-size: 30px !important;
    line-height: 1 !important;
    letter-spacing: 2px !important;
    font-weight: 900 !important;
}

.global-side-ad .btv-ad-placeholder strong {
    font-size: 15px !important;
    line-height: 1.2 !important;
}

.global-side-ad .btv-ad-placeholder small {
    font-size: 12px !important;
}

@media (max-width: 1700px) {
    .global-side-ads {
        --btv-side-ad-width: 145px;
        --btv-side-gap: 12px;
    }
}

@media (max-width: 1560px) {
    .global-side-ad {
        width: calc((100vw - 1300px) / 2 - 12px) !important;
    }

    .global-side-ad-left {
        left: 6px !important;
    }

    .global-side-ad-right {
        right: 6px !important;
    }
}

@media (max-width: 1450px) {
    .global-side-ads {
        display: none !important;
    }
}

