/* ── FONTS ───────────────────────────────────────────────── */
@font-face {
    font-family: 'FbAbsolutiHeb';
    src: url('fonts/FbAbsolutiHeb-Regular.woff2') format('woff2'),
         url('fonts/FbAbsolutiHeb-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FbAbsolutiHeb';
    src: url('fonts/FbAbsolutiHeb-Bold.woff2') format('woff2'),
         url('fonts/FbAbsolutiHeb-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont-ExtraLightDEMO.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont-HeavyDEMO.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
    --color-dark:       #1E1E1E;
    --color-dark-rgb:   30, 30, 30;
    --color-white:      #FFFFFF;
    --color-gray:       #7D7D7D;
    --color-light-gray: #CCCCCC;
    --color-hover-bg:   #F5F5F5;

    --font-heb: 'FbAbsolutiHeb', 'Heebo', Arial, sans-serif;
    --font-en:  'Mont', Arial, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; margin-top: 0 !important; }
body {
    font-family: var(--font-heb);
    font-size: 16px;
    direction: rtl;
    background: var(--color-white);
    color: var(--color-dark);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; }
h1 { font-family: var(--font-heb); font-size: 32px; font-weight: 700; }
h2 { font-family: var(--font-heb); font-size: 24px; font-weight: 700; }
h3 { font-family: var(--font-heb); font-size: 18px; font-weight: 700; }
#wpadminbar { display: none !important; }

/* ── HEADER ─────────────────────────────────────────────── */
.admin-bar .tk-header { top: 32px; }
.tk-header {
    width: 100%;
    height: 68px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}
.tk-header-inner {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
}

.tk-content{    padding-top: 120px !important;
    max-width: 1200px;
    margin: 0 auto;}
.single-film .tk-content{    padding-top: 0px !important;}
.page-template-front-page-new .tk-content{    padding-top: 0px !important;
    max-width: 100%;
    margin: 0 auto;}
/* Logo */
.tk-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    direction: rtl;
}
.tk-logo img {
    height: 54px;
    width: 126px;
    object-fit: contain;
}

/* Header right wrapper */
.tk-header-right {
    display: flex;
    align-items: center;
}

/* Hamburger — скрыт на десктопе */
.tk-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 36px;
    height: 36px;
}
.tk-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 1px;
    transition: transform .25s, opacity .25s;
}
.tk-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tk-hamburger.is-open span:nth-child(2) { opacity: 0; }
.tk-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer — скрыт на десктопе */
.tk-mobile-nav {
    display: none;
}
.tk-mobile-nav.open {
    display: flex !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: var(--color-white) !important;
    z-index: 9999 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    overflow-y: auto !important;
    direction: rtl !important;
    padding: 0 !important;
}

/* Navigation */
.tk-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    direction: rtl;
}
.tk-nav a {
    font-family: var(--font-heb);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    white-space: nowrap;
    transition: opacity .18s;
}
.tk-nav a:hover { opacity: .5; }
.tk-nav a.nav-takriview { font-family: var(--font-en); }

/* Header controls */
.tk-header-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}
.tk-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Language switcher */
.tk-lang-wrap { position: relative; }
.tk-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    cursor: pointer;
    user-select: none;
}
.tk-lang-chevron {
    width: 10px;
    height: 6px;
    transition: transform .2s;
}
.tk-lang-wrap.open .tk-lang-chevron { transform: rotate(180deg); }
.tk-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-dark);
    min-width: 80px;
    z-index: 200;
}
.tk-lang-wrap.open .tk-lang-dropdown { display: block; }
.tk-lang-dropdown a {
    display: block;
    padding: 8px 14px;
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--color-dark);
    transition: background .15s;
}
.tk-lang-dropdown a:hover { background: var(--color-hover-bg); }
.tk-lang-dropdown a.active { font-weight: 700; }

/* Facebook */
.tk-fb-btn {
    display: flex;
    align-items: center;
    color: var(--color-dark);
    transition: opacity .18s;
}
.tk-fb-btn:hover { opacity: .5; }

