/* Genel kart alanı */
.tb-kose-yazarlari-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Kart kutusu */
.tb-yazar-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease;
}
.tb-yazar-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* İç düzen: avatar + bilgi yan yana */
.tb-yazar-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Avatar yuvarlak */
.tb-yazar-avatar img.avatar-circle {
    border-radius: 50%;
    width: 72px;
    height: 86px;
    object-fit: cover;
}

/* Sağ taraf (isim + yazı) */
.tb-yazar-info {
    flex: 1;
}

/* Yazar adı */
.tb-yazar-name {
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #000;
    margin: 0 0 5px;
}

/* Son yazı (paragraf) */
.tb-yazar-lastpost {
    font-size: 14px;
    font-family: Verdana, sans-serif;
    color: #1c1c1c;
    margin: 0;
}

/* Son yazı linki */
.tb-yazar-lastpost a {
    color: inherit;
    text-decoration: none;
}
.tb-yazar-lastpost a:hover {
    text-decoration: underline;
}
