.author-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.author-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.author-image:hover {
    transform: scale(1.05);
}

.card {
    min-height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.author-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.author-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.author-image:hover {
    transform: scale(1.05);
}

.card {
    min-height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}


/* Responsive mobile */
@media (max-width: 768px) {
    .author-image-wrapper {
        height: 200px;
        /* un peu plus haut pour mobile */
    }

    .card-title {
        font-size: 0.85rem;
    }

    .card-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .author-image-wrapper {
        height: auto;
        /* plus haut pour voir plus d'image */
    }

    .card-title {
        font-size: 0.8rem;
    }

    .card-text {
        font-size: 0.7rem;
    }
}