.author-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.author-modal-overlay.active {
    opacity: 1;
}

.author-modal {
    background: white;
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.2s ease-in-out;
    position: relative;
}

.author-modal.active {
    transform: translateY(0);
}

.author-modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.author-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-right: 24px;
    background-color: #f0f0f0;
    background-image: url('https://theandreibogdan.github.io/static-blog-generator-app/images/profilepic.jpg');
    background-size: cover;
    background-position: center;
    border: 3px solid #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-info h2 {
    margin: 0;
    font-size: 1.75rem;
    color: #333;
    font-weight: 600;
}

.author-info p {
    margin: 8px 0 0;
    color: #666;
    font-size: 1.1rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: #f5f5f5;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link i {
    margin-right: 12px;
    font-size: 1.4rem;
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background-color: #f0f0f0;
    transform: rotate(90deg);
}

.close-modal i {
    font-size: 1.4rem;
}