/* Frontend Styles for Author Bylines */

/* Author Byline (Top) */
.author-byline {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 4px;
}

.author-byline .label {
    margin: 0 0 4px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
    font-weight: 600;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #1e293b;
    font-weight: 600;
}

.author-details p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
}

.author-link {
    font-size: 13px;
    color: #3b82f6;
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
    font-weight: 500;
}

.author-link:hover {
    text-decoration: underline;
}

/* For Multiple Authors */
.author-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.author-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.author-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Full Author Bio (Bottom) */
.author-bio-full {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 32px;
    margin: 60px 0 40px 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.author-bio-full h3 {
    margin-top: 0;
    margin-bottom: 24px;
    color: #1e293b;
    font-size: 20px;
    font-weight: 700;
}

.author-bio-content {
    display: flex;
    gap: 24px;
    align-items: start;
}

.author-bio-content img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio-text h4 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
}

.author-bio-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 12px 0;
}

.author-bio-text p:last-child {
    margin-bottom: 0;
}

.author-bio-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
}

.author-bio-section-border {
    border-bottom: 1px solid #e2e8f0;
}

.author-bio-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .author-bio-content {
        flex-direction: column;
    }
    
    .author-bio-content img {
        width: 100px;
        height: 100px;
    }
    
    .author-info {
        flex-direction: column;
        align-items: flex-start;
    }
}