/* ── HERO ────────────────────────────────────────────────── */
.tk-hero {
    width: 100%;
    height: 633px;
    display: flex;
    direction: ltr;
    overflow: hidden;
    gap: 10px;
    background: var(--color-white);
    margin-top: 68px;
}

/* Left panel */
.tk-hero-left {
    width: 40%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden; background: #000;
}
/* Full-panel link (valid HTML: iframe stays outside <a>) */
.tk-hero-left-link {
    position: absolute;
    inset: 0;
    z-index: 4;
}
.tk-hero-left-link:focus {
    outline: none;
}
.tk-hero-left-link:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: -4px;
}
.tk-hero-left > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tk-hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.tk-hero-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transform: translate(-50%, -50%);
    border: 0;
}
.tk-hero-left-title {
    font-family: var(--font-en);
    position: absolute;
    top: 49%;
    left: 40px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%) rotate(180deg);
    color: var(--color-white);
    font-size: 77px;
    font-weight: 700;
    letter-spacing: 22px;
    white-space: nowrap;
    z-index: 5;
    padding: 12px 16px;
    transition: font-weight .2s ease;
    pointer-events: none;
}
.tk-hero-left:hover .tk-hero-left-title {
    font-weight: 400;
}

/* Right panel */
.tk-hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.tk-hero-right > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.tk-hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(var(--color-dark-rgb), .8) 0%,
        rgba(var(--color-dark-rgb), 0) 45%
    );
    pointer-events: none;
}

/* Hero bottom overlay */
.tk-hero-bottom {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
    direction: ltr;
}
.tk-hero-caption {
    direction: rtl;
    flex: 1;
    max-width: 454px;
    padding-bottom: 4px;
}
.tk-hero-title {
    font-family: var(--font-heb);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 8px;
    text-align: right;
}
.tk-hero-editor {
    font-family: var(--font-heb);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    text-align: right;
    position: relative;
    top: -10px;
}
.tk-hero-title {
    opacity: 0;
    transform: translateY(18px);
    animation: tkLineReveal .7s ease forwards;
}
.tk-hero-editor {
    opacity: 0;
    transform: translateY(18px);
    animation: tkLineReveal .7s ease .3s forwards;
}
@keyframes tkLineReveal {
    to { opacity: 1; transform: translateY(0); }
}
.tk-issue-box { flex-shrink: 0; line-height: 0; }

/* ── Issue badge – shared ── */
.tk-badge {
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tk-badge__label {
    font-family: var(--font-heb);
    color: var(--color-white);
    font-weight: 400;
    line-height: 1.2;
}
.tk-badge__num {
    font-family: var(--font-heb);
    color: var(--color-white);
    font-weight: 400;
    line-height: 1;
}

/* Desktop: square 86×86, גיליון on top, 30 below */
.tk-badge--square {
    width: 86px;
    height: 86px;
    border: 2px solid var(--color-white);
    flex-direction: column;
    gap: 0;
}
.tk-badge--square .tk-badge__label { font-size: 13px; }
.tk-badge--square .tk-badge__num   { font-size: 40px; margin-top: 4px; }

/* Mobile: wide 108×40, 30 left, גיליון right */
.tk-badge--wide {
    width: 108px;
    height: 40px;
    border: 1px solid var(--color-white);
    flex-direction: row;
    gap: 7px;
    direction: ltr;
    justify-content: center;
    align-items: center;
}
.tk-badge--wide .tk-badge__label { font-size: 13px; }
.tk-badge--wide .tk-badge__num   { font-size: 24px; }
.tk-issue-mobile { display: none !important; }

/* ── MASONRY GALLERY ─────────────────────────────────────── */
.tk-masonry-section {
    max-width: 1440px;
    margin: 90px auto;
    padding: 0 50px;
}
.tk-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 360px 200px 180px;
    gap: 8px;
    background: var(--color-white);
    direction: ltr;
}

/* Brick */
.tk-brick {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}
.tk-brick img.tk-brick-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.tk-brick:hover img.tk-brick-img { transform: scale(1.04); }

.tk-brick-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px 16px;
    background-image: url('images/homepage/UnderText.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    direction: rtl;
}
.tk-brick-category {
    display: block;
    font-family: var(--font-heb);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 5px;
    opacity: .85;
}
.tk-brick-title {
    display: block;
    font-family: var(--font-heb);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
}

