.content-wrapper {
  display: grid;
  grid-template-areas: 
    "jumbotron jumbotron"
    "header links";
  grid-template-columns: 1fr 1fr;
  column-gap: var(--ty-fu-gap, 30px);
}

@media only screen and (max-width: 989px) {
  
  .content-wrapper {
    display: grid;
    grid-template-areas: 
      "jumbotron"
      "header"
      "links";
    grid-template-columns: 1fr;
    column-gap: var(--ty-fu-gap, 30px);
  }

}



/* *** JUMBOTRON *** */

.container-jumbotron {
  grid-area: jumbotron;
  position: relative;
  background-image: url(../../../resources/images/toroll/toroll-header.jpg);
  background-position: center center;
  background-size: cover;
;
}

.container-jumbotron__heading {
  height: 300px;
  padding-top: 65px;
  padding-left: 65px;
  padding-right: 45px;
  color: var(--ty-fu-color-base-white, #fff);
}

.container-jumbotron__heading__primary {
  font-size: 48px;
  font-family: "SourceSansPro-semibold", Arial, Helvetica, sans-serif;
  margin-bottom: var(--ty-fu-gap, 30px);
}

.container-jumbotron__heading__secondary {
  font-family: 'SourceSansPro-regular', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 27px;
  max-width: 400px;
}

.container-jumbotron__picture-credit-container {
  position: absolute;
  padding: 0 6px;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,.5);
  color: rgba(255,255,255,.7);
  text-align: right;
  font-size: 13px;
  line-height: 19.5px;
}

.container-jumbotron__picture-credit-container a {
  color: rgba(255,255,255,.7);
}



/* *** (WIP) LINK TILES *** */

.container-service-links {
  grid-area: links;
  display: flex;
  flex-direction: column;
  padding-top: 5.5rem;
}

@media only screen and (max-width: 989px) {
  
  .container-service-links {
    grid-area: links;
    display: flex;
    flex-direction: row;
    padding-top: 1rem;
  }

}

.link-button a {
  display: block;
  float: left;
  clear: left;
  margin-bottom: 20px;
  padding: 10px 15px;
  border-width: 1px;
  border-style: solid;
  border-color: #004659;
  background-color: transparent;
  color: #004659;
  font-family: "SourceSansPro-semibold", Arial, Helvetica, sans-serif;
  text-decoration: none !important;
  transition: background-color .1s linear,color .1s linear,border-color .1s linear;
}

@media only screen and (max-width: 989px) {
  
  .link-button a {
    margin-bottom: 0;
    margin-right: 20px;
  }

}

.link-button a:hover, 
.link-button a:focus {
  color: #fff;
  background-color: #004659 !important;
  border-color: #004659 !important;
  text-decoration: none !important;
  transition: background-color .1s linear,color .1s linear,border-color .1s linear;
}



/* *** SERVICE HEADER *** */

.container-service-header {
  grid-area: header;
  padding-top: 1rem;
}
