.ArtistInfoBlock {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-flow: row nowrap;
  align-items: stretch;
  align-content: stretch;
  overflow: hidden;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .ArtistInfoBlock {
    flex-flow: row wrap;
  }
}
.ArtistInfoBlock_col {
  flex: 0 0 50%;
  display: flex;
  flex-flow: column;
  border: 1px solid var(--mainColor--black);
}
@media only screen and (max-width: 768px) {
  .ArtistInfoBlock_col {
    flex-basis: 100%;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .ArtistInfoBlock_col:first-of-type {
    border-right: unset;
  }
}
@media only screen and (max-width: 768px) and (orientation: landscape) {
  .ArtistInfoBlock_col:first-of-type {
    border-right: unset;
  }
}
.ArtistInfoBlock_col-header {
  line-height: 1.200;
  color: var(--mainColor--black);
  padding: 38px;
  font-family: 'neue-haas-grotesk-display';
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .ArtistInfoBlock_col-header {
    padding: 15px 0 15px 16px;
  }
}
.ArtistInfoBlock_col-header_subTitle {
  font-size: 26px;
}
@media only screen and (max-width: 768px) {
  .ArtistInfoBlock_col-header_subTitle {
    font-size: 14px !important;
  }
}
.ArtistInfoBlock_col-header_Title {
  font-size: 55px;
}
@media only screen and (max-width: 768px) {
  .ArtistInfoBlock_col-header_Title {
    font-size: 30px !important;
  }
}
.ArtistInfoBlock_col-content {
  flex: 1 0 auto;
  background-color: var(--mainColor--black);
  color: #fff;
  font-size: 16px;
  line-height: 1.375;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.ArtistInfoBlock_col-content_text {
  padding: 58px 102px 43px 38px;
}
@media only screen and (max-width: 768px) {
  .ArtistInfoBlock_col-content_text {
    padding: 15px 60px 15px 16px;
    font-size: 13px !important;
  }
}
.ArtistInfoBlock_col-content_button {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 43px;
}
.ArtistInfoBlock_col-content_button-anchor {
  font-size: 17px;
  line-height: 1.176em;
  color: #fff;
  border: 1px solid #fff;
  margin-right: 39px;
  padding: 0.882em 2.353em 1em;
}
.ArtistInfoBlock_col-content_button-anchor:hover,
.ArtistInfoBlock_col-content_button-anchor:active,
.ArtistInfoBlock_col-content_button-anchor:focus,
.ArtistInfoBlock_col-content_button-anchor:visited {
  color: inherit;
}
.ArtistInfoBlock_col--img__wrapper {
  display: block;
  height: 0;
  width: 100%;
  flex: 1 1 10%;
  position: relative;
}
.ArtistInfoBlock_col--img__wrapper--sizer {
  width: 100%;
  height: 0;
  padding-bottom: 82.566%;
}
.ArtistInfoBlock_col--img__wrapper--img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.ArtistInfoBlock_col--img__wrapper--video {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .ArtistInfoBlock_col--img {
    border: none;
  }
}
.ArtistInfoBlock-mediaLinks {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  padding: 50px 0 46px 0;
  background: var(--mainColor--black);
}
@media only screen and (max-width: 768px) {
  .ArtistInfoBlock-mediaLinks {
    padding: 27px 0;
  }
}
.ArtistInfoBlock-mediaLinks_anchor {
  display: block;
  box-sizing: border-box;
}
