.main-content.works {
  background: #f4f7f5;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "smallbanner"
    "workscontainer";
}

.container.works {
  background: #f4f7f5;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2em 1fr 3em 340px;
  grid-template-rows: 2em minmax(min-content, max-content) 2em;
  grid-row-gap: 1em;
  grid-template-areas:
    "header header. ."
    ". workswrapper . aside"
    ". . . .";
  overflow-y: auto;
}

#aside {
  grid-area: aside;
}
.works-container {
  background: linear-gradient(to top, #4e4050, rgba(27, 26, 27, 0.8)),
    url("../images/magnetite.jpg") center no-repeat;
  background-size: cover;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.heading-orchestral-categories {
  grid-area: header;
  font-size: 1.2em;
  color: #999;
  display: flex;
  word-wrap: break-word;
  padding: 1em;
  align-self: end;
  padding-bottom: 60px;
}

#list_container {
  height: 100%;
  width: 100%;
  grid-area: workswrapper;
  word-wrap: break-word;
  padding-left: 1em;
  padding-right: 1em;
}
.center {
  text-align: center;
  padding: 2em 0;
}
.logo {
  width: 300px;
}
#list_container .work-item {
  margin-bottom: 1em;
}
#list_container .works-wrapper {
  margin-left: 1em;
}
.section-group-main-header {
  font-size: 1.5em;
  margin-bottom: 1em;
  margin-top: 5em;
}
#orchestra_main-header {
  margin-top: 0em;
}

#orchestra_main-header a {
  font-size: 1.2em;
}

#list_container .works-wrapper a {
  font-size: 1.2em;
  text-decoration: none;
  color: #8b6b90;
  transition: color 1s ease-in-out;
}
#list_container .works-wrapper a:focus,
#list_container a:visited {
  color: #8b6b90;
}
#list_container .works-wrapper a:hover {
  color: #8b6b90;
}
#list_container .work-line-detail {
  display: flex;
  margin: 0 0 1em 0;
}
#list_container span {
  font-size: 1.2em;
  margin-left: 0.5em;
}
#list_container span.year {
  margin-left: 0px;
}

#list_container .work-item .section-group-main-header {
  border-bottom: 1px dashed silver;
  margin-bottom: 1em;
  margin-top: 2em;
  padding-bottom: 0.5em;
  font-size: 1.2em;
}

#list_container .section-group {
  margin-top: 2em;
}

#list_container .section-group > header {
  margin-bottom: 1em;
  margin-top: 1em;
  padding-bottom: 0.5em;
  font-size: 1.2em;
}

.heading-orchestral-categories a {
  cursor: pointer;
  margin-right: 1em;
  transition: color 0.5s ease-in;
}

.heading-orchestral-categories a:hover {
  color: #4e4050;
}
@media screen and (min-width: 2400px) {
  .container.works {
    width: 55%;
  }
}
@media screen and (min-width: 2400px) {
  .container.works {
    width: 55%;
  }
}

@media (max-width: 680px) {
  .heading-orchestral-categories {
    width: 100%;
    display: block;
    font-size: 1em;
  }
}
@media (max-width: 1366px) {
  .container.works {
    display: grid;
    width: 100%;
    grid-template-columns: 1em 1fr 1em 340px;
  }
  .heading-orchestral-categories {
    font-size: 1.2em;
  }
}

@media (max-width: 1024px) {
  .container.works {
    display: flex;
    flex-direction: column;
  }
  .heading-orchestral-categories {
    font-size: 1.2em;
  }
}

@media (max-width: 767px) {
  .container.works {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .heading-orchestral-categories {
    font-size: 1em;
  }
}
