.l-header {
  background-color: #f9ffe6;
  min-height: 5.5rem;
  overflow: hidden;
  padding: 0 0.5rem;
}

.l-header-content {
  max-width: 90rem;
  margin: 0 auto;
}

.l-breadcrumb {
  background-color: #4a9836;
  overflow: hidden;
  min-height: 2.5rem;
}

.l-container {
  background-color: #FFFFFF;
}

.l-main,
.l-footer-content {
  max-width: 63.125rem;
  margin: 1rem auto;
  padding: 1rem;
}

body,
.l-footer {
  background-color: #4a9836;
}

.l-footer {
  min-height: 3rem;
  overflow: hidden;
  padding: 1rem;
}

@supports (display: grid) {
  .l-header > .l-header-content {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "logo navigation";
    grid-column-gap: 2rem;
    align-items: center;
  }

  .l-navigation {
    justify-self: end;
  }
}

@supports (display: flex) {
  .l-footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}

@media screen and (min-width: 30rem) {
  .l-header {
    padding: 0 1rem;
  }
}
