/* articles/static/css/author_detail.css */

.author-detail-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.author-profile-header {
    margin-bottom: 40px;
}

.profile-flex {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.profile-img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #eee;
}

.role-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1.2px;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.profile-text h1 {
    font-size: 2rem;
    margin: 0 0 15px 0;
    color: #000;
}

.author-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.section-divider {
    border: 0;
    border-top: 4px solid #000;
    margin: 40px 0;
}


/* Article Cards List */
.feed-card {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.card-image img {
    border-radius: 4px;
}

.card-date {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.card-body h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
}

.card-body h3 a {
    color: #000;
    text-decoration: none;
}

.card-body h3 a:hover {
    color: #c00;
    /* Editorial red highlight */
}

@media (max-width: 600px) {
    .profile-flex {
        flex-direction: column;
        text-align: center;
    }

    .profile-img {
        margin: 0 auto;
    }

    .feed-card {
        flex-direction: column;
    }
}

/* New Styles for contact, social and interests */
.author-contact-social {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.95rem;
    color: #555;
}

.contact-link {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #000;
}

.contact-item i,
.contact-link i {
    width: 20px;
    color: #888;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.author-interests {
    margin-bottom: 40px;
}

.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-tag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.topic-tag:hover {
    opacity: 0.8;
}

.author-tags {
    margin: 24px 0;
}

.author-tags .section-title {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}