/* Widget kapsayıcısı */
.oc-widget {
    margin: 0px 0;
}

/* Her yazı kutusu */
.oc-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

/* Küçük görsel */
.oc-thumb img {
    width: 80px;
    height: auto;
    margin-right: 10px;
    border-radius: 3px;
    object-fit: cover;
}

/* Yazı içeriği */
.oc-content {
    flex: 1;
}

/* Başlık stili */
.oc-title {
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 0; /* boşluk kaldırıldı */
    line-height: 1.3;
}

/* Başlık hover */
.oc-title:hover {
    text-decoration: underline;
}

/* Yazar bilgisi */
.oc-author {
    font-size: 0.85em;
    font-weight: bold;
}


.widget-title::after {
    display: none !important;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .oc-post {
        margin-bottom: 12px;
    }
    
    .oc-thumb img {
        width: 70px;
        margin-right: 8px;
    }
    
    .oc-title {
        font-size: 14px;
        line-height: 1.2;
    }
    
    .oc-author {
        font-size: 0.8em;
    }
}

/* Mobil (480px ve altı) */
@media (max-width: 480px) {
    .oc-post {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 15px;
        padding: 10px;
        border: 1px solid #eee;
        border-radius: 5px;
    }
    
    .oc-thumb {
        margin-bottom: 8px;
    }
    
    .oc-thumb img {
        width: 60px;
        height: 60px;
        margin-right: 0;
        border-radius: 50%;
    }
    
    .oc-content {
        width: 100%;
    }
    
    .oc-title {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 3px;
    }
    
    .oc-author {
        font-size: 0.75em;
    }
}

/* Çok küçük mobil (320px ve altı) */
@media (max-width: 320px) {
    .oc-post {
        padding: 8px;
        margin-bottom: 12px;
    }
    
    .oc-thumb img {
        width: 50px;
        height: 50px;
    }
    
    .oc-title {
        font-size: 12px;
    }
    
    .oc-author {
        font-size: 0.7em;
    }
}
