/* ══════════════════════════════════════════════
   SEKSIONET — media grid + expand
══════════════════════════════════════════════ */
.seks-layer {
    position: absolute;
    inset: 0;
    z-index: 4;          /* mbi overlay(2) dhe border(3) */
    overflow: hidden;
}
.seks-grid {
    position: absolute;
    inset: 0;
    display: grid;
}
.seks-cell {
    position: relative;
    overflow: hidden;
    background: #000;
    box-sizing: border-box;
}
.seks-cell img,
.seks-cell video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;   /* pa prerje brenda seksionit */
    display: block;
}
/* Vija ndarëse — identike me kufijtë e kutive */
.seks-cell.br { border-right:  2px solid #3e2723; }
.seks-cell.bb { border-bottom: 2px solid #3e2723; }
/* Cel-i i zgjedhur gjatë navigimit */
.seks-cell-selected::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255,255,255,0.85);
    box-sizing: border-box;
    pointer-events: none;
    z-index: 5;
}
/* Teksti brenda seksionit të zgjeruar */
.seks-tekst {
    font-size: clamp(1rem, 5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}

/* ══════════════════════════════════════════════
   SPONSOR KUTI — slide in/out
══════════════════════════════════════════════ */
.sponsor-kuti {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 20;
    overflow: hidden;
    pointer-events: auto;
}
.sponsor-kuti.sponsor-top {
    top: 0;
    transform: translateY(-100%);
}
.sponsor-kuti.sponsor-bottom {
    bottom: 0;
    transform: translateY(100%);
}
.sponsor-kuti.sponsor-shfaq {
    display: block !important;
    transition: transform 0.4s ease-out;
    transform: translateY(0);
}
.sponsor-kuti.sponsor-fshih {
    transition: transform 0.35s ease-in;
}
.sponsor-kuti.sponsor-fshih.sponsor-top {
    transform: translateY(-100%);
}
.sponsor-kuti.sponsor-fshih.sponsor-bottom {
    transform: translateY(100%);
}

/* ── Portrait ── */
@media only screen and (max-width:768px) and (orientation:portrait) {
    .sponsor-kuti.sponsor-top    { /* njësoj tani */ }
    .sponsor-kuti.sponsor-bottom { /* njësoj tani */ }
}
/* ── Landscape ── */
@media only screen and (max-width:1024px) and (orientation:landscape) {
    .sponsor-kuti.sponsor-top    { /* njësoj tani */ }
    .sponsor-kuti.sponsor-bottom { /* njësoj tani */ }
}
/* ── Desktop ── */
@media only screen and (min-width:1025px) {
    .sponsor-kuti.sponsor-top    { /* njësoj tani */ }
    .sponsor-kuti.sponsor-bottom { /* njësoj tani */ }
}