﻿/* ---------- HERO (slider + side list) ---------- */
.hero {
    padding: 24px 0 6px
}

.hgrid {
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    gap: 20px
}

.slider {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.slides {
    display: flex;
    transition: transform .6s cubic-bezier(.65,.05,.36,1);
    height: 100%
}

.slide {
    min-width: 100%;
    position: relative;
    height: clamp(330px,38vw,440px)
}

    .slide img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .slide .scrim {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,rgba(15,24,21,.88) 0%,rgba(15,24,21,.55) 45%,rgba(15,24,21,.12) 80%,transparent 100%)
    }

    .slide .copy {
        position: absolute;
        left: 0;
        bottom: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 560px;
        padding: 38px;
        color: #fff
    }

    .slide .tag {
        align-self: flex-start;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .8px;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 0;
        color: #fff;
        margin-bottom: 13px
    }

    .slide h2 {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: clamp(1.6rem,3.2vw,2.6rem);
        line-height: 1.04;
        letter-spacing: -.8px;
        margin-bottom: 12px;
        text-wrap: balance;
        text-shadow: 0 2px 24px rgba(0,0,0,.35)
    }

    .slide p {
        font-size: .96rem;
        color: rgba(255,255,255,.85);
        max-width: 32em;
        margin-bottom: 18px
    }

    .slide .cta {
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: var(--amber);
        color: var(--ink);
        font-weight: 700;
        padding: 11px 20px;
        border-radius: 0;
        transition: transform .18s
    }

        .slide .cta:hover {
            transform: translateX(3px)
        }

        .slide .cta svg {
            width: 15px;
            height: 15px
        }

.t-nost {
    background: var(--ember)
}

.t-elek {
    background: var(--teal)
}

.t-ilk {
    background: var(--amber-d)
}

.t-test {
    background: var(--orange)
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background .2s,transform .2s;
    box-shadow: 0 6px 16px rgba(0,0,0,.2)
}

    .arrow:hover {
        background: #fff;
        transform: translateY(-50%) scale(1.08)
    }

    .arrow svg {
        width: 20px;
        height: 20px
    }

    .arrow.prev {
        left: 14px
    }

    .arrow.next {
        right: 14px
    }

.dots {
    position: absolute;
    bottom: 16px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 5
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 0;
    border: none;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: width .3s,background .3s;
    padding: 0
}

    .dot.active {
        width: 28px;
        background: var(--amber)
    }

/* side list */
.editor {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 18px 20px;
    display: flex;
    flex-direction: column
}

    .editor h3 {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: 1rem;
        letter-spacing: -.3px;
        display: flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 4px
    }

        .editor h3 .tk {
            width: 7px;
            height: 22px;
            border-radius: 0;
            background: var(--orange)
        }

.eitem {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 13px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--line)
}

    .eitem:last-child {
        border-bottom: none;
        padding-bottom: 2px
    }

.ethumb {
    width: 76px;
    height: 64px;
    border-radius: 0;
    overflow: hidden;
    position: relative
}

    .ethumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .35s
    }

.eitem:hover .ethumb img {
    transform: scale(1.08)
}

.ecat {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 3px;
    display: block
}

.eitem h4 {
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -.2px;
    transition: color .2s
}

.eitem:hover h4 {
    color: var(--orange-d)
}

.c-nost {
    color: var(--ember)
}

.c-ilk {
    color: var(--amber-d)
}

.c-gar {
    color: var(--ink)
}

.c-kult {
    color: var(--pink)
}

.c-elek {
    color: var(--teal-d)
}

/* ---------- CATEGORY CHIPS ---------- */
.chips {
    display: flex;
    gap: 11px;
    overflow-x: auto;
    padding: 20px 22px 4px;
    max-width: var(--maxw);
    margin: 0 auto;
    scrollbar-width: none
}

    .chips::-webkit-scrollbar {
        display: none
    }

.chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 9px 16px;
    font-weight: 600;
    font-size: .9rem;
    transition: transform .16s,box-shadow .16s
}

    .chip:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow)
    }

    .chip .d {
        width: 9px;
        height: 9px;
        border-radius: 50%
    }

/* ---------- SECTION SHELL ---------- */
.sec {
    padding: 42px 0
}

.sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line)
}

    .sec-head h2 {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: clamp(1.4rem,2.8vw,2rem);
        letter-spacing: -.7px;
        line-height: 1;
        display: flex;
        align-items: center;
        gap: 11px
    }

        .sec-head h2 .tick {
            width: 8px;
            height: 30px;
            border-radius: 0;
            background: var(--amber)
        }

            .sec-head h2 .tick.e {
                background: var(--ember)
            }

            .sec-head h2 .tick.o {
                background: var(--orange)
            }

            .sec-head h2 .tick.t {
                background: var(--teal)
            }

.head-tools {
    display: flex;
    align-items: center;
    gap: 10px
}

.more {
    font-size: .88rem;
    font-weight: 700;
    color: var(--teal-d);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

    .more:hover {
        color: var(--ink)
    }

.nav-btns {
    display: flex;
    gap: 7px
}

    .nav-btns button {
        width: 38px;
        height: 38px;
        border-radius: 0;
        border: 1px solid var(--line);
        background: var(--white);
        color: var(--ink);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .18s,color .18s,border-color .18s
    }

        .nav-btns button:hover {
            background: var(--ink);
            color: #fff;
            border-color: var(--ink)
        }

        .nav-btns button svg {
            width: 18px;
            height: 18px
        }

/* ---------- HORIZONTAL RAILS ---------- */
.rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 22px 18px;
    margin: 0 -22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth
}

    .rail::-webkit-scrollbar {
        display: none
    }

/* trending test cards */
.tcard {
    flex: 0 0 286px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    transition: transform .2s,box-shadow .2s
}

    .tcard:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg)
    }

    .tcard .ph {
        position: relative;
        aspect-ratio: 4/3;
        overflow: hidden
    }

        .tcard .ph img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s
        }

    .tcard:hover .ph img {
        transform: scale(1.06)
    }

    .tcard .pin {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--orange);
        color: #fff;
        font-size: .68rem;
        font-weight: 700;
        letter-spacing: .6px;
        text-transform: uppercase;
        padding: 5px 10px;
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 5px
    }

        .tcard .pin svg {
            width: 12px;
            height: 12px
        }

    .tcard .b {
        padding: 15px 16px 18px
    }

    .tcard h3 {
        font-size: 1.05rem;
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: -.3px;
        margin-bottom: 9px;
        text-wrap: balance
    }

    .tcard .play {
        font-size: .82rem;
        font-weight: 700;
        color: var(--orange-d);
        display: inline-flex;
        align-items: center;
        gap: 6px
    }

        .tcard .play svg {
            width: 14px;
            height: 14px
        }

/* feed (Şu an okunanlar) — richer slider cards */
.fcard {
    flex: 0 0 348px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s,box-shadow .2s
}

    .fcard:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg)
    }

    .fcard .ph {
        position: relative;
        aspect-ratio: 16/10;
        overflow: hidden
    }

        .fcard .ph img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s
        }

    .fcard:hover .ph img {
        transform: scale(1.05)
    }

    .fcard .lbl {
        position: absolute;
        top: 13px;
        left: 13px;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .5px;
        text-transform: uppercase;
        color: #fff;
        padding: 5px 11px;
        border-radius: 0
    }

    .fcard .rd {
        position: absolute;
        bottom: 13px;
        right: 13px;
        background: rgba(15,24,21,.78);
        color: #fff;
        font-size: .72rem;
        font-weight: 600;
        padding: 5px 10px;
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 5px
    }

        .fcard .rd svg {
            width: 12px;
            height: 12px
        }

.l-nost {
    background: var(--ember)
}

.l-elek {
    background: var(--teal)
}

.l-ilk {
    background: var(--amber-d)
}

.l-kult {
    background: var(--pink)
}

.l-gar {
    background: var(--ink)
}

.l-test {
    background: var(--orange)
}

.fcard .b {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.fcard h3 {
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -.3px;
    margin-bottom: 8px;
    text-wrap: balance
}

.fcard p {
    font-size: .86rem;
    color: var(--muted);
    margin-bottom: 15px;
    flex: 1
}

.fcard .foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 13px;
    border-top: 1px solid var(--line)
}

