:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

.a-blog__header {
  height: 400px;
  position: relative;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-blog__header:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  content: "";
}
.a-blog .a-container {
  position: relative;
  z-index: 2;
}
.a-blog__title {
  font-size: 1.75rem;
  line-height: 2.125rem;
  font-weight: 900;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .a-blog__title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.a-blog__date {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.625rem;
  margin: 20px 0 0 0;
}
.a-blog__icon {
  flex: 0 0 16px;
  max-width: 16px;
  margin: 0 12px 0 0;
}
.a-blog__posts {
  padding: 32px 0 48px;
  background: #f3fbff;
}
@media only screen and (min-width: 768px) {
  .a-blog__posts {
    padding: 48px 0 56px;
  }
}
@media only screen and (min-width: 1025px) {
  .a-blog__posts {
    padding: 64px 0 96px;
  }
}
.a-blog__posts h2.a-title {
  text-align: left;
}
.a-blog__posts h2.a-title:after {
  margin: 20px 0 0 0;
}