.author-profile-card {
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.author-profile-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-profile-image {
    flex-shrink: 0;
}

.author-profile-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.author-profile-info {
    flex-grow: 1;
}

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

.author-profile-name {
    margin: 0 0 5px 0;
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
}

.author-profile-title {
    margin: 0;
    font-size: 1em;
    color: #666;
    font-style: italic;
}

.author-profile-bio {
    margin-bottom: 15px;
}

.author-profile-bio p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.author-profile-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
}

.author-contact-label {
    font-weight: 600;
    color: #333;
    min-width: 70px;
}

.author-contact-item a {
    color: #dc002e;
    text-decoration: none;
}

.author-contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .author-profile-content {
        flex-direction: column;
        text-align: center;
    }
    
    .author-profile-image {
        align-self: center;
    }
    
    .author-contact-item {
        justify-content: center;
    }
}