.fcard .av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--amber),var(--ember));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .78rem;
    flex-shrink: 0
}

.fcard .who {
    font-size: .78rem;
    line-height: 1.2
}

    .fcard .who b {
        font-weight: 600;
        color: var(--text)
    }

    .fcard .who span {
        color: var(--muted)
    }

.fcard .react {
    margin-left: auto;
    display: flex;
    gap: 12px;
    font-size: .76rem;
    color: var(--muted)
}

    .fcard .react span {
        display: inline-flex;
        align-items: center;
        gap: 4px
    }

    .fcard .react svg {
        width: 14px;
        height: 14px
    }
/* feed as grid (side by side + stacked) */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

    .feed-grid .fcard {
        flex: none
    }
/* Onedio-style horizontal list cards */
.list-feed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.litem {
    display: grid;
    grid-template-columns: 210px 1fr;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    transition: transform .2s,box-shadow .2s
}

    .litem:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg)
    }

    .litem .ph {
        position: relative;
        overflow: hidden;
        min-height: 172px
    }

        .litem .ph img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s
        }

    .litem:hover .ph img {
        transform: scale(1.06)
    }

    .litem .lbl {
        position: absolute;
        top: 11px;
        left: 11px;
        font-size: .65rem;
        font-weight: 700;
        letter-spacing: .5px;
        text-transform: uppercase;
        color: #fff;
        padding: 5px 10px;
        border-radius: 0
    }

    .litem .b {
        padding: 16px 18px;
        display: flex;
        flex-direction: column;
        min-width: 0
    }

    .litem .fmt {
        align-self: flex-start;
        font-size: .65rem;
        font-weight: 700;
        letter-spacing: .5px;
        text-transform: uppercase;
        color: var(--orange-d);
        background: rgba(242,103,12,.1);
        padding: 3px 9px;
        border-radius: 0;
        margin-bottom: 9px
    }

    .litem h3 {
        font-size: 1.14rem;
        font-weight: 700;
        line-height: 1.26;
        letter-spacing: -.3px;
        margin-bottom: 7px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .litem p {
        font-size: .85rem;
        color: var(--muted);
        margin-bottom: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .litem .lmeta {
        margin-top: auto;
        display: flex;
        gap: 15px;
        font-size: .76rem;
        color: var(--muted)
    }

        .litem .lmeta span {
            display: inline-flex;
            align-items: center;
            gap: 5px
        }

        .litem .lmeta svg {
            width: 14px;
            height: 14px
        }

/* ---------- ARAÇ MAÇI ---------- */
.match {
    background: linear-gradient(135deg,#FFF4DF 0%,#FDE9D6 100%);
    border: 1px solid rgba(242,163,40,.3);
    border-radius: 0;
    padding: 42px;
    position: relative;
    overflow: hidden
}

    .match::after {
        content: "VS";
        position: absolute;
        font-family: var(--f-display);
        font-weight: 800;
        font-size: 18rem;
        color: rgba(242,163,40,.08);
        top: -40px;
        right: -10px;
        line-height: 1;
        pointer-events: none
    }

.match-head {
    text-align: center;
    position: relative;
    margin-bottom: 26px
}

    .match-head .kick {
        color: var(--ember);
        font-size: .74rem;
        font-weight: 700;
        letter-spacing: 1.6px;
        text-transform: uppercase
    }

    .match-head h2 {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: clamp(1.5rem,3.4vw,2.3rem);
        letter-spacing: -.7px;
        margin: 8px 0 4px;
        color: var(--ink)
    }

    .match-head p {
        color: var(--muted);
        font-size: .95rem
    }

.versus {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: stretch;
    max-width: 780px;
    margin: 0 auto;
    position: relative
}

.side {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 0;
    padding: 0 0 20px;
    text-align: center;
    cursor: pointer;
    transition: transform .18s,border-color .2s;
    overflow: hidden;
    box-shadow: var(--shadow)
}

    .side:hover {
        transform: translateY(-4px);
        border-color: var(--amber)
    }

    .side .face {
        height: 150px;
        position: relative;
        overflow: hidden
    }

        .side .face img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .side .face .nm {
            position: absolute;
            bottom: 10px;
            left: 14px;
            font-family: var(--f-display);
            font-weight: 800;
            color: #fff;
            font-size: 1.5rem;
            letter-spacing: -.5px;
            text-shadow: 0 2px 10px rgba(0,0,0,.5)
        }

    .side .yr {
        font-size: .78rem;
        color: var(--muted);
        margin: 14px 0
    }

.vote-btn {
    margin: 0 18px;
    width: calc(100% - 36px);
    background: var(--ink);
    border: none;
    color: #fff;
    font-family: var(--f-body);
    font-weight: 700;
    font-size: .9rem;
    padding: 12px;
    border-radius: 0;
    cursor: pointer;
    transition: background .2s
}

    .vote-btn:hover {
        background: var(--amber);
        color: var(--ink)
    }

.bar {
    height: 0;
    opacity: 0;
    background: rgba(26,38,34,.1);
    border-radius: 0;
    margin: 14px 18px 0;
    overflow: hidden;
    transition: opacity .3s
}

    .bar i {
        display: block;
        height: 100%;
        width: 0;
        border-radius: 0;
        transition: width .9s cubic-bezier(.2,.8,.2,1)
    }

.pct {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.4rem;
    margin-top: 10px;
    opacity: 0;
    color: var(--ink);
    transition: opacity .3s
}

.voted .bar {
    opacity: 1;
    height: 9px
}

.voted .pct {
    opacity: 1
}

.voted .vote-btn {
    display: none
}

.voted .side {
    cursor: default
}

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

    .vs span {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: 1.2rem;
        color: #fff;
        background: var(--ember);
        width: 54px;
        height: 54px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px -8px var(--ember)
    }

.match-foot {
    text-align: center;
    margin-top: 22px;
    font-size: .85rem;
    color: var(--muted);
    position: relative
}

    .match-foot b {
        color: var(--ember)
    }

/* ---------- NOSTALJI GALLERY ---------- */
.nost-lead {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 28px
}

    .nost-lead h2 {
        font-family: var(--f-serif);
        font-style: italic;
        font-weight: 500;
        font-size: clamp(1.7rem,3.6vw,2.5rem);
        line-height: 1.12;
        letter-spacing: -.5px;
        color: var(--ink)
    }

    .nost-lead p {
        color: var(--muted);
        margin-top: 10px
    }

.gallery {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

.glx {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 0;
    overflow: hidden;
    display: block
}

    .glx img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s
    }

    .glx:hover img {
        transform: scale(1.07)
    }

    .glx::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,rgba(0,0,0,.7),transparent 55%)
    }

    .glx .nm {
        position: absolute;
        bottom: 14px;
        left: 15px;
        z-index: 2;
        font-family: var(--f-display);
        font-weight: 800;
        color: #fff;
        font-size: 1.15rem;
        letter-spacing: -.3px
    }

/* ---------- NEWSLETTER ---------- */
.news {
    background: var(--ink);
    border-radius: 0;
    padding: 46px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff
}

    .news::before {
        content: "";
        position: absolute;
        right: -50px;
        bottom: -80px;
        width: 260px;
        height: 260px;
        border: 30px solid rgba(242,163,40,.16);
        border-radius: 50%
    }

    .news h2 {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: clamp(1.4rem,3vw,2rem);
        letter-spacing: -.6px;
        line-height: 1.05;
        margin-bottom: 10px;
        position: relative
    }

        .news h2 em {
            font-family: var(--f-serif);
            font-style: italic;
            font-weight: 500;
            color: var(--amber)
        }

    .news p {
        color: rgba(255,255,255,.72);
        font-size: .95rem;
        position: relative
    }

.news-form {
    display: flex;
    gap: 10px;
    position: relative
}

    .news-form input {
        flex: 1;
        border: none;
        border-radius: 0;
        padding: 14px 16px;
        font-family: var(--f-body);
        font-size: .95rem
    }

    .news-form button {
        background: var(--amber);
        color: var(--ink);
        border: none;
        border-radius: 0;
        padding: 14px 22px;
        font-family: var(--f-body);
        font-weight: 700;
        cursor: pointer;
        transition: transform .18s
    }

        .news-form button:hover {
            transform: translateY(-2px)
        }

/* ---------- AD SLOTS ---------- */
.ad {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFEBE2;
    border: 1px dashed rgba(26,38,34,.22);
    color: var(--muted)
}

    .ad .ad-tag {
        position: absolute;
        top: 6px;
        left: 8px;
        font-size: .58rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--muted);
        opacity: .8
    }

    .ad .ad-ph {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        text-align: center
    }

        .ad .ad-ph b {
            font-weight: 700;
            font-size: .9rem;
            color: #9a948a
        }

        .ad .ad-ph span {
            font-size: .72rem
        }
