/* ---------- HERO TITLE ---------- */

.artists-hero {
  padding: 56px 0 24px;
}

.artists-title {
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}

/* Wrapper around the artists page content (below hero) */
.artists-page-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

/* ---------- TOP BAR: title + count ---------- */

.artists-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.artists-bar-title {
  font-size: 16px;
  font-weight: 500;
}

.artists-bar-count {
  font-size: 16px;
}

/* ---------- FILTER ROW / DROPDOWN ---------- */

.filters-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.filters-search {
  flex: 1 1 260px;
}

.filters-sort {
  flex: 0 0 auto;
}

.filters-count {
  margin-left: auto;
  font-size: 14px;
}

.filters-label {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
}

.filters-search-input {
  display: inline-block;
  width: calc(100% - 80px); /* leave room for label text */
}

/* dropdown panel */

.filters-panel {
  display: none;
  background: #fafafa;
  padding: 16px 20px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.filters-panel.is-open {
  display: block;
}

/* Filters button – same look as products */

.filters-btn {
  background: #880C14;
  border-color: #880C14;
  color: #fff;
  padding: 12px 26px;       /* thicker button */
  border-radius: 4px;
}

.filters-btn-icon {
  width: 20px;
  height: 20px;
}

.filters-btn:hover,
.filters-btn:focus {
  background: #6e0a11;
  border-color: #6e0a11;
  color: #fff;              /* keep text white on hover */
}

/* Thick text fields, selects & buttons */

.filters-header .form-control,
.filters-header .form-select,
.filters-panel .form-control,
.filters-panel .form-select {
  padding: 0.75rem 0.9rem;  /* thicker height */
  font-size: 0.95rem;
}

/* Apply filters button in red */

.artists-page-wrapper .btn-primary {
  background-color: #880C14;
  border-color: #880C14;
  padding: 0.75rem 1.6rem;
  font-weight: 500;
}

.artists-page-wrapper .btn-primary:hover {
  background-color: #6e0a11;
  border-color: #6e0a11;
  color: #fff;
}

/* ---------- ARTIST CARDS ---------- */

.artist-card {
  border: none;
  border-radius: 2px;
  overflow: hidden;
}

.artist-card-image-wrap {
  position: relative;
  padding-top: 140%;      /* controls aspect ratio (height of images) */
  overflow: hidden;
}

.artist-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* crop to fill, all cards same height */
}

.artist-card-body {
  padding: 12px 16px 14px;
}

.artist-card-name {
  font-size: 1rem;
}

/* ---------- RED CTA STRIP ---------- */

.artists-cta {
  background: #880C14;
  color: #fff;
  padding: 56px 0 52px;
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  margin-bottom: 0;
}

.artists-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.artists-cta-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.artists-cta-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.artists-cta-btn {
  background: #ffffff;
  color: #880C14;
  padding: 10px 26px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 14px;
  border: none;
}

.artists-cta-btn:hover {
  background: #880C14;
  color: #f7f7f7;
}
