/* Module Auteur - Styles */

.author-box-wrapper {
    margin: 30px auto;
    max-width: 1200px;
}

.author-box-title {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 400;
    color: #172130;
    text-transform: uppercase;
}

.author-box-module {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0077b5;
}

.author-box-avatar {
    flex-shrink: 0;
}

.author-avatar-round {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-box-content {
    flex: 1;
}

.author-box-name {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 700;
    color: #172130;
}

.author-box-short-bio {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #0077b5;
    font-style: italic;
}

.author-box-description {
    margin: 0 0 15px 0;
    font-size: 12px;
    line-height: 1.6;
    color: #555;
}

.author-box-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.author-box-articles {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #172130;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.author-box-articles:hover {
    background-color: #e7511e;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.author-box-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #0077b5;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.author-box-linkedin:hover {
    background-color: #005582;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.author-box-linkedin svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .author-box-title {
        font-size: 16px;
        text-align: center;
    }

    .author-box-module {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .author-avatar-round {
        width: 80px;
        height: 80px;
    }

    .author-box-name {
        font-size: 20px;
    }

    .author-box-description {
        font-size: 14px;
    }

    .author-box-buttons {
        justify-content: center;
    }

    .author-box-articles,
    .author-box-linkedin {
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .author-box-title {
        font-size: 15px;
    }

    .author-box-module {
        padding: 15px;
        gap: 15px;
    }

    .author-avatar-round {
        width: 70px;
        height: 70px;
    }

    .author-box-name {
        font-size: 18px;
    }
}