/* horizontal banners between sections */
.ad-banner {
    max-width: var(--maxw);
    margin: 30px auto;
    padding: 0 22px
}

    .ad-banner .ad {
        width: 100%;
        height: 130px
    }
/* fixed side skyscrapers (wide screens only) */
.ad-rail {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: min(600px,78vh);
    z-index: 40;
    display: none
}

    .ad-rail.left {
        left: 24px
    }

    .ad-rail.right {
        right: 24px
    }

    .ad-rail .ad {
        width: 100%;
        height: 100%
    }

@media(min-width:1600px) {
    .ad-rail {
        display: block
    }
}

/* ---------- CATEGORY MODULES ---------- */
.cat-cols {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 26px;
    align-items: stretch
}

.litem.cat-lead {
    position: relative;
    display: block;
    min-height: 320px;
    overflow: hidden
}

    .litem.cat-lead .ph {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0
    }

        .litem.cat-lead .ph::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,rgba(15,24,21,.93),rgba(15,24,21,.42) 48%,transparent 82%)
        }

    .litem.cat-lead:hover .ph img {
        transform: scale(1.05)
    }

    .litem.cat-lead .b {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 22px 22px 20px;
        color: #fff
    }

    .litem.cat-lead h3 {
        color: #fff
    }

    .litem.cat-lead p {
        color: rgba(255,255,255,.86)
    }

    .litem.cat-lead .fmt {
        background: var(--orange);
        color: #fff
    }

    .litem.cat-lead .lmeta {
        color: rgba(255,255,255,.78)
    }
