.artist-cards {
  padding: 70px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 45px;
  list-style: none;
}
@media screen and (max-width: 1400px) {
  .artist-cards {
    gap: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .artist-cards {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .artist-cards {
    gap: 25px;
  }
}
@media screen and (max-width: 900px) {
  .artist-cards {
    padding-top: 50px;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}
@media screen and (max-width: 700px) {
  .artist-cards {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .artist-cards {
    padding-top: 40px;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 400px) {
  .artist-cards {
    gap: 20px;
  }
}

.artist-card {
  display: flex;
  gap: 14px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px 15px;
  min-height: 240px;
  transition: 250ms;
  text-decoration: none !important;
  color: #000000 !important;
  background: white;
}
.artist-card:hover {
  box-shadow: 0px 4px 21px rgba(0, 0, 0, 0.34);
}
.artist-card__image {
  flex: 0 0 125px;
  height: 125px;
  border-radius: 100%;
  overflow: hidden;
}
.artist-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.artist-card__info {
  flex: 0 0 calc(100% - 125px - 14px);
  display: flex;
  flex-direction: column;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.artist-card__native-name {
  text-transform: uppercase;
  font-weight: 600;
  color: #EB0000;
  font-size: 18px;
  line-height: 1;
}
.artist-card__english-name {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}
.artist-card__tribes {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.1;
}
.artist-card__roles {
  margin-top: auto;
  position: relative;
  padding-top: 7px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.1;
}
.artist-card__roles::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 14px;
  height: 2px;
  background: #1f1e1e;
}
.artist-card--slim {
  gap: 11px;
}
.artist-card--slim .artist-card__image {
  flex: 0 0 75px;
  height: 75px;
}
.artist-card--slim .artist-card__info {
  flex: 0 0 calc(100% - 75px - 11px);
}
.artist-card--slim .artist-card__roles {
  margin-left: -86px;
}
@media screen and (max-width: 1400px) {
  .artist-card__image {
    flex: 0 0 100px;
    height: 100px;
  }
  .artist-card__info {
    flex: 0 0 calc(100% - 100px - 14px);
  }
}
@media screen and (max-width: 1200px) {
  .artist-card__image {
    flex: 0 0 125px;
    height: 125px;
  }
  .artist-card__info {
    flex: 0 0 calc(100% - 125px - 14px);
  }
}
@media screen and (max-width: 1000px) {
  .artist-card__image {
    flex: 0 0 100px;
    height: 100px;
  }
  .artist-card__info {
    flex: 0 0 calc(100% - 100px - 14px);
  }
}
@media screen and (max-width: 900px) {
  .artist-card__image {
    flex: 0 0 125px;
    height: 125px;
  }
  .artist-card__info {
    flex: 0 0 calc(100% - 125px - 14px);
  }
}
@media screen and (max-width: 700px) {
  .artist-card__image {
    flex: 0 0 100px;
    height: 100px;
  }
  .artist-card__info {
    flex: 0 0 calc(100% - 100px - 14px);
  }
}
@media screen and (max-width: 600px) {
  .artist-card {
    min-height: 150px;
  }
  .artist-card__image {
    flex: 0 0 125px;
    height: 125px;
  }
  .artist-card__info {
    flex: 0 0 calc(100% - 125px - 14px);
  }
}
@media screen and (max-width: 400px) {
  .artist-card {
    padding: 15px 10px;
  }
  .artist-card__image {
    flex: 0 0 100px;
    height: 100px;
  }
  .artist-card__info {
    flex: 0 0 calc(100% - 100px - 14px);
  }
}

.artist-filters {
  background: #1D2352;
}
.artist-filters__inner {
  padding: 27px 19px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.artist-filters__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.artist-filters__section label {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  color: white;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 600;
}
.artist-filters__section input[type=text] {
  padding-left: 14px;
  padding-right: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  color: #F4F4F6;
  border-radius: 2px;
  outline-offset: 2px;
  background-repeat: no-repeat;
  background-position: center right 12px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTdweCIgaGVpZ2h0PSIxN3B4IiB2aWV3Qm94PSIwIDAgMTcgMTciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+bm91bi1zZWFyY2gtNTY1NDMwODwvdGl0bGU+CiAgICA8ZyBpZD0iRklOQUwiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJBbHVtbmktRGlyZWN0b3J5LS0tRklOQUwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC02NzAsIC01NDEpIiBmaWxsPSIjRkZGRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyBpZD0ibm91bi1zZWFyY2gtNTY1NDMwOCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjcwLCA1NDEpIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xNi43NTk4MjA1LDE1LjYzNTU4MTggTDEyLjc4NjA5OSwxMS42NjE2MDUzIEMxNS4yNjE5MTQ5LDguNTY0OTQwMzcgMTQuNzU4NTEyOCw0LjA0NzQzMzA1IDExLjY2MTc5NjksMS41NzE5NDYxNSBDOC41NjUwODEwOCwtMC45MDM4MjkwMzYgNC4wNDc0OTk1NCwtMC40MDA0MzUxODggMS41NzE5NzE5OCwyLjY5NjIyOTc4IEMtMC45MDM4NDM4ODUsNS43OTI4OTQ3NiAtMC40MDA0NDE3NjcsMTAuMzEwNDAyMSAyLjY5NjI3NDA4LDEyLjc4NTg4OSBDNS4zMTcyMzI0OCwxNC44ODEyNzU5IDkuMDQwMTMzOCwxNC44ODE0MDQgMTEuNjYxNDEyNSwxMi43ODYyNjQ0IEwxNS42MzUxMzQsMTYuNzU5OTIwNSBDMTUuOTQxODI2NSwxNy4wNzQzNjYzIDE2LjQ0NTM1MDMsMTcuMDgwNzYgMTYuNzU5OTE2NiwxNi43NzQxODUgQzE3LjA3NDM2NzUsMTYuNDY3NDk3NiAxNy4wODA3NjE0LDE1Ljk2Mzk4MiAxNi43NzQxODEzLDE1LjY0OTQyMDkgQzE2Ljc2OTU1MTUsMTUuNjQ0NjY2IDE2Ljc2NDc5NjUsMTUuNjM5OTExIDE2Ljc1OTkxNjYsMTUuNjM1MTU2NCBMMTYuNzU5ODIwNSwxNS42MzU1ODE4IFogTTEuNjMwNTI4NzEsNy4xOTk3NzA4NSBDMS42MzA1Mjg3MSw0LjEyNDg4ODExIDQuMTIzMjI2MDksMS42MzIxNjc2MyA3LjE5ODIyMzQxLDEuNjMyMTY3NjMgQzEwLjI3MzAyODUsMS42MzIxNjc2MyAxMi43NjU1OTc4LDQuMTI0ODI0MDUgMTIuNzY1NTk3OCw3LjE5OTc3MDg1IEMxMi43NjU1OTc4LDEwLjI3NDUyNTUgMTAuMjcyOTAwNCwxMi43NjcwNTM3IDcuMTk4MjIzNDEsMTIuNzY3MDUzNyBDNC4xMjQ2Njc1OCwxMi43NjM1NSAxLjYzNDA1MjM3LDEwLjI3MzAxOTkgMS42MzA1Mjg3MSw3LjE5OTc3MDg1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=");
}
.artist-filters__section input[type=text]::-moz-placeholder {
  color: #F4F4F6;
}
.artist-filters__section input[type=text]::placeholder {
  color: #F4F4F6;
}
.artist-filters__section select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid white;
  background: transparent;
  padding-left: 10px;
  color: #F4F4F6;
  height: 40px;
  background-color: #1D2352;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTdweCIgaGVpZ2h0PSIxMXB4IiB2aWV3Qm94PSIwIDAgMTcgMTEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+UGF0aDwvdGl0bGU+CiAgICA8ZyBpZD0iRklOQUwiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJBbHVtbmktRGlyZWN0b3J5LS0tRklOQUwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC04NzAsIC01NDUpIiBmaWxsPSIjRkZGRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cG9seWdvbiBpZD0iUGF0aCIgcG9pbnRzPSI4ODYuNDQ0NDQ0IDU0Ny4zMDA2MzEgODg0LjE5MTcwMyA1NDUgODc4LjIyMjIyMiA1NTEuMDk3NTM0IDg3Mi4yNTI3NDEgNTQ1IDg3MCA1NDcuMzAwNjMxIDg3OC4yMjIyMjIgNTU1LjY5ODc5NSI+PC9wb2x5Z29uPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+");
  background-repeat: no-repeat;
  background-position: center right 11px;
  border-radius: 2px;
  cursor: pointer;
  outline-offset: 2px;
}
.artist-filters__buttons {
  align-items: center;
  display: flex;
  gap: 15px;
}
.artist-filters__submit {
  background: #EB0000 !important;
  border: none !important;
  color: white !important;
  border-radius: 2px !important;
  white-space: nowrap;
}
.artist-filters__submit.disabled {
  pointer-events: none;
  background: #666;
  color: #aaa;
}
.artist-filters__submit:hover {
  background: #FF4040 !important;
}
.artist-filters__reset {
  pointer-events: none;
  opacity: 0;
  transition: 250ms opacity;
  color: white;
  text-decoration: underline;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  color: white !important;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 600;
  background: none !important;
  border: none !important;
}
.artist-filters__reset.show {
  pointer-events: all;
  opacity: 1;
  cursor: pointer;
}
.artist-filters__reset.show:hover {
  text-decoration: none;
}
.artist-filters__text-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.artist-filters__text-items:empty, .artist-filters__text-items:not(:has(.artist-filters__text-items__item)) {
  display: none;
}
.artist-filters__text-items__item {
  background: white;
  border-radius: 2px;
  padding: 11px 12px;
  font-size: 16px;
  line-height: 1;
}
.artist-filters__text-items__item button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transform: translate(5px, 5px) rotate(45deg);
  cursor: pointer;
  padding: 0;
  color: black;
  font-size: 30px;
  line-height: 0;
  font-weight: 200;
  border: none;
  outline: none !important;
}
.artist-filters--strip {
  margin-top: 68px;
  padding: 0;
}
.artist-filters--strip .artist-filters__section:first-child {
  flex-grow: 1;
}
.artist-filters--strip .artist-filters__section:nth-of-type(2) select, .artist-filters--strip .artist-filters__section:nth-of-type(3) select, .artist-filters--strip .artist-filters__section:nth-of-type(4) select {
  width: 180px;
}
.artist-filters--strip .artist-filters__section:nth-of-type(5) select {
  width: 118px;
}
.artist-filters--strip .artist-filters__inner {
  flex-direction: row;
  padding: 26px 0 32px;
}
.artist-filters--strip .artist-filters__buttons {
  align-self: flex-start;
  height: 40px;
  margin-top: 27px;
}
@media screen and (max-width: 1200px) {
  .artist-filters--strip .artist-filters__inner {
    flex-wrap: wrap;
  }
  .artist-filters--strip .artist-filters__buttons {
    margin-top: 0;
  }
}
@media screen and (max-width: 1072px) {
  .artist-filters--strip .artist-filters__buttons {
    margin-top: 27px;
  }
}
@media screen and (max-width: 830px) {
  .artist-filters__inner {
    padding: 22px 32px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .artist-filters__buttons {
    height: 40px;
    margin-top: auto;
  }
  .artist-filters--strip .artist-filters__section select {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .artist-filters--strip {
    margin-top: 30px;
  }
}
@media screen and (max-width: 640px) {
  .artist-filters__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 500px) {
  .artist-filters__inner {
    grid-template-columns: 1fr;
  }
  .artist-filters--strip .artist-filters__buttons {
    margin-top: 0;
  }
}

.artist-btn {
  margin: 0 auto 50px;
  background: #EB0000;
  color: white !important;
  text-decoration: none !important;
  width: 296px;
  height: 57px;
  display: flex;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Barlow Semi Condensed", sans-serif !important;
  align-items: center;
  justify-content: center;
  font-size: 20px !important;
  line-height: 24px !important;
  transition: 250ms;
}
.artist-btn:hover {
  background: #FF4040;
}

.artist-results__top {
  max-width: 1280px;
  margin: 22px auto 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.artist-results__top__left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.artist-results__top__left h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin: 0;
}
.artist-results__top__right {
  text-transform: uppercase;
  font-size: 26px;
  line-height: 31px;
  font-weight: 600;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.artist-results__top__right span {
  color: #EB0000;
  font-size: 35px;
  line-height: 48px;
}
.artist-results__main {
  display: flex;
  gap: 50px;
}
.artist-results__sidebar {
  flex: 0 0 295px;
}
.artist-results__listing {
  flex-grow: 1;
  padding-bottom: 50px;
}
.artist-results__listing__cards {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
.artist-results__listing__pagination {
  margin-top: 55px;
  display: flex;
  align-items: center;
}
.artist-results__listing__pagination > a {
  max-height: 24px;
  display: flex;
}
.artist-results__listing__pagination__first {
  margin-right: 25px;
  transition: 250ms;
  font-size: 0 !important;
  line-height: 0 !important;
}
.artist-results__listing__pagination__first:hover {
  transform: scale(1.1);
}
.artist-results__listing__pagination__last {
  margin-left: 25px;
  transition: 250ms;
  font-size: 0 !important;
  line-height: 0 !important;
}
.artist-results__listing__pagination__last:hover {
  transform: scale(1.1);
}
.artist-results__listing__pagination .page-numbers {
  margin-right: 20px;
  text-decoration: none !important;
  font-size: 20px !important;
  line-height: 20px;
  font-family: "Barlow Semi Condensed", sans-serif !important;
  font-weight: 600;
  color: black !important;
  transition: 250ms;
}
.artist-results__listing__pagination .page-numbers:hover {
  color: #EB0000 !important;
}
.artist-results__listing__pagination .page-numbers.prev {
  margin-right: 25px;
  font-size: 0 !important;
  line-height: 0 !important;
}
.artist-results__listing__pagination .page-numbers.prev:hover {
  transform: scale(1.1);
}
.artist-results__listing__pagination .page-numbers.next {
  margin-right: 0;
  margin-left: 5px;
  font-size: 0 !important;
  line-height: 0 !important;
}
.artist-results__listing__pagination .page-numbers.next:hover {
  transform: scale(1.1);
}
.artist-results__listing__pagination .page-numbers.current {
  color: #EB0000 !important;
}
@media screen and (max-width: 1300px) {
  .artist-results__listing__cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .artist-results__main {
    gap: 30px;
  }
  .artist-results__sidebar {
    flex: 0 0 250px;
  }
  .artist-results__listing__cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 830px) {
  .artist-results__top {
    margin-bottom: 45px;
  }
  .artist-results__main {
    flex-direction: column;
  }
  .artist-results__sidebar {
    margin: 0 -32px;
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .artist-results__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .artist-results__top__left h2 {
    font-size: 30px;
    line-height: 32px;
  }
  .artist-results__listing__cards {
    grid-template-columns: 1fr;
  }
}

.artist {
  display: flex;
  padding-top: 100px;
}
.artist h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  color: #EB0000;
  font-size: 20px;
  line-height: 24px;
}
.artist h2.lower {
  text-transform: none;
}
.artist h2.lower .uppercase {
  text-transform: uppercase;
}
.artist h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 25px;
  line-height: 30px;
}
.artist__left-sidebar {
  flex: 0 0 430px;
  padding-right: 70px;
}
.artist__left-sidebar__title {
  flex: 0 0 100px;
  text-align: right;
}
.artist__left-sidebar__info {
  padding-top: 8px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 18px;
}
.artist__main {
  flex: 0 0 calc(100% - 430px - 260px);
}
.artist__right-sidebar {
  flex: 0 0 260px;
  padding-left: 60px;
  padding-top: 90px;
}
.artist__right-sidebar--side {
  display: block;
}
.artist__right-sidebar--inner {
  display: none;
}
.artist__back {
  text-decoration: none !important;
  color: black !important;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 20px !important;
  line-height: 24px;
  gap: 12.5px;
  font-family: "Barlow Semi Condensed", sans-serif !important;
  margin-bottom: 26px;
  transition: 250ms;
}
.artist__back::before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTNweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMTMgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+RmlsbCAxPC90aXRsZT4KICAgIDxnIGlkPSJGSU5BTCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IkFydGlzdC1Qcm9maWxlLUZJTkFMIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjYzLCAtMzA0KSIgZmlsbD0iIzJBMkIyQyI+CiAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJGaWxsLTEiIHBvaW50cz0iMjY5LjQ3MTIzIDMwNC41OTcwNDggMjYzIDMxNC4wOTY4NiAyNjkuNDcxMjMgMzIzLjU5NzA0OCAyNzUuMzUzNTE2IDMyMy41OTcwNDggMjY4Ljg4MjI4NyAzMTQuMDk2ODYgMjc1LjM1MzUxNiAzMDQuNTk3MDQ4Ij48L3BvbHlnb24+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=");
  width: 12px;
  height: 19px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.artist__back:hover {
  color: #EB0000 !important;
}
.artist__back--inner {
  display: none;
}
.artist__headshot {
  width: 295px;
  height: 295px;
  max-width: 100%;
  margin-bottom: 22px;
  position: relative;
}
.artist__headshot img {
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.artist__headshot--inner {
  display: none;
}
.artist__languages {
  display: flex;
  gap: 30px;
}
.artist__languages--inner {
  display: none;
}
.artist__awards {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}
.artist__awards--inner {
  display: none;
}
.artist__award {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.artist__award p {
  margin: 0;
}
.artist__award p + p {
  font-style: italic;
}
.artist__award small {
  font-size: 13px;
  line-height: 16px;
}
.artist__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 130px;
}
.artist__social__bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  border-radius: 100px;
  background: #e4e4e4;
}
.artist__social__bar a {
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 11px 5px;
  display: flex;
  align-items: center;
}
.artist__social__bar a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.artist__social__bar + .artist__social__bar {
  background: #F2F2F2;
}
.artist__social--inner {
  display: none;
}
.artist__roles {
  position: relative;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  padding-left: 19px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.artist__roles::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  height: 37px;
  background: #EB0000;
  width: 7px;
}
.artist__roles span + span::before {
  content: ", ";
}
.artist__years {
  display: flex;
  flex-direction: column;
  padding-left: 19px;
}
.artist__years > div:nth-child(1) {
  color: #EB0000;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.artist__years > div:nth-child(2) {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.artist__top {
  display: flex;
}
.artist__name {
  font-size: 40px !important;
  line-height: 40px !important;
  font-family: "Barlow Semi Condensed", sans-serif !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
}
.artist__name__na {
  color: #EB0000;
}
.artist__name__pronouns {
  font-size: 22px;
  margin-left: 10px;
  text-transform: none;
}
.artist__origin {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 23px;
  font-weight: 600;
}
.artist__origin__tribe {
  color: #EB0000;
  text-transform: uppercase;
}
.artist__origin__tribe + span::before {
  content: " | ";
}
.artist__bio {
  font-size: 1rem;
  line-height: 23px;
  margin-bottom: 30px;
}
.artist__work__section {
  position: relative;
  padding-top: 25px;
}
.artist__work__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #E1E1E1;
  width: 234px;
  height: 3px;
}
.artist__work__section__year {
  color: #EB0000;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 12px;
  width: 60px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.artist__work__section + .artist__work__section {
  margin-top: 50px;
}
.artist__table {
  display: flex;
  flex-direction: column;
}
.artist__table__row {
  display: flex;
  font-size: 15px;
  line-height: 18px;
  min-height: 48px;
  position: relative;
  padding-top: 8px;
}
.artist__table__row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background: black;
}
.artist__table__col:nth-child(1) {
  flex: 0 0 10%;
}
.artist__table__col:nth-child(2) {
  font-weight: 700;
  flex: 0 0 50%;
  padding-right: 50px;
}
.artist__table__col:nth-child(3) {
  flex: 0 0 20%;
  padding-right: 15px;
}
.artist__table__col:nth-child(4) {
  flex: 0 0 20%;
  font-size: 13px;
  line-height: 15px;
}
.artist__notes {
  margin-top: 40px;
}
.artist__footnote {
  position: relative;
  padding-top: 24px;
  margin-top: 50px;
}
.artist__footnote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 234px;
  height: 3px;
  background: black;
}
.artist__footnote__contact {
  font-size: 18px;
  line-height: 22px;
}
.artist__footnote__contact a {
  color: #EB0000;
  font-weight: 700;
  text-decoration: none !important;
}
.artist__footnote__contact a:hover {
  text-decoration: underline !important;
}
.artist__footnote__updated {
  font-size: 12px;
  line-height: 16px;
}
.artist__suggested {
  background: #F4F4F4;
  padding: 60px 30px;
  margin-top: 75px;
  margin-right: -110px;
  margin-bottom: 80px;
  position: relative;
}
.artist__suggested h2 {
  font-size: 28px;
  line-height: 34px;
  margin: 0 0 0 20px;
}
.artist__suggested__accent {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  font-size: 0;
  line-height: 0;
}
.artist__suggested__cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
  padding: 25px 0 0;
}
.artist__suggested__cards .artist-card {
  padding: 20px 12px;
}
.artist__suggested__cards .artist-card__image {
  flex: 0 0 75px;
  height: 75px;
}
.artist__suggested__cards .artist-card__info {
  flex: 0 0 calc(100% - 75px - 14px);
}
@media screen and (max-width: 1350px) {
  .artist__suggested {
    margin-right: -260px;
  }
}
@media screen and (max-width: 1200px) {
  .artist__left-sidebar {
    flex: 0 0 400px;
    padding-right: 40px;
  }
  .artist__main {
    flex: 0 0 calc(100% - 400px);
  }
  .artist__right-sidebar {
    padding: 0;
    margin-bottom: 40px;
  }
  .artist__right-sidebar--side {
    display: none;
  }
  .artist__right-sidebar--inner {
    display: block;
  }
  .artist__roles {
    padding-left: 0;
    margin-bottom: 10px;
  }
  .artist__roles::before {
    display: none;
  }
  .artist__years {
    padding-left: 0;
    margin-top: 20px;
  }
  .artist__suggested {
    margin-right: 0;
    padding: 50px 15px 35px;
  }
  .artist__suggested .artist-card {
    min-height: unset;
  }
  .artist__suggested .artist-card__image {
    flex: 0 0 60px;
    height: 60px;
  }
  .artist__suggested .artist-card__roles {
    margin-left: -70px !important;
  }
}
@media screen and (max-width: 1100px) {
  .artist__suggested .artist-card {
    flex-direction: column;
  }
  .artist__suggested .artist-card__image {
    flex: 0 0 auto;
    width: 60px;
  }
  .artist__suggested .artist-card__roles {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .artist__left-sidebar {
    flex: 0 0 335px;
  }
  .artist__left-sidebar__title {
    flex: 0 0 auto;
    text-align: left;
    margin: 0;
  }
  .artist__left-sidebar__info {
    padding-top: 0;
  }
  .artist__main {
    flex: 0 0 calc(100% - 335px);
  }
  .artist__languages, .artist__awards {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .artist__social {
    padding-left: 0;
  }
}
@media screen and (max-width: 900px) {
  .artist__left-sidebar {
    flex: 0 0 250px;
    max-width: 250px;
  }
  .artist__main {
    flex: 0 0 calc(100% - 250px);
  }
}
@media screen and (max-width: 750px) {
  .artist {
    padding-top: 50px;
    flex-direction: column;
  }
  .artist__left-sidebar {
    display: none;
  }
  .artist__left-sidebar__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .artist__main {
    flex: 0 0 auto;
  }
  .artist__right-sidebar {
    margin-bottom: 20px;
  }
  .artist__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  .artist__back--inner, .artist__languages--inner, .artist__awards--inner, .artist__social--inner {
    display: flex;
  }
  .artist__headshot {
    width: 200px;
    height: 200px;
  }
  .artist__headshot--inner {
    display: flex;
  }
  .artist__languages {
    flex-direction: row;
  }
  .artist__social {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .artist__top {
    flex-direction: column;
  }
  .artist__headshot {
    margin-bottom: 0;
  }
  .artist__languages {
    flex-direction: column;
  }
  .artist__left-sidebar__info {
    grid-template-columns: 1fr;
  }
  .artist__table__row {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .artist__work__section + .artist__work__section {
    margin-top: 25px;
  }
  .artist__suggested h2 {
    margin-left: 0;
  }
  .artist__suggested__cards {
    display: flex;
    flex-direction: column;
  }
}/*# sourceMappingURL=artists.css.map */