/* Grid spans */
.tk-brick--1 { grid-column: span 4; }
.tk-brick--2 { grid-column: span 8; }
.tk-brick--3 { grid-column: span 6; }
.tk-brick--4 { grid-column: span 6; }
.tk-brick--5 { grid-column: span 4; }
.tk-brick--6 { grid-column: span 4; }
.tk-brick--7 { grid-column: span 4; }

/* Image positions */
.tk-brick--1 img.tk-brick-img { object-position: center 20%; }
.tk-brick--2 img.tk-brick-img { object-position: center 30%; }
.tk-brick--3 img.tk-brick-img { object-position: center center; }
.tk-brick--4 img.tk-brick-img { object-position: center 40%; }
.tk-brick--5 img.tk-brick-img { object-position: center center; }
.tk-brick--6 img.tk-brick-img { object-position: center center; }
.tk-brick--7 img.tk-brick-img { object-position: center center; }

/* ── FULL-WIDTH BANNER ───────────────────────────────────── */
.tk-banner {
    position: relative;
    width: 100%;
    height: 572px;
    overflow: hidden;
}
.tk-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.tk-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(var(--color-dark-rgb), 0) 0%,
        rgba(var(--color-dark-rgb), .55) 100%
    );
    pointer-events: none;
    height: 572px;
}
.tk-banner-btn {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    transition: opacity .2s;
}
.tk-banner-btn:hover { opacity: .75; }
.tk-banner-btn img { display: block; width: 175px; height: 45px; }

/* ── ISSUES SLIDER ───────────────────────────────────────── */
.tk-issues-section {
    max-width: 1440px;
    margin: 80px auto 0;
    padding: 0 50px;
    direction: rtl;
}

/* Mobile flat grid — hidden on desktop */
.tk-issues-mobile-grid { display: none; }
.tk-issues-title {
    font-family: var(--font-heb);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 36px;
    color: var(--color-dark);
}

.tk-slider-wrap { overflow: hidden; }
.tk-slider-track {
    display: flex;
    transition: transform .4s ease;
}
.tk-slide-page {
    min-width: 100%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(4, 304px);
    grid-template-rows: repeat(2, auto);
    gap: 60px 40px;
    direction: rtl;
    justify-content: center;
}

/* Issue card */
.tk-issue-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.tk-issue-card-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.tk-issue-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-dark);
}
.tk-issue-card-number {
    font-family: var(--font-heb);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}
.tk-issue-card-number span {
    font-family: var(--font-en);  /* number digit in Mont */
}
.tk-issue-card-season {
    font-family: var(--font-en);  /* year in Mont */
    font-size: 14px;
    font-weight: 400;
    color: var(--color-gray);
}
.tk-issue-card-desc {
    margin-top: 8px;
    font-family: var(--font-heb);
    font-size: 14px;
    color: var(--color-dark);
    text-align: right;
    line-height: 1.5;
}