/* square 3-up card grid (image top, text below) */
.sq-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.sqcard {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden
}

    .sqcard .ph {
        position: relative;
        height: 190px;
        overflow: hidden
    }

        .sqcard .ph img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s
        }

    .sqcard:hover .ph img {
        transform: scale(1.06)
    }

    .sqcard .lbl {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 2
    }

    .sqcard .b {
        padding: 14px 15px 16px
    }

    .sqcard .fmt {
        display: inline-block;
        background: var(--orange);
        color: #fff;
        font-size: .66rem;
        font-weight: 700;
        letter-spacing: .4px;
        text-transform: uppercase;
        padding: 4px 9px;
        margin-bottom: 9px
    }

    .sqcard h3 {
        color: var(--text);
        font-family: var(--f-display);
        font-weight: 800;
        font-size: 1.02rem;
        letter-spacing: -.3px;
        line-height: 1.2
    }

    .sqcard.ad-card {
        padding: 0;
        border: none;
        background: transparent;
        display: flex
    }

        .sqcard.ad-card .ad {
            width: 100%;
            height: 100%;
            min-height: 170px
        }

@media(max-width:760px) {
    .sq-grid {
        grid-template-columns: 1fr 1fr
    }
}

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

.cat-list {
    display: flex;
    flex-direction: column
}

.mini {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 13px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--line)
}

    .mini:first-child {
        padding-top: 0
    }

    .mini:last-child {
        border-bottom: none;
        padding-bottom: 0
    }

    .mini .mt {
        width: 90px;
        height: 64px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0
    }

        .mini .mt img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .35s
        }

    .mini:hover .mt img {
        transform: scale(1.08)
    }

    .mini .mc {
        font-size: .64rem;
        font-weight: 700;
        letter-spacing: .5px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 3px
    }

    .mini h4 {
        font-size: .94rem;
        font-weight: 600;
        line-height: 1.28;
        letter-spacing: -.2px;
        transition: color .2s
    }

    .mini:hover h4 {
        color: var(--orange-d)
    }
