/* =========================================
   GLOBAL FIXES
========================================= */
.entry-meta {
    display: none;
}

.artist-single .entry-meta {
    display: none;
}

/* =========================================
   SINGLE ARTIST TITLE
========================================= */
.ast-article-single .entry-title {
    font-family: 'Damion', handwriting !important;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1em;
    margin: 0 0 20px 0;
    text-rendering: optimizeLegibility;
}

/* =========================================
   PAGE WRAPPER
========================================= */
.container-fluid {
    background: #669acc;
}

.container-fluid .futurio-content {
    padding: 0 15px;
    max-width: 1270px;
    margin: 0 auto;
}

/* =========================================
   ARTISTS GRID (PERFECT SQUARE – FIXED)
========================================= */
.common-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.common-grid .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-decoration: none;
}

/* SQUARE IMAGE CONTAINER */
.artists-ftrimg {
    width: 100%;
    aspect-ratio: 1 / 1; /* ✅ square */
    overflow: hidden;
}

/* IMAGE FILLS SQUARE */
.artists-ftrimg img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}


/* =========================================
   ARTIST CONTENT
========================================= */
.artists-content h2 {
    font-size: 28px;
    line-height: 1.2;
    max-width: 220px;
    margin: 12px auto 0;
    text-align: center;
}

.artists-content p {
    color: #000;
    font-weight: 700;
    text-align: center;
}

.artist-surname {
    display: inline-block;
    margin-left: 8px;
}

/* =========================================
   FILTER UI
========================================= */
.filter-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.filter-wrapper h3 {
    font-size: 16px;
    color: #000;
    margin: 0;
}

.filter-wrapper select {
    height: 45px;
    padding: 0 40px 0 20px;
    border-radius: 30px;
    width: 100%;
    min-width: 180px;
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: 500;
    appearance: none;
    background: #fff url("https://hwat.org.uk/wp-content/uploads/2025/03/form-arrow-1-1.png") no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 13px 10px;
}

.filter-wrapper select:focus {
    outline: none;
    border-color: #000;
}

/* =========================================
   MAP / TABS
========================================= */
.map-amp {
    width: 100%;
}

.amp-tabs {
    margin: 20px 0;
}

.amp-tab-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0 0 30px;
}

.amp-tab-nav-item {
    padding: 10px 20px;
    cursor: pointer;
    background: #f0f0f0;
    margin-right: 5px;
    border-radius: 5px 5px 0 0;
}

.amp-tab-nav-item.active {
    background: #0073aa;
    color: #fff;
}

.amp-tab-pane {
    display: none;
}

.amp-tab-pane.active {
    display: block;
}

/* =========================================
   SINGLE ARTIST PAGE
========================================= */
.artist-single {
    max-width: 900px;
    margin: 0 auto;
}

.artist-title {
    text-align: center;
    margin-bottom: 30px;
}

.artist-featured-image {
    margin-bottom: 30px;
    text-align: center;
}

.artist-featured-image img {
    max-width: 100%;
    height: 100%;
    border-radius: 6px;
}

.artist-content {
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
   RESPONSIVE GRID (MATCH NEWSLETTER)
========================================= */
@media (max-width: 1199px) {
    .common-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 921px) {
    .ast-article-single .entry-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .common-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ast-article-single .entry-title {
        font-size: 2rem;
        margin: 0;
    }

    .common-grid {
        grid-template-columns: 1fr;
    }

    .filter-wrapper {
        flex-direction: column;
    }
}