
/* ======================================================
   WRAPPER
====================================================== */

.scb-wrapper{
    width:100%;
    max-width:1600px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
    padding:70px 0;
}

/* ======================================================
   CARD
====================================================== */

.scb-card{
    position:relative;

    aspect-ratio:21 / 9;
    width:100%;

    overflow:hidden;

    background:#000;

    /* 🔥 GERÇEK BEYAZ BORDER (RGBA YOK) */
    border:6px solid #ffffff;

    /* border net görünsün diye hafif iç glow */
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.15);

    cursor:pointer;
}

/* hover: hiçbir şey değişmez */
.scb-card:hover{
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.15);
}

/* ======================================================
   IMAGE
====================================================== */

.scb-img{
    position:absolute;
    inset:0;
}

.scb-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    filter:contrast(1.15) saturate(1.25) brightness(1.05);

    transform:scale(1.04);

    transition:transform 1.6s ease, filter 1.6s ease;
}

.scb-card:hover .scb-img img{
    transform:scale(1.10);
}

/* ======================================================
   OVERLAY (NO DARK HOVER EFFECT)
====================================================== */

.scb-overlay{
    position:absolute;
    inset:0;

    z-index:1;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.18),
            rgba(0,0,0,0.06),
            rgba(0,0,0,0)
        );
}

/* ======================================================
   TEXT
====================================================== */

.scb-text{
    position:absolute;

    left:40px;
    right:40px;
    bottom:40px;

    z-index:2;

    color:#fff;

    transform:translateY(6px);

    transition:transform 0.4s ease;
}

.scb-card:hover .scb-text{
    transform:translateY(0);
}

.scb-text h3{
    margin:0;
    font-size:36px;
    font-weight:700;

    text-shadow:0 4px 18px rgba(0,0,0,0.35);
}

.scb-text p{
    margin-top:12px;
    font-size:15px;
    line-height:1.6;
    opacity:0.92;
    max-width:760px;
}

/* ======================================================
   MOBILE
====================================================== */

@media(max-width:600px){
    .scb-card{
        aspect-ratio:4 / 3;
    }

    .scb-text{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .scb-text h3{
        font-size:20px;
    }

    .scb-text p{
        font-size:13px;
    }
}