/* Slider nav */
.tk-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    direction: ltr;
}
.tk-slider-btn {
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tk-slider-btn img { display: block; }
.tk-slider-btn-img-hover {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity .18s;
}
.tk-slider-btn:hover .tk-slider-btn-img-default { opacity: 0; }
.tk-slider-btn:hover .tk-slider-btn-img-hover { opacity: 1; }
.tk-slider-btn .tk-slider-btn-img-default { transition: opacity .18s; }
.tk-slider-counter {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    min-width: 44px;
    text-align: center;
}

/* Image captions from title="" (see takriv_wrap_content_img_title_captions in functions.php) */
.tk-content-img-caption::after {
    content: attr(data-tk-caption);
    display: block;
    text-align: right;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.english-article-template-default .tk-content-img-caption::after { text-align: left; }

/* Embed / iframe captions — real DOM node under video (ARVE uses overflow:hidden + zero height; ::after was clipped) */
/* Outer ARVE block: theme/plugin sets overflow:hidden + max-height on .arve-embed — clips caption below video */
#html .arve-embed:has(.tk-content-embed-caption),
html .arve-embed:has(.tk-content-embed-caption) {
    overflow: visible !important;
    max-height: none !important;
}

/* Undo ARVE “responsive box” clip when our wrapper is inside */
.arve-wrapper:has(.tk-content-embed-caption) .arve-embed-container,
.arve-embed-container:has(.tk-content-embed-caption) {
    overflow: visible !important;
    height: auto !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
}

.tk-content-embed-caption {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

/* 16:9 slot for the iframe; caption sits below in normal flow */
.tk-content-embed-caption__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}
@supports not (aspect-ratio: 16 / 9) {
    .tk-content-embed-caption__media {
        height: 0;
        padding-bottom: 56.25%;
        aspect-ratio: auto;
    }
}

.tk-content-embed-caption__media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    border: 0;
}

.tk-content-embed-caption__text {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
}

.english-article-template-default .tk-content-embed-caption__text { text-align: left; }
.post-content a{color: #0095ff!important}

/* ── SPONSORS ────────────────────────────────────────────── */
.tk-sponsors {
    width: 100%;
    padding: 90px 50px 90px;
    text-align: center;
    direction: rtl;
}
.tk-sponsors-title {
    font-family: var(--font-heb);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 40px;
}
.tk-sponsors-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.tk-sponsors-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .8;
    transition: opacity .2s, filter .2s;
}
.tk-sponsors-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.tk-footer {
    width: 100%;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 0 50px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
}
.tk-footer-links {
    display: flex;
    gap: 6px;
    align-items: center;
    font-family: var(--font-heb);
    font-size: 14px;
}
.tk-footer-links a {
    color: var(--color-white);
    transition: opacity .18s;
}
.tk-footer-links a:hover { opacity: .6; }
.tk-footer-links span { opacity: .4; }
.tk-footer-copy {
    font-family: var(--font-heb);
    font-size: 14px;
    color: var(--color-white);
    opacity: .8;
}
.tk-footer-credit {
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--color-white);
    opacity: .8;
    direction: ltr;
}