@media(max-width:980px) {
    .cat-cols {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .hgrid {
        grid-template-columns: 1fr
    }

    .gallery {
        grid-template-columns: repeat(2,1fr)
    }

    .news {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .feed-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .list-feed {
        grid-template-columns: 1fr
    }
}

@media(max-width:680px) {
    .menu, .nav-right .pill span {
        display: none
    }

    .burger {
        display: flex
    }

    .menu.open {
        display: grid;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px 22px;
        gap: 2px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow)
    }

        .menu.open a {
            padding: 11px 0;
            border-bottom: 1px solid var(--line)
        }

    .gallery {
        grid-template-columns: 1fr 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .feed-grid {
        grid-template-columns: 1fr
    }

    .litem {
        grid-template-columns: 1fr
    }

        .litem .ph {
            min-height: 0;
            aspect-ratio: 16/9
        }

    .versus {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .vs {
        transform: rotate(90deg);
        margin: -4px 0
    }

    .news, .match {
        padding: 28px 20px
    }

    .ad-banner {
        margin: 22px auto
    }

        .ad-banner .ad {
            height: 90px
        }

    .news-form {
        flex-direction: column
    }

    .slide .copy {
        padding: 24px
    }

    .fcard {
        flex: 0 0 290px
    }

    .sec {
        padding: 34px 0
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}
/* full-screen mobile menu */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s,transform .25s,visibility .25s;
    overflow-y: auto
}

    .mobile-nav.open {
        opacity: 1;
        visibility: visible;
        transform: none
    }

.mnav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line)
}

    .mnav-top .brand {
        display: flex;
        align-items: center;
        gap: 10px
    }

    .mnav-top .mark {
        width: 34px;
        height: 34px
    }

    .mnav-top .name {
        font-family: var(--f-display);
        font-weight: 800;
        font-size: 1.15rem;
        letter-spacing: -.5px;
        color: var(--ink)
    }

    .mnav-top .dot {
        color: var(--amber)
    }

.mnav-close {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

    .mnav-close svg {
        width: 22px;
        height: 22px
    }

.mnav-list {
    display: flex;
    flex-direction: column;
    padding: 8px 16px
}

    .mnav-list a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 13px 4px;
        font-size: 1.02rem;
        font-weight: 600;
        letter-spacing: -.2px;
        color: var(--ink);
        border-bottom: 1px solid var(--line)
    }

        .mnav-list a:active {
            opacity: .6
        }

.mnav-ic {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

    .mnav-ic svg {
        width: 21px;
        height: 21px
    }

.mnav-cta {
    padding: 20px 20px;
    margin-top: auto
}

    .mnav-cta .pill {
        width: 100%;
        justify-content: center;
        font-size: .95rem;
        padding: 14px
    }
/* search overlay */
.search-ov {
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(15,24,21,.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s,visibility .2s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 13vh 22px 0
}

    .search-ov.open {
        opacity: 1;
        visibility: visible
    }

.search-box {
    width: 100%;
    max-width: 640px;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    box-shadow: var(--shadow-lg)
}

    .search-box svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        color: var(--muted)
    }

    .search-box input {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-family: var(--f-body);
        font-size: 1.05rem;
        color: var(--text)
    }

.search-close {
    border: none;
    background: none;
    cursor: pointer;
    color: var(--muted);
    display: flex;
    padding: 2px
}

    .search-close svg {
        width: 20px;
        height: 20px
    }
/* occasion / special-day VISUAL banner */
.occ-banner-wrap {
    max-width: var(--maxw);
    margin: 18px auto 0;
    padding: 0 22px;
    position: relative
}

.occ-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 75px
}

    .occ-banner > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center
    }

.occ-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg,rgba(35,0,0,.58),rgba(35,0,0,.18) 42%,transparent 68%)
}

.occ-content {
    position: relative;
    z-index: 2;
    max-width: 440px;
    padding: 9px 28px;
    color: #fff;
    text-align: left
}

.occ-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #C81E1E;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 5px
}

.occ-h {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(1.02rem,2.2vw,1.4rem);
    letter-spacing: -.4px;
    line-height: 1.05;
    margin-bottom: 0;
    text-shadow: 0 2px 14px rgba(0,0,0,.55)
}

.occ-sub {
    display: none
}

.occ-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: var(--ink);
    font-weight: 700;
    font-size: .86rem;
    padding: 10px 18px;
    transition: transform .18s
}

