.banner {
    width: 100vw;
    position: absolute;
    background-size: cover;
    left: 0;
    top: 70px;
    z-index: -1;
    color: #fff;
    height: 25vw;
    display: block;
    background-position: center;
}
.banner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(rgba(255,255,255,0), white);
}
section h1 {
    text-shadow: 2px 2px 1px rgba(35, 86, 164, 0.5);
}
.title {
    text-align: center;
    color: #fff;
}
.title h1:before {
    display: none;
}
article {
    display: grid;
    grid-template-columns: 55% calc(45% - 40px);
    grid-gap: 0px 40px;
    padding: 90px;
    line-height: 1.5;
}
article p:not(:last-of-type) {
    margin-bottom: 10px;
}
article > div:not(:last-of-type) {
    margin-bottom: 40px;
}
article h3 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 1.3vw;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    z-index: 1;
    text-decoration: none;
    color: black;
}
article h3:before {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 8%;
    height: 16%;
    background: #2256a4;
    left: 0;
    z-index: -1;
}
.image {
    grid-area: 1 / 1 / span 1 / span 1;
    align-self: center;
}
.image.se {
    grid-area: 1 / 1 / span 1 / span 2;
}
.map {
    border: none;
    width: 100%;
    height: 200px;
}
.description {
    grid-area: 2 / 1 / span 1 / span 2;
    text-align: center;
}
.people {
    grid-area: 3 / 1 / span 1 / span 2;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}
.people img {
    border-radius: 50%;
    width: 200px;
    margin: 15px;
    display: block;
}
.people > div {
    display: inline-block;
    margin: 0 15px;
}
.playlist {
    grid-area: 4 / 1 / span 1 / span 2;
}
.playlist iframe {
    border: none;
    width: 100%;
    height: 400px;
}
@media only screen and (max-width: 1100px) {
  .image {
    grid-area: 1 / 1 / span 1 / span 2;
  }
  .ensemble-info {
    grid-area: 2 / 1 / span 1 / span 2;
    
  }
  .ensemble-info > div {
    display: grid;
    grid-template-columns: 60% calc(40% - 40px);
    grid-gap: 0 40px;
  }
  .deets {
    grid-area: 1 / 2 / span 1 / span 1;
  }
  .venue-map {
    grid-area: 1 / 1 / span 1 / span 1;
  }
  .description {
    grid-area: 3 / 1 / span 1 / span 2;
  }
  .people {
    grid-area: 4 / 1 / span 1 / span 2;
  }
  .playlist {
    grid-area: 5 / 1 / span 1 / span 2;
  }
}
@media only screen and (max-width: 950px) {
    section {
        margin-top: 70px;
    }
    .banner {
        height: 55vh;
    }
    article {
        padding: 0;
        font-size: 1em;
    }
    section h1 {
        margin-bottom: 40px;
        font-size: 40px;
    }
    .playlist iframe {
        height: 250px;
    }
    .people img {
        width: 130px;
        margin: 10px;
    }
    article h3 {
        font-size: 1.1em;
        margin-bottom: 0;
    }
    .deets {
        grid-area: 1 / 1 / span 1 / span 2;
        text-align: center;
        font-size: 0.9em;
    }
    .venue-map {
        grid-area: 2 / 1 / span 1 / span 2;
        margin-top: 40px;
    }
    article p:not(:last-of-type) {
        margin-bottom: 5px;
    }
}