.art-layout {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* ---------- HEADER ---------- */
        .art-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,.1);
        }

        .art-header__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.5rem 1rem;
            min-height: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .art-header__brand img {
            height: 50px;
            max-height: 60px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 1.5rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 0.85rem;
            text-transform: uppercase;
            transition: color .3s ease;
            padding: 0.25rem 0;
        }

        .nav-menu a:hover,
        .nav-menu a:focus {
            color: #0073aa;
        }

        @media (max-width: 600px) {
            .art-header__container {
                flex-direction: column;
                gap: 0.5rem;
                padding: 0.5rem;
            }
            .art-header__brand img {
                height: 45px;
            }
        }
        /* ---------- /HEADER ---------- */

        /* ---------- MAIN CONTENT ---------- */
        .main-content {
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 3rem 1rem 2rem 1rem;
        }

        /* Artist Archive */
        .artist-archive {
            max-width: 100%;
        }

        .artist-archive__head {
            margin-bottom: 3rem;
            text-align: center;
        }

        .artist-archive__head h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .artist-description {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Art Grid */
        .art-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .art-grid__item {
            position: relative;
        }

        /* Artwork Cards */
        .artwork-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .artwork-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .artwork-card__link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .artwork-card__image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            background: #f5f5f5;
        }

        .artwork-card__thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .artwork-card:hover .artwork-card__thumbnail {
            transform: scale(1.05);
        }

        .artwork-card__placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            background: #e0e0e0;
            color: #888;
            font-size: 0.9rem;
        }

        .artwork-card__content {
            padding: 1.5rem;
        }

        .artwork-card__title {
            font-size: 1.2rem;
            margin: 0 0 0.5rem 0;
            color: #333;
        }

        .artwork-card__excerpt {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.5;
        }

        /* ---------- SINGLE ART PIECE ---------- */
        .art-piece {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
            width: 100%;
        }

        /* Hero Image Container */
        .art-piece__hero {
            width: 100%;
            max-height: 100vh;
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .art-piece__hero img {
            width: 100%;
            height: auto;
            max-height: 100vh;
            object-fit: cover;
            display: block;
        }

        /* Content Container */
        .art-piece__container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Title */
        .art-piece__title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #333;
            text-align: center;
            margin: 0 0 1rem 0;
            line-height: 1.3;
        }

        /* Author */
        .art-piece__author {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin: 0 0 2rem 0;
        }

        .art-piece__author a {
            color: #0073aa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .art-piece__author a:hover {
            color: #005177;
            text-decoration: underline;
        }

        /* Content Area - Gutenberg Compatible */
        .art-piece__content {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 3rem;
        }

        /* Gutenberg Block Compatibility */
        .art-piece__content .wp-block-paragraph {
            margin-bottom: 1.5rem;
        }

        .art-piece__content .wp-block-heading {
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .art-piece__content .wp-block-image {
            margin: 2rem 0;
            text-align: center;
        }

        .art-piece__content .wp-block-image img {
            max-width: 100%;
            height: auto;
        }

        .art-piece__content .wp-block-quote {
            border-left: 4px solid #0073aa;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
        }

        .art-piece__content .wp-block-gallery {
            margin: 2rem 0;
        }

        .art-piece__content .wp-block-columns {
            margin: 2rem 0;
        }

        /* Lists */
        .art-piece__content ul,
        .art-piece__content ol {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .art-piece__content li {
            margin-bottom: 0.5rem;
        }

        /* Enquiry Form */
        .art-piece__enquiry {
            background: #f8f8f8;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 3rem;
        }

        .art-piece__enquiry h3 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: #333;
        }

        /* Sold Message */
        .art-piece__sold {
            background: #f0f0f0;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 3rem;
            text-align: center;
        }

        .art-piece__sold p {
            margin: 0;
            font-size: 1.2rem;
            color: #666;
        }

        /* Contact Form 7 Styling */
        .art-piece__enquiry .wpcf7-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .art-piece__enquiry .wpcf7-form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .art-piece__enquiry .wpcf7-submit {
            background: #0073aa;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }

        .art-piece__enquiry .wpcf7-submit:hover {
            background: #005177;
        }

        /* Footer */
        .art-footer {
            background: #333;
            color: #fff;
            padding: 2rem 0;
            margin-top: auto;
        }

        .art-footer__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .main-content {
                padding: 1rem;
            }
            
            .art-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            /* Single Art Piece Mobile */
            .art-piece__hero {
                margin-bottom: 2rem;
            }
            
            .art-piece__container {
                padding: 0 1rem;
            }
            
            .art-piece__title {
                font-size: 2rem;
                margin-bottom: 0.75rem;
            }
            
            .art-piece__author {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .art-piece__content {
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 2rem;
            }
            
            .art-piece__enquiry {
                padding: 1.5rem 1rem;
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .art-piece__title {
                font-size: 1.75rem;
            }
            
            .art-piece__content {
                font-size: 0.95rem;
            }
            
            .art-piece__enquiry {
                padding: 1rem;
            }
        }



/* ================================
   ARTISTS PAGE (dedicated styles)
   ================================ */
.artists-page {
    padding-top: 80px; /* spazio sotto header fisso */
}

.artists-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

/* Titolo */
.artists-page__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Featured image */
.artists-page__hero {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.artists-page__hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Intro content */
.artists-page__content {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

/* Galleria artisti */
.artists-page__gallery {
    margin-top: 2rem;
}

.artists-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.artists-page__card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artists-page__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.artists-page__thumb {
    position: relative;
    aspect-ratio: 4/3;
    background: #f5f5f5;
    overflow: hidden;
}

.artists-page__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artists-page__card:hover .artists-page__thumb img {
    transform: scale(1.05);
}

.artists-page__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #e0e0e0;
    color: #888;
    font-size: 0.9rem;
}

/* Info */
.artists-page__info {
    padding: 1.2rem;
    text-align: center;
}

.artists-page__info h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.artists-page__info p {
    font-size: 0.95rem;
    color: #666;
}

/* Header fixed override (only artists page) */
.page-template-artists-list .art-header {
    position: fixed;
    top: 0;
    width: 100%;
}


/* ================================
   ARTIST TAXONOMY PAGE - Specific Styles
   Add these styles to your existing CSS file
   ================================ */

/* Fixed header for artist archive pages */
.tax-artist .art-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

/* Main wrapper with padding for fixed header */
.artist-archive--single {
    padding-top: 80px; /* Adjust based on your header height */
    min-height: 100vh;
}

/* Container wrapper */
.artist-archive__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

/* Content container - similar to art-piece__container */
.artist-archive__container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

/* Title - First element, centered like art-piece__title */
.artist-archive--single .artist-archive__title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0 0 2rem 0;
    line-height: 1.3;
}

/* Hero image container - similar to art-piece__hero */
.artist-archive__hero {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.artist-archive__hero-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
    display: block;
}

/* Content/Description - similar to art-piece__content */
.artist-archive__content {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.artist-archive__content p {
    margin-bottom: 1.5rem;
}

/* Gallery section */
.artist-archive__gallery {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Section title for artworks */
.artist-archive__section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 500;
}

/* No works found message */
.artist-archive__no-works {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.artist-archive__no-works p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.artist-archive__back-link {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.artist-archive__back-link:hover {
    background: #005177;
    color: white;
}

/* Pagination styling */
.artist-archive__pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.artist-archive__pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.artist-archive__pagination .page-numbers {
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.artist-archive__pagination .page-numbers:hover,
.artist-archive__pagination .page-numbers.current {
    background: #0073aa;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artist-archive--single {
        padding-top: 70px; /* Smaller padding for mobile header */
    }
    
    .artist-archive__container {
        padding: 1rem;
    }
    
    .artist-archive--single .artist-archive__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .artist-archive__hero {
        margin-bottom: 1.5rem;
    }
    
    .artist-archive__content {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .artist-archive__section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .artist-archive__gallery {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .artist-archive--single .artist-archive__title {
        font-size: 1.75rem;
    }
    
    .artist-archive__content {
        font-size: 0.95rem;
    }
    
    .artist-archive__section-title {
        font-size: 1.3rem;
    }
    
    .artist-archive__no-works {
        padding: 2rem 1rem;
    }
}


/* ================================
   ARTISTS LIST PAGE - Specific Styles
   Add these styles to your existing CSS file
   ================================ */

/* Fixed header for artists list page template */
.page-template-artists-list .art-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

/* Main wrapper with padding for fixed header */
.artists-page {
    padding-top: 80px; /* Adjust based on your header height */
    min-height: 100vh;
}

/* Container wrapper */
.artists-page__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

/* Content container */
.artists-page__container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

/* Title - First element, centered */
.artists-page__title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0 0 2rem 0;
    line-height: 1.3;
}

/* Hero image container */
.artists-page__hero {
    width: 100%;
    max-height: 60vh;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.artists-page__hero-image {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    display: block;
}

/* Content/Description */
.artists-page__content {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    text-align: center;
}

.artists-page__content p {
    margin-bottom: 1.5rem;
}

/* Gallery section */
.artists-page__gallery {
    margin-top: 2rem;
}

/* Section title for artists */
.artists-page__section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 500;
}

/* Artist card specific styles (extends artwork-card) */
.artist-card .artwork-card__meta {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
    font-style: italic;
}

/* No artists found message */
.artists-page__no-artists {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    margin-top: 2rem;
}

.artists-page__no-artists p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.artists-page__back-link {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.artists-page__back-link:hover {
    background: #005177;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artists-page {
        padding-top: 70px; /* Smaller padding for mobile header */
    }
    
    .artists-page__container {
        padding: 1rem;
    }
    
    .artists-page__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .artists-page__hero {
        margin-bottom: 1.5rem;
        max-height: 50vh;
    }
    
    .artists-page__content {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .artists-page__section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .artists-page__title {
        font-size: 1.75rem;
    }
    
    .artists-page__content {
        font-size: 0.95rem;
    }
    
    .artists-page__section-title {
        font-size: 1.3rem;
    }
    
    .artists-page__no-artists {
        padding: 2rem 1rem;
    }
    
    .artist-card .artwork-card__meta {
        font-size: 0.8rem;
    }
}

/* ================================
   ARTIST ARCHIVE - PODS HTML Content Support
   Add these styles to your existing CSS file
   ================================ */

/* Rich content from PODS HTML editor */
.artist-archive__content--rich {
    /* Mantiene gli stili esistenti e aggiunge supporto per contenuti complessi */
}

/* Supporto per i blocchi Gutenberg nell'editor HTML di PODS */
.artist-archive__content h1,
.artist-archive__content h2,
.artist-archive__content h3,
.artist-archive__content h4,
.artist-archive__content h5,
.artist-archive__content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.artist-archive__content h2 {
    font-size: 1.8rem;
}

.artist-archive__content h3 {
    font-size: 1.5rem;
}

.artist-archive__content h4 {
    font-size: 1.3rem;
}

/* Paragrafi e testo */
.artist-archive__content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.artist-archive__content strong,
.artist-archive__content b {
    font-weight: 600;
    color: #222;
}

.artist-archive__content em,
.artist-archive__content i {
    font-style: italic;
}

/* Liste */
.artist-archive__content ul,
.artist-archive__content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.artist-archive__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.artist-archive__content ul li {
    list-style-type: disc;
}

.artist-archive__content ol li {
    list-style-type: decimal;
}

/* Immagini inserite nell'editor */
.artist-archive__content img {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.artist-archive__content figure {
    margin: 2rem 0;
    text-align: center;
}

.artist-archive__content figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Citazioni */
.artist-archive__content blockquote {
    border-left: 4px solid #0073aa;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.artist-archive__content blockquote p {
    margin-bottom: 0.5rem;
}

/* Tabelle */
.artist-archive__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.artist-archive__content table th,
.artist-archive__content table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.artist-archive__content table th {
    background: #f8f8f8;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #0073aa;
}

.artist-archive__content table tr:hover {
    background: #f5f5f5;
}

/* Link nel contenuto */
.artist-archive__content a {
    color: #0073aa;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.artist-archive__content a:hover {
    color: #005177;
}

/* Codice inline */
.artist-archive__content code {
    background: #f4f4f4;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Blocchi di codice */
.artist-archive__content pre {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.artist-archive__content pre code {
    background: none;
    padding: 0;
}

/* HR / Separatori */
.artist-archive__content hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2rem 0;
}

/* Video embeds */
.artist-archive__content iframe,
.artist-archive__content video {
    max-width: 100%;
    margin: 2rem auto;
    display: block;
}

.artist-archive__content .wp-video,
.artist-archive__content .wp-embedded-content {
    max-width: 100%;
    margin: 2rem 0;
}

/* Gallery support */
.artist-archive__content .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.artist-archive__content .gallery-item {
    position: relative;
}

.artist-archive__content .gallery img {
    width: 100%;
    height: auto;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive adjustments for rich content */
@media (max-width: 768px) {
    .artist-archive__content h2 {
        font-size: 1.5rem;
    }
    
    .artist-archive__content h3 {
        font-size: 1.3rem;
    }
    
    .artist-archive__content h4 {
        font-size: 1.15rem;
    }
    
    .artist-archive__content ul,
    .artist-archive__content ol {
        padding-left: 1.5rem;
    }
    
    .artist-archive__content blockquote {
        padding-left: 1rem;
    }
    
    .artist-archive__content table {
        font-size: 0.9rem;
    }
    
    .artist-archive__content .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .artist-archive__content h2 {
        font-size: 1.3rem;
    }
    
    .artist-archive__content h3 {
        font-size: 1.15rem;
    }
    
    .artist-archive__content table {
        font-size: 0.85rem;
    }
    
    .artist-archive__content table th,
    .artist-archive__content table td {
        padding: 0.5rem;
    }
    
    .artist-archive__content .gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.5rem;
    }
}