.post-authors-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-authors-section h3 {
    margin-bottom: 20px;
}

.post-authors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.post-author {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.author-image {
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-designation {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

.author-social-links {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #555;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.social-link.facebook:hover {
    background: #3b5998;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.instagram:hover {
    background: #e4405f;
    color: white;
}

/* Author profiles shortcode styles */
.author-profiles.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.author-profiles.list .author-profile {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.author-profiles.list .author-image {
    width: 120px;
    height: 120px;
}

.author-profile {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.author-profiles.grid .author-profile {
    text-align: center;
}

.author-profiles.grid .author-image {
    margin: 0 auto 15px;
}

@media (max-width: 768px) {
    .post-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-profiles.list .author-profile {
        flex-direction: column;
        text-align: center;
    }
}