.blog-scroll-wrapper {
    background: #fff;
    border-radius: 14px;
    position: relative;
    padding: 18px 10px 10px 10px;
}

/* Kaydırılabilir alan */
.blog-horizontal-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 4px 12px 4px;
}
.blog-horizontal-scroll::-webkit-scrollbar { display: none; }
.blog-horizontal-scroll { scrollbar-width: none; }

/* Kart — daha küçük */
.blog-card {
    min-width: 260px;
    max-width: 260px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: transform .15s ease, box-shadow .15s ease;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(0,0,0,.12);
}

/* Thumbnail — daha küçük */
.blog-thumb {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    background: #f9f7f7;
    padding: 4px;
}

/* İçerik — daha sıkı */
.blog-info { padding: 10px 12px 12px 12px; }
.blog-title {
    font-size: 1rem;
    color:#111;
    margin-bottom: 4px;
    line-height: 1.25;
}
.blog-info p {
    font-size: .82rem;
    line-height: 1.32;
}

/* Scroll okları */
.scroll-btn {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    border: none;
    background: #ffffffee;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all .2s ease;
}
.scroll-btn:hover {
    transform: translateY(-50%) scale(1.12);
}
.scroll-btn i {
    font-size: 22px;
    color: #000;
    font-weight: bold;
}
.scroll-left { left: 10px; }
.scroll-right { right: 10px; }

/* Mobilde buton gizle */
@media (max-width: 768px) {
    .scroll-btn { display: none !important; }
}
