.artists-div h1 {
    color: #299CF4;
    font-family: Poppins;
    font-size: 24px;
    font-weight:bolder;
    text-align: center;
}
.artists-div h2 {
    color: #299CF4;
    font-family: Poppins;
    font-size: 24px;
    font-weight:bolder;
    text-align: left;
}
.artists-div p {
    color: #777777;
    font-family: sans-serif;
    font-size: 18px;
    text-align: center;
    margin: 18px 0 0;
}
.srtists-div p2 {
    color: #777777;
    font-family: sans-serif;
    font-size: 18px;
    text-align: left;
    margin: 18px 0 0;
}

.artists-div {
    display: block;
    box-sizing: border-box;
    background-color: white;
    max-width: 800px;
    margin: auto;
}

.artists-section {

    width: 100%;
    height: 340px;
    background-color: white;
}
/* Fixes structural clipping and forces the artist container to clean layout boundaries */
.artists-section {
  clear: both !important;
  overflow: hidden !important;
  display: block !important;
  width: 100% !important;
}

/* Forces the artist cards to stay inside a flexible container without pushing down into the Team block */
.artists-div .container-fluid {
  width: 100% !important;
  display: block !important;
  clear: both !important;
  padding: 0 15px !important;
}

/* Resolves horizontal alignment issues and guarantees the row behaves cleanly as a flex box */
.artists-div .row {
  margin: 0 auto !important;
  clear: both !important;
  display: flex !important;
  flex-wrap: wrap !important;
}

/* Places clear margin boundaries back onto the Team block so nothing can ever crawl under it */
.team-section {
  clear: both !important;
  display: block !important;
  position: relative !important;
  margin-top: 50px !important;
}