/* Yazarlar Page specific CSS */

.author-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-soft);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid #f3f4f6;
    box-shadow: var(--shadow-soft);
}

.author-social a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.author-social a:hover {
    color: var(--pink-accent);
}
