/* =========================================================
   GENERAL
========================================================= */

.artists-page {
    background: #ffffff;
    color: #292929;
}

.artists-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #777777;
}


/* =========================================================
   HERO
========================================================= */

.artists-hero {
    padding: 80px 0 70px;
    background: #f5f4f1;
}

.artists-hero-content {
    max-width: 760px;
}

.artists-hero h1 {
    margin: 0 0 20px;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1px;
}

.artists-hero p {
    max-width: 680px;
    margin: 0;
    font-size: 19px;
    line-height: 1.7;
    color: #666666;
}


/* =========================================================
   DIRECTORY
========================================================= */

.artist-directory {
    padding: 70px 0 90px;
}

.directory-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.directory-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
}

.artist-count {
    color: #777777;
    font-size: 15px;
}

.artist-count strong {
    color: #292929;
}


/* =========================================================
   FILTERS
========================================================= */

.artist-filters {
    padding: 28px;
    margin-bottom: 25px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}

.artist-search {
    margin-bottom: 25px;
}

.artist-search label,
.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #444444;
}

.search-input-wrapper {
    display: flex;
}

.search-input-wrapper input {
    flex: 1;
    min-height: 46px;
    padding: 0 15px;
    border: 1px solid #d4d4d4;
    border-right: 0;
    background: #ffffff;
    font-size: 14px;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: #999999;
}

.search-input-wrapper button {
    width: 110px;
    border: 0;
    background: #292929;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 18px;
    align-items: end;
}

.filter-group select {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #d4d4d4;
    background: #ffffff;
    color: #444444;
}

.filter-button {
    height: 44px;
    padding: 0 22px;
    border: 1px solid #292929;
    background: #ffffff;
    color: #292929;
    font-weight: 600;
    cursor: pointer;
}

.filter-button:hover {
    background: #292929;
    color: #ffffff;
}


/* =========================================================
   ACTIVE FILTERS
========================================================= */

.active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
}

.filter-label {
    color: #777777;
}

.filter-tag {
    padding: 7px 12px;
    background: #eeeeee;
    border-radius: 3px;
    color: #444444;
}


/* =========================================================
   ARTIST GRID
========================================================= */

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 28px;
}

.artist-card {
    min-width: 0;
}

.artist-image-link {
    display: block;
    text-decoration: none;
}

.artist-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eeeeee;
}

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

.artist-image-link:hover img {
    transform: scale(1.03);
}

.artist-card-content {
    padding-top: 18px;
}

.artist-location {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
}

.artist-card h3 {
    margin: 0 0 7px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.artist-card h3 a {
    color: #292929;
    text-decoration: none;
}

.artist-card h3 a:hover {
    text-decoration: underline;
}

.artist-specialism {
    margin: 0 0 12px;
    font-size: 13px;
    color: #777777;
}

.artist-description {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.artist-link {
    display: inline-block;
    color: #292929;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.artist-link span {
    margin-left: 5px;
    transition: margin-left 0.2s ease;
}

.artist-link:hover span {
    margin-left: 10px;
}


/* =========================================================
   PAGINATION
========================================================= */

.artist-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 70px;
}

.artist-pagination a,
.artist-pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
    color: #444444;
    font-size: 14px;
    text-decoration: none;
}

.artist-pagination a {
    border: 1px solid transparent;
}

.artist-pagination a:hover {
    border-color: #cccccc;
}

.artist-pagination a.active {
    background: #292929;
    color: #ffffff;
}

.artist-pagination .pagination-arrow {
    margin: 0 10px;
    font-size: 18px;
}

.artist-pagination .disabled {
    color: #cccccc;
    pointer-events: none;
}


/* =========================================================
   CTA
========================================================= */

.artist-cta {
    padding: 70px 0;
    background: #292929;
    color: #ffffff;
}

.artist-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.artist-cta .section-eyebrow {
    color: #aaaaaa;
}

.artist-cta h2 {
    margin: 0 0 15px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
}

.artist-cta p {
    max-width: 650px;
    margin: 0;
    color: #cccccc;
    line-height: 1.7;
}

.primary-button {
    display: inline-block;
    padding: 14px 26px;
    background: #ffffff;
    color: #292929;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.primary-button:hover {
    background: #eeeeee;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .artist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-row {
        grid-template-columns: 1fr 1fr;
    }

    .filter-submit {
        grid-column: span 2;
    }

    .filter-button {
        width: 100%;
    }

}


@media (max-width: 767px) {

    .artists-hero {
        padding: 55px 0;
    }

    .artists-hero h1 {
        font-size: 40px;
    }

    .artists-hero p {
        font-size: 17px;
    }

    .artist-directory {
        padding: 50px 0 60px;
    }

    .directory-header {
        display: block;
    }

    .artist-count {
        margin-top: 10px;
    }

    .artist-filters {
        padding: 20px;
    }

    .filter-row {
        grid-template-columns: 1fr;
    }

    .filter-submit {
        grid-column: auto;
    }

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

    .artist-cta-inner {
        display: block;
    }

    .artist-cta-action {
        margin-top: 30px;
    }

}


@media (max-width: 480px) {

    .artists-hero h1 {
        font-size: 34px;
    }

    .search-input-wrapper {
        display: block;
    }

    .search-input-wrapper input {
        width: 100%;
        border-right: 1px solid #d4d4d4;
    }

    .search-input-wrapper button {
        width: 100%;
        height: 44px;
        margin-top: 8px;
    }

    .artist-pagination {
        gap: 2px;
    }

    .artist-pagination .pagination-arrow {
        margin: 0 3px;
    }

}