/* ══════════════════════════════════════════
   MOBILE — max-width: 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── HEADER ── */
    .tk-header { height: 64px; }
    .tk-header-inner { padding: 0 20px; }

    /* Лого — по центру */
    .tk-logo { position: absolute; left: 70%; transform: translateX(-50%); }
    .tk-logo img { height: 44px; width: auto; }

    /* Навигация — скрыта, вместо неё drawer */
    .tk-nav { display: none; }

    /* Гамбургер — показываем */
    .tk-hamburger { display: flex; }

    /* Язык + Facebook остаются слева */
    .tk-header-left { gap: 16px; }

    /* Mobile nav drawer */
    .tk-mobile-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        overflow-y: auto;
        direction: rtl;
    }
    /* open state handled globally above */
    .tk-mobile-nav a {
        font-family: var(--font-heb);
        font-size: 18px;
        font-weight: 400;
        color: var(--color-dark);
        padding: 20px 24px;
        border-bottom: 1px solid var(--color-light-gray);
        text-align: right;
        transition: background .15s;
        display: block;
    }
    .tk-mobile-nav a:active { background: var(--color-hover-bg); }
    .tk-mobile-nav a.nav-takriview {
        font-family: var(--font-en);
        font-weight: 700;
        font-size: 20px;
        background: var(--color-dark);
        color: var(--color-white);
        letter-spacing: 1px;
        text-align: right;
    }

    /* ── HERO ── */
    .tk-hero {
        flex-direction: column !important;
        height: auto !important;
        gap: 6px !important;
        background: var(--color-white) !important;
        margin-top: 58px !important;
    }
    .tk-hero-right {
        order: 1 !important;
        width: 100% !important;
        height: auto !important;
        flex: none !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .tk-hero-right > img {
        width: 100% !important;
        height: 65vw !important;
        min-height: 260px !important;
        object-fit: cover !important;
        flex-shrink: 0 !important;
    }
    .tk-hero-right::after { display: none !important; }
    .tk-hero-bottom {
        position: static !important;
        background: var(--color-dark) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 24px 20px 28px !important;
        direction: rtl !important;
    }
    .tk-issue-box { order: -1 !important; }
    .tk-issue-desktop { display: none !important; }
    .tk-issue-mobile { display: flex !important; width: 108px !important; height: 40px !important; }
    .tk-hero-caption {
        max-width: 100% !important;
        text-align: center !important;
        padding-bottom: 0 !important;
    }
    .tk-hero-title {
        text-align: center !important;
        font-size: 22px !important;
    }
    .tk-hero-editor {
        text-align: center !important;
        font-size: 14px !important;
    }
    .tk-hero-left {
        order: 2 !important;
        width: 100% !important;
        height: 75vw !important;
        min-height: 300px !important;
        overflow: hidden !important;
        position: relative !important;
        flex: none !important;
    }
    .tk-hero-left::before {
        content: '';
        position: absolute;
        top: 0;
        left: 2vw;
        width: 13vw;
        height: 100%;
        background: var(--color-dark);
        z-index: 2;
    }
    .tk-hero-left-title {
        position: absolute !important;
        top: -11px !important;
        bottom: 0 !important;
        left: 2vw !important;
        width: 13vw !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding-right: 16px !important;
        padding-bottom: 12px !important;
        writing-mode: vertical-rl !important;
        text-orientation: mixed !important;
        transform: rotate(180deg) !important;
        font-size: 8vw !important;
        letter-spacing: 3.5vw !important;
        z-index: 3 !important;
        margin-left: 8px !important;
    }

    /* ── MASONRY ── */
    .tk-masonry-section { padding: 0 16px; margin: 40px auto; }
    .tk-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 8px;
    }
    .tk-brick--1,
    .tk-brick--2,
    .tk-brick--3,
    .tk-brick--4,
    .tk-brick--5,
    .tk-brick--6,
    .tk-brick--7 {
        grid-column: span 1;
        height: 220px;
    }

    .fusion-row{padding: 0 15px;}

    /* ── BANNER ── */
    .tk-banner { height: 300px; }
    .tk-banner-btn { bottom: 40px; }
    .tk-banner-title { bottom: 182px; }
    .tk-banner-btn img { width: 140px; height: auto; }

    /* ── ISSUES SLIDER ── */
    .tk-issues-section { padding: 0 16px; margin: 40px auto 0; }
    .tk-issues-title { font-size: 20px; margin-bottom: 24px; }

    /* Hide desktop slider + nav on mobile */
    #tkSliderWrap { display: none !important; }
    #tkSliderNav  { display: none !important; }

    /* Show flat 2-column grid on mobile */
    .tk-issues-mobile-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 12px;
        direction: rtl;
    }
    .tk-issues-mobile-grid .tk-issue-card { min-width: 0; }
    .tk-issues-mobile-grid .tk-issue-card-img { height: 220px; object-position: center center; display: block; width: 100%; object-fit: cover; }
    .tk-issues-mobile-grid .tk-issue-card-number { font-size: 13px; }
    .tk-issues-mobile-grid .tk-issue-card-desc { font-size: 12px; }

    /* ── SPONSORS ── */
    .tk-sponsors { padding: 32px 16px 40px; }
    .tk-sponsors-title { font-size: 18px; margin-bottom: 24px; }
    .tk-sponsors-logos { gap: 20px; }
    .tk-sponsors-logos img { height: 40px; }

    /* ── FOOTER ── */
    .tk-footer {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px 16px;
        text-align: center;
    }
    .tk-footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ══════════════════════════════════════════
   FILMS PAGE
══════════════════════════════════════════ */

/* Hero */
.tk-films-hero {
    background: var(--color-white);
    padding: 0px 50px 20px;
    text-align: center;
    direction: rtl;
}
.tk-films-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    margin-top: 40px;
}
.tk-films-hero-desc {
    font-family: var(--font-heb);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    max-width: 467px;
    margin: 0 auto 35px;
    line-height: 1.4;
}
.tk-films-search-wrap {
    max-width: 773px;
    margin: 0 auto;
    display: flex;
    direction: rtl;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--color-dark);
    padding: 0 0 10px;
}
.tk-films-search {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--color-dark);
    font-family: var(--font-heb);
    font-size: 16px;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    direction: rtl;
    text-align: right;
    -webkit-appearance: none;
    height: 24px;
    line-height: 24px;
}
.tk-films-search::placeholder {
    color: #697077;
}
.tk-films-search-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}

