header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

@media (min-width: 1280px) {
  header.container {
    max-width: 950px;
  }
}

.logo {
  font-size: 32px;
  color: var(--pico-h1-color);
  text-decoration: none;
}

.icon {
  height: 18px;
  width: 18px;
}

.footer {
  background-color: #f8f8fc;
  padding: 40px 0;
}

.footer a {
  margin-left: 12px;
}

@media (min-width: 1280px) {
  .footer .container {
    max-width: 950px;
  }
}

@media (min-width: 1024px) {
  main.container {
    max-width: 950px;
  }
}

.home-page .about-me-section {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .home-page .about-me-section {
    margin-bottom: 100px;
  }
}

.blog-post-date {
  font-size: 14px;
}

@media (min-width: 1024px) {
  main.container.blog-post {
    max-width: 700px;
  }
}

.blog-post img {
  display: block;
  width: 100%;
  margin-bottom: var(--pico-spacing);
}

.blog-post-list-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-gap: 40px;
  align-items: center;
}

.blog-post-list-item .blog-post-image {
  align-self: center;
  display: none;
}

@media (min-width: 768px) {
  .blog-post-list-item {
    grid-template-columns: 170px 1fr;
  }

  .blog-post-list-item .blog-post-image {
    display: block;
  }
}

.about-me-teaser {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-gap: 20px;
}

.about-me-teaser .author-short-description {
  text-align: center;
  font-weight: 200;
  order: 1;
}

.about-me-teaser .author-short-description b {
  font-weight: bold;
}

.about-me-teaser .author-image {
  width: 140px;
  height: 140px;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  border-radius: 70px;
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: center;
}

@media (min-width: 768px) {
  .about-me-teaser {
    grid-template-columns: 2fr 1fr;
    grid-gap: 0;
  }

  .about-me-teaser .author-short-description {
    order: 0;
    align-self: center;
    margin-bottom: 0;
    text-align: left;
  }
}
