/* Header de la taxonomie */
.taxonomy-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.taxonomy-image {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 999px;
}

.taxonomy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.taxonomy-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.taxonomy-title {
    font-size: 2rem;
    font-weight: bold;
}

.taxonomy-description {
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Contenu des articles */
.taxonomy-content {
    margin-top: 20px;
}

.galerie-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.galerie-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 300px;
}

.galerie-link {
    text-decoration: none;
    width: 100%;
    height: 100%;
    transition: all 350ms ease;
}


.galerie-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 350ms ease;
}

.galerie-item:hover img {
    transform: scale(1.2);
}