/* ========================= */
/*   ARTIST NAVIGATION BAR   */
/* ========================= */

.artist-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    text-align: center;
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 50px 0 30px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.artist-nav a {
    text-decoration: none;
    color: #666;
}

.artist-nav .separator {
    color: #999;
}

.artist-nav .active {
    color: #333;
    font-weight: bold;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .artist-nav {
        font-size: 1.6rem;
        letter-spacing: 1px;
        margin: 25px 0 20px;
        gap: 8px;
    }
}


/* ========================= */
/*   ARTIST PAGE TITLE (H1)  */
/* ========================= */

.artist-page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 20px 0 40px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* Override template defaults */
.content h1.artist-page-title {
    font-size: 2.5rem !important;
    letter-spacing: 3px !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    text-align: center !important;
}

/* Mobile scaling */
@media (max-width: 768px) {
    .content h1.artist-page-title {
        font-size: 1.8rem !important;
        letter-spacing: 2px !important;
    }
}


/* ========================= */
/*   BIO + EXHIBITION TEXT   */
/* ========================= */

.artist-content p {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Mobile readability */
@media (max-width: 768px) {
    .artist-content p {
        text-align: left;
    }
}

/* Section headings (Exhibitions page) */
.section-heading {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ========================= */
/*   GALLERY PAGE STYLES     */
/* ========================= */

.gallery-section {
    max-width: 1000px;
    margin: 0 auto 50px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-items: center;
    margin-bottom: 20px;
}

.gallery-grid img {
    width: 200px !important;
    height: auto;
    display: block;
}

/* ========================= */
/*   RELATED ARTISTS STYLES  */
/* ========================= */

.related-artists {
    margin-top: 50px;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #ddd;
}

.related-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.related-links a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.related-links a:hover {
    background: #f0f0f0;
    opacity: 0.8;
}

/* ========================= */
/*   RELATED ARTISTS LIST    */
/* ========================= */

.related-artists-list {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.related-main-link {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 15px;
}

.related-main-link:hover {
    opacity: 0.7;
}

.related-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.related-list-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-list-links a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.related-list-links a:hover {
    opacity: 0.7;
}