/* Grid */
.tk-films-section {
    max-width: 1340px;
    margin: 5px auto 120px;
    padding: 0;
    direction: rtl;
}
.tk-films-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 22px;
}

/* Card — match design: thin black border, rounded corners */
.tk-film-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    overflow: hidden;
    outline: 1px solid transparent;
    outline-offset: 11px;
    transition: outline-color .2s ease;
    transition: outline-color .2s ease;
}
.tk-film-card:hover {
    outline-color: #1e1e1e;
    border-radius: 0;
}
.tk-film-card-img-wrap {
    position: relative;
    width: 100%;
    height: 276px;
    overflow: hidden;
    flex-shrink: 0;
}
.tk-film-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .2);
    pointer-events: none;
}
.tk-film-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.tk-film-card:hover .tk-film-card-img {
    transform: scale(1.04);
}
.tk-film-card-body {
    padding: 12px 16px 16px 16px;
    direction: rtl;
    text-align: right;
}
.tk-film-card-title {
    font-family: var(--font-heb);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
    line-height: 1.28;
}
.tk-film-card-director {
    font-family: var(--font-heb);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 10px;
}
.tk-film-card-meta {
    font-family: var(--font-heb);
    font-size: 14px;
    font-weight: 400;
    color: #777676;
    margin-bottom: 18px;
    direction: rtl;
    text-align: right;
}
.tk-film-card-desc {
    font-family: var(--font-heb);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.4;
}

/* Films responsive — tablet */
@media (max-width: 1024px) {
    .tk-films-section { padding: 0 30px; }
    .tk-films-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 22px;
    }
}

/* Films responsive — mobile */
@media (max-width: 768px) {
    .tk-films-hero {

        padding: 0px 20px 20px;
    }
    .tk-films-hero-title {
        font-size: 24px;
        margin-top: 40px;
    }
    .tk-films-hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .tk-films-search {
        height: 44px;
    }
    .tk-films-section {
        padding: 0 16px;
        margin: 5px auto 0;
    }
    .tk-films-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .tk-film-card-img-wrap {
        height: 220px;
    }
}

/* ══════════════════════════════════════════
   HOMEPAGE HOVER EFFECTS
══════════════════════════════════════════ */

/* 1. Hero caption hover — two white lines above/below title on hover */
.tk-hero-caption {
    position: relative;
}
.tk-hero-caption::before,
.tk-hero-caption::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-white);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}
.tk-hero-caption::before {
    top: -15px;
}
.tk-hero-caption::after {
    bottom: -4px;
}
.tk-hero-right:hover .tk-hero-caption::before,
.tk-hero-right:hover .tk-hero-caption::after {
    opacity: 1;
}

/* 2. TakriView left block hover — black strip behind text, full height */
.tk-hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 90px;
    height: 100%;
    background: var(--color-dark);
    z-index: 2;
    opacity: 1;
    transition: opacity .3s ease;
    pointer-events: none;
}
.tk-hero-left:hover::after {
    opacity: 0;
}
.tk-hero-left-title {
    left: 25px;
}

/* 3. Banner hover — show title on hover */
.tk-banner-link {
    position: relative;
    display: block; height: 100%;
}
.tk-banner-title {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-family: var(--font-heb);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 2;
    pointer-events: none;
}
.tk-banner-link:hover .tk-banner-title {
    opacity: 1;
}

/* Hide left panel hover on mobile (::before already shows it permanently) */
@media (max-width: 768px) {
    .tk-hero-left::after { display: none !important; }
    .tk-hero-left-title { left: auto !important; }
}

/* 4. Issue card hover — outline in gap (currently hidden per user request) */
.tk-issue-card {
    outline: 1px solid transparent;
    outline-offset: 20px;
    transition: outline-color .25s ease;
}
/* .tk-issue-card:hover { outline-color: var(--color-dark); } */

/* Hide TakriView menu item */ .nav-takriview { display: none !important; }