.occ-banner:hover .occ-btn {
    transform: translateX(3px)
}

.occ-btn svg {
    width: 14px;
    height: 14px
}

.occ-close {
    position: absolute;
    top: 10px;
    right: 32px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0,0,0,.42);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s
}

    .occ-close:hover {
        background: rgba(0,0,0,.72)
    }

    .occ-close svg {
        width: 16px;
        height: 16px
    }

#occasion.hide {
    display: none
}

@media(max-width:680px) {
    .occ-banner {
        min-height: 60px
    }

    .occ-content {
        padding: 8px 16px;
        max-width: 80%
    }

    .occ-sub {
        display: none
    }
}
/* ===== TESTLER HUB CTA ===== */
.qhub {
    position: relative;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

    .qhub::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 88% 18%, rgba(242,163,40,.18), transparent 42%), radial-gradient(circle at 12% 88%, rgba(224,83,58,.16), transparent 45%)
    }

.qhub-in {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
    padding: 44px 44px
}

/* sol kolon — metin */
.qhub-kick {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: var(--ink);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 6px 12px;
    margin-bottom: 16px
}

    .qhub-kick svg {
        width: 14px;
        height: 14px
    }

.qhub h2 {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(1.7rem,3.4vw,2.6rem);
    letter-spacing: -1.1px;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 14px;
    text-wrap: balance
}

    .qhub h2 em {
        font-style: normal;
        color: var(--amber)
    }

.qhub p {
    color: rgba(255,255,255,.72);
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 52ch
}

.qhub-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amber);
    color: var(--ink);
    font-weight: 800;
    font-size: 1rem;
    padding: 15px 26px;
    transition: transform .18s,background .2s,color .2s
}

    .qhub-cta:hover {
        transform: translateY(-2px);
        background: #fff
    }

    .qhub-cta svg {
        width: 18px;
        height: 18px
    }

.qhub-stats {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.14)
}

.qhub-stat b {
    display: block;
    font-family: var(--f-display);
    font-weight: 900;
    font-size: 1.45rem;
    color: var(--amber);
    line-height: 1.1
}

.qhub-stat span {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    font-weight: 600;
    letter-spacing: .3px
}

/* sağ kolon — mini kart yığını */
.qhub-deck {
    position: relative;
    height: 280px
}

.qhub-card {
    position: absolute;
    width: 210px;
    background: var(--white);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform .3s
}

    .qhub-card img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        display: block
    }

    .qhub-card .cb {
        padding: 11px 12px
    }

    .qhub-card .ct {
        display: inline-block;
        font-size: .62rem;
        font-weight: 800;
        letter-spacing: .7px;
        text-transform: uppercase;
        color: #fff;
        padding: 3px 7px;
        margin-bottom: 6px
    }

    .qhub-card h4 {
        font-family: var(--f-display);
        font-size: .86rem;
        font-weight: 800;
        color: var(--ink);
        line-height: 1.25;
        letter-spacing: -.2px
    }

    .qhub-card.c1 {
        left: 2%;
        top: 18px;
        transform: rotate(-6deg);
        z-index: 1
    }

    .qhub-card.c2 {
        left: 30%;
        top: 0;
        transform: rotate(2deg);
        z-index: 3
    }

    .qhub-card.c3 {
        left: 58%;
        top: 32px;
        transform: rotate(7deg);
        z-index: 2
    }

.qhub:hover .qhub-card.c1 {
    transform: rotate(-8deg) translateY(-6px)
}

.qhub:hover .qhub-card.c2 {
    transform: rotate(1deg) translateY(-10px)
}

.qhub:hover .qhub-card.c3 {
    transform: rotate(9deg) translateY(-6px)
}

@media(max-width:900px) {
    .qhub-in {
        grid-template-columns: 1fr;
        padding: 34px 26px;
        gap: 28px
    }

    .qhub-deck {
        height: 230px;
        order: -1
    }

    .qhub-card {
        width: 170px
    }
}

@media(max-width:560px) {
    .qhub-deck {
        height: 200px
    }

    .qhub-card {
        width: 140px
    }

        .qhub-card h4 {
            font-size: .78rem
        }

    .qhub-stats {
        gap: 18px
    }
}