.videolarWrap {
    background-color: var(--darkBg);
    min-height: 100vh;
    padding: 120px 0 80px;
}

/* ── Başlık satırı ── */
.videolarHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.videolarBaslik {
    font: normal normal 700 28px/1 Jost;
    color: var(--white);
    letter-spacing: 2px;
    margin: 0;
}

.videolarYoutubeBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e8360a;
    color: #fff;
    font: normal normal 700 13px/1 Jost;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 250ms;
}

.videolarYoutubeBtn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.videolarYoutubeBtn:hover {
    background-color: #c42d08;
    color: #fff;
    text-decoration: none;
}

/* ── Grid ── */
.videolarGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 28px;
}

/* ── Kart ── */
.videolarKart {
    background-color: var(--darkBg2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 300ms, box-shadow 300ms;
}

.videolarKart:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

/* ── Thumbnail / iframe ── */
.videolarThumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
}

.videolarThumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Bilgi alanı ── */
.videolarBilgi {
    padding: 18px 20px 16px;
}

.videolarVideoBaslik {
    font: normal normal 600 15px/22px Jost;
    color: var(--white);
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videolarVideoAlt {
    font: normal normal 400 13px/20px Jost;
    color: rgba(255,255,255,0.5);
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Aksiyon ikonları ── */
.videolarAksiyonlar {
    display: flex;
    gap: 16px;
}

.videolarAksiyon {
    color: rgba(255,255,255,0.45);
    font-size: 18px;
    text-decoration: none;
    transition: color 250ms;
    line-height: 1;
}

.videolarAksiyon:hover {
    color: var(--white);
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .videolarWrap {
        padding: 100px 0 60px;
    }
    .videolarGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .videolarBaslik {
        font-size: 20px;
    }
}
