/* ============================================================
   YBS Son Yazılar Widget — Sekme Sistemi
   ============================================================ */

.ybs-son-yazilar-wrapper {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
    font-family: 'Poppins', sans-serif;
}

/* ── Başlık ─────────────────────────────────────────────── */
.ybs-sy-header {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 3px solid #19c2c6;
}

/* ── Sekmeler ───────────────────────────────────────────── */
.ybs-sy-tabs {
    display: flex;
    border-bottom: 2px solid #2d2d2d;
}

.ybs-sy-tab {
    flex: 1;
    padding: 9px 6px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: #999;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: color .25s, border-color .25s, background .25s;
    white-space: nowrap;
}

.ybs-sy-tab:hover {
    color: #19c2c6;
    background: rgba(25,194,198,.06);
}

.ybs-sy-tab--active {
    color: #19c2c6;
    border-bottom-color: #19c2c6;
    background: rgba(25,194,198,.08);
}

/* ── Panel ──────────────────────────────────────────────── */
.ybs-sy-panel {
    display: none;
    padding: 0;
}

.ybs-sy-panel--active {
    display: block;
}

/* ── Liste ──────────────────────────────────────────────── */
.ybs-sy-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ybs-sy-item {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #2d2d2d;
    transition: background .2s;
    overflow: hidden;
    min-height: 72px;
}

.ybs-sy-item:last-child {
    border-bottom: none;
}

.ybs-sy-item:hover {
    background: #222;
}

/* Küçük resim — tam satır yüksekliğine uzanır */
.ybs-sy-thumb {
    flex-shrink: 0;
    width: 145px;
    /* yükseklik: satırı doldur */
    align-self: stretch;
    overflow: hidden;
    display: block;
    position: relative;
}

.ybs-sy-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}

.ybs-sy-item:hover .ybs-sy-thumb img {
    transform: scale(1.08);
}

/* Meta */
.ybs-sy-meta {
    flex: 1;
    min-width: 0;
    padding: 9px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.ybs-sy-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #e8e8e8;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: color .2s;
}

.ybs-sy-title:hover {
    color: #19c2c6;
}

.ybs-sy-info {
    font-size: 10px;
    color: #666;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Yazı bulunamadı */
.ybs-sy-empty {
    padding: 20px;
    color: #888;
    font-size: 13px;
    text-align: center;
    margin: 0;
}

/* ── Responsive — Tablet ────────────────────────────────── */
@media (max-width: 768px) {
    .ybs-sy-thumb {
        width: 100px;
    }

    .ybs-sy-title {
        font-size: 12px;
    }
}

/* ── Responsive — Mobil ─────────────────────────────────── */
@media (max-width: 480px) {
    .ybs-sy-tab {
        font-size: 10px;
        padding: 8px 4px;
    }

    .ybs-sy-item {
        min-height: 60px;
    }

    .ybs-sy-thumb {
        width: 84px;
    }

    .ybs-sy-meta {
        padding: 7px 10px;
    }

    .ybs-sy-title {
        font-size: 11.5px;
    }
}

/* ── Erişilebilirlik ─────────────────────────────────────── */
.ybs-sy-tab:focus-visible {
    outline: 2px solid #19c2c6;
    outline-offset: -2px;
}
