/*
Theme Name: The Mill Gallery
Template: hello-elementor
Author: Child Theme Configurator
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1773861792
Updated: 2026-03-18 19:23:12

*/

/* Artist Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.artist-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;

    box-shadow: 0 12px 20px -10px rgba(0,0,0,0.15);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.artist-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.2);
}

.artist-image {
    overflow: hidden;
    aspect-ratio: 1;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

/* Content area */
.artist-content {
    padding: 14px 12px;
    text-align: center;
}

.artist-name {
    margin: 0;
    font-size: 18px;
    color: #C25E3C;
	text-transform:uppercase;
	font-weight:600;
	position: relative;
}
.artist-name::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #C25E3C;
    margin: 6px auto 0;
    transition: width 0.3s ease;
}

.artist-card:hover .artist-name::after {
    width: 30px;
}

/* Single Artist */
main.artist-single {
	background:url(https://themill.wolfberrymedia.co.uk/wp-content/uploads/2026/03/Untitled-design-53-1.png);
	background-size: contain;
    background-attachment: fixed;
    background-repeat: repeat;
}

.artist-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
	max-width:1200px;
	margin:0 auto;
	padding:5% 1%;
	font-family:'Red Hat Mono', sans-serif;
}
.artist-hero-inner h1 {
	font-size:32px;
	text-transform:uppercase;
	font-weight:600;
	color:#C25E3C;
}

.artist-image img {
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.artist-bio {
    margin-top: 16px;
}

.artist_btn {
	background-color: #C25E3C;
    font-family: "Red Hat Mono", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 1.8px;
    padding: 8px 14px;
    border-radius: 4px;
    color: #fff !important;
    margin-top: 10px;
    display: inline-block;
}
.artwork_btn {
	background-color: #C25E3C;
    font-family: "Red Hat Mono", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 1.8px;
    padding: 8px 14px;
    border-radius: 4px;
    color: #fff !important;
    margin-top: 10px;
    display: block;
	text-align:center;
}

.artist-artwork {
	background:url(https://themill.wolfberrymedia.co.uk/wp-content/uploads/2026/03/Untitled-design-39.jpg);
	background-size: contain;
    background-attachment: fixed;
    background-repeat: repeat;
	border-top:1px solid #dadada;
	font-family:'Red Hat Mono', sans-serif;
}
.artist-artwork .container {
	max-width:1200px;
	margin:0 auto;
	padding:5% 1%;
}

.artist-artwork h2 {
	font-size:28px !important;
	text-transform:uppercase !important;
	font-weight:600 !important;
	color:#C25E3C !important;
	text-align:center !important;
	margin-bottom:25px;
}
.glightbox-clean .gslide-title {
	margin:0 !important;
	font-size:24px !important;
	font-weight:600 !important;
	color:#C25E3C !important;
	text-align:center !important;
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.artwork-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2);
}

.artwork-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
	position:relative;
}

.artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-info {
    padding: 12px;
    text-align: center;
}
.artwork-info p {
    font-size: 13px;
    opacity: 0.7;
}
p.artwork-price {
	background: #C25E3C;
    padding: 5px 10px;
    position: absolute;
    bottom: 0;
    left: 10px;
    color: #fff;
    font-weight: 600;
    border-radius:6px;
    font-size: 20px;
}

.back-to-artists {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.back-to-artists:hover {
    color: #c96a43; /* your accent colour */
}

/* ===============================
   Featured Artwork Layout
================================= */

.featured-artwork {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-height: 500px;
    overflow: hidden;
    align-items: stretch;
}

/* Allow grid items to shrink properly */
.featured-artwork-main,
.featured-artwork-side,
.featured-artwork-card {
    min-height: 0;
    height: 100%;
}

/* Right column (3 stacked items) */
.featured-artwork-side {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

/* Card */
.featured-artwork-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Image container */
.featured-artwork-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-artwork-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Image */
.featured-artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover zoom */
.featured-artwork-card:hover img {
    transform: scale(1.05);
}

/* ===============================
   Overlay (pill style)
================================= */

.featured-artwork-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
	font-family:'Red Hat Mono', sans-serif;
}

/* Pill container */
.featured-artwork-overlay-inner {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);

    padding: 10px 14px;
    border-radius: 8px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Smaller pill for side images */
.featured-artwork-side .featured-artwork-overlay-inner {
    padding: 8px 12px;
    border-radius: 6px;
}

/* Slightly smaller text */
.featured-artwork-side h3 {
    font-size: 14px;
}

.featured-artwork-side .artwork-artist {
    font-size: 11px;
}

.featured-artwork-side .view-artist {
    font-size: 12px;
}
/* Title */
.featured-artwork-overlay-inner h3 {
    margin: 0 0 4px;
    font-size: 12px;
    color: #C25E3C;
}


/* Link */
.view-artist {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.view-artist:hover {
    text-decoration: underline;
}

.artwork-artist {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}


.featured-artwork-main .featured-artwork-overlay-inner {
    padding: 12px 16px;
}

.featured-artwork-main h3 {
    font-size: 18px;
}

/* ===============================
   Mobile
================================= */

@media (max-width: 767px) {

    .featured-artwork {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .featured-artwork-side {
        grid-template-rows: none;
        grid-template-columns: 1fr;
    }

    .featured-artwork-card,
    .featured-artwork-image {
        height: auto;
    }

    .featured-artwork-image img {
        height: auto;
    }
}