/* =========================
   Location list
   More / Less toggle
   ========================= */

.artist-location-list button,
.artist-location-list a,
.artist-location-list [role="button"],
.artist-location-list span.more,
.artist-location-list span.less,
.artist-location-list .more,
.artist-location-list .less,
.artist-location-list [class*="more"],
.artist-location-list [class*="less"] {
  font-family: "Beatrice", serif;
  font-size: 14px;
  font-weight: 600;
  color: #FF4911;
  background: none;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  text-decoration: underline;
}

.artist-location-list button:hover,
.artist-location-list a:hover,
.artist-location-list [role="button"]:hover,
.artist-location-list .more:hover,
.artist-location-list .less:hover,
.artist-location-list [class*="more"]:hover,
.artist-location-list [class*="less"]:hover {
  opacity: 0.7;
}

/* NOTE: Intentionally not styling all spans/divs in artist-location-list.
   Keep this block as a reminder:
   .artist-location-list span,
   .artist-location-list div { } */


/* =========================
   Artists grid
   Empty / no-results message
   ========================= */

#artistsGrid p,
#artistsGrid .empty,
#artistsGrid .no-results,
#artistsGrid [class*="empty"],
#artistsGrid [class*="nothing"],
#artistsGrid [class*="found"] {
  font-family: "Beatrice", serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin: 40px auto;
  max-width: 420px;
}


/* =========================
   Filter reset (no underline)
   ========================= */

button[type="reset"],
button[type="submit"],
.filter-reset,
.facet-reset,
.reset {
  text-decoration: none !important;
}

/* =========================
   Artist socials
   ========================= */

/* Wrapper: label + icons in one row */
.artist-socials-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap; /* allows clean wrapping on smaller screens */
}

/* Label */
.artist-socials__label {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  font-family: "Beatrice", sans-serif;
  display: flex;
  align-items: center;
}

/* Highlighted artist name */
.artist-socials__name {
  color: #ff4911;
  margin: 0 4px;
}

/* Icons row */
.artist-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Social link box */
.artist-socials__link {
  width: 40px;
  height: 40px;
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}

/* Force Font Awesome icon to white */
.artist-socials__link i {
  color: #fff !important;
  font-size: 18px;
  line-height: 1;
}

/* Hover bob */
.artist-socials__link:hover {
  transform: translateY(-4px);
}

/* Click feedback */
.artist-socials__link:active {
  transform: translateY(-2px);
}

/* ===== BetterDocs Link Styling ===== */

/* Default link state */
.betterdocs-content a {
    color: #000000 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Hover state */
.betterdocs-content a:hover {
    color: #ff4911 !important;
}

/* Visited state (remove purple) */
.betterdocs-content a:visited {
    color: #000000 !important;
}

/* Active state */
.betterdocs-content a:active {
    color: #ff4911 !important;
}