:root {
    --primary-color: #B61B14;
    --text-color: #000;
    --text-light: #707070;
    --bg-light: #f8f8f8;
    --spacing: 60px;
}

.section-title {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    text-align: center;
    margin: 0 0 60px;
    position: relative;
    padding: 0 20px 20px;
}

.artist-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.hero-banner {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.banner-phone {
    display: block;
}

.banner-desktop {
    display: none;
}

@media (min-width: 769px) {
    .banner-phone {
        display: none;
    }

    .banner-desktop {
        display: block;
    }
}

.hero-banner img,
.banner-desktop img,
.banner-phone img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 60px;
}

.hero-content h1 {
    font-family: 'Lato', sans-serif;
    font-size: 97px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.artist-nav {
    background: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.artist-nav .nav-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artist-nav a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.artist-nav a:hover {
    color: var(--primary-color);
}

.artist-intro {
    padding: 80px 20px 0 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.artist-brief {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}


.artist-videos {
    padding: 80px 20px;
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin: 0 auto;
}

.video-wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.artist-instagram {
    padding: 80px 20px;
}

.instagram-container {
    max-width: 658px;
    margin: 0 auto;
}

.instagram-container .instagram-media {
    margin: 0 auto !important;
}


.artist-bio {
    padding: 80px 20px;
    background: var(--bg-light);
}

.bio-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.bio-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.bio-content .wp-block-heading {
    margin-top: var(--global--spacing-vertical);
    margin-bottom: var(--global--spacing-vertical);
}

.bio-content p {
    margin-bottom: 20px;
}

.bio-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.bio-content a:hover {
    text-decoration: underline;
}

.section-main-title {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
}

h2.section-main-title {
    font-weight: 600;
}

h3.section-main-title {
    font-size: 35px;
}

h4.subsection-title {
    font-size: 30px;
	font-weight: 400;
}

.artist-events {
	padding: 40px 0 40px 0;
}

.artist-events .latest-posts {
    justify-content: center;
    flex-wrap: wrap;
}

.artist-events .latest-posts > li {
    width: calc(50% - 10px);
}


.artwork-filter-subsections a {
    font-size: inherit;
}

.artwork-filter-sections,
.artwork-filter-subsections {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 20px;
    text-align: center;
}

.artwork-filter-subsections {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .artist-hero {
        height: 400px;
    }

    .hero-content {
        padding: 0 10px;
    }

	.section-main-title {
	    font-size: 30px;	
	}
	
	h3.section-main-title {
	    font-size: 26px;	
	}

    h4.subsection-title {
	    font-size: 22px;	
	}
	
    .hero-content h1 {
        font-size: 45px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .artist-nav .nav-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .artist-nav a {
        font-size: 12px;
    }

    .videos-container {
        grid-template-columns: 1fr;
    }

    .artist-events .latest-posts {
        flex-direction: row;
    }

    .artist-events .latest-posts > li {
        border-bottom: none;
        padding-bottom: 0;
        display: block;
        gap: 0;
    }

    .artist-events .latest-posts > li img {
        height: 250px !important;
    }

    .artist-events .latest-posts > li .title,
    .artist-events .latest-posts > li .featured-img {
        width: 100%;
    }

    .artist-events .latest-posts > li .title {
        font-size: 1em;
    }
}

.filters-heading {
	margin-top: 80px;
    margin-bottom: 40px;	
}