/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 10 2025 | 16:00:15 */
/* Structure de base */

.single-artwork #left-area {
    float: left;
    width: 70%;
    padding-right: 5%;
}

.artwork-title{
	font-size: 26px !important;
	font-weight:700 !important;
}

/* Image principale */
.artwork-featured-image {
    margin-bottom: 30px;
}

.artwork-featured-image img {
    width: 100%;
    height: auto;
}

/* Informations techniques */
.artwork-technical {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 35px;
    border-left: 3px solid #000;
}

.artwork-technical h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 500;
}

.artwork-technical p {
    white-space: pre-line; /* Respecte les sauts de ligne */
    line-height: 1.6;
    margin: 0;
    color: #444;
}

/* Artistes associés */
.associated-artists h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #000;
}

.artists-list {
    list-style: none;
    padding: 0;
}

.artists-list li {
    margin-bottom: 8px;
}

.artists-list li:before {
    content: "—";
    margin-right: 8px;
    color: #999;
}

/*.artists-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.artists-list a:hover {
    color: #000;
    text-decoration: underline;
}*/

/* Description de l'œuvre */
.artwork-description {
    line-height: 1.2;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .single-artwork #left-area,
    .single-artwork #right-area {
        float: none;
        width: 100%;
        padding-right: 0;
    }
    
    .artwork-technical {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .artwork-technical {
        padding: 15px;
    }
}

*/ AJOUT POUR LES IMAGES SUPPLEMENTAIRES EN BAS DE PAGE:*/
.artwork-additional-gallery {
    margin: 40px 0;
    padding: 20px 0;

}

.artwork-additional-gallery h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    /* Si h3 vide, ce style n'affecte rien ; sinon, ajustez */
}

.additional-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  /* Plus d'espace avec pleine largeur */
    gap: 15px;
    max-width: 1200px;  /* Limite pour très grands écrans */
    margin: 0 auto;  /* Centre la grille */
    width: 100%;  /* Pleine largeur disponible */
}

.gallery-item {
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-link {
    display: block;
    width: 100%;
}

.gallery-thumb {
    width: 100%;
    height: auto;  /* Proportions naturelles */
    object-fit: contain;  /* Sans recadrage */
    transition: opacity 0.3s ease;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

/* Responsive (plein écran sur mobile) */
@media (max-width: 768px) {
    .additional-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .additional-gallery-grid {
        grid-template-columns: 1fr;  /* 1 colonne full-width */
        gap: 10px;
    }
}

