/* The shared base — normalize, fontface, global, site-header, cta, footer —
   is linked by Views/BaseTemplate.cshtml ahead of this file. */

.section-1 {
  max-width: 120rem;
  margin: auto;
  padding: 4rem 2.5rem;
  line-height: 1.5;
}

.section--title {
  line-height: 1.2;
}

.blog--post {
  margin-top: 3.5rem;
}

.blog--post-img {
  border: 0.1rem solid var(--light-gray);
  border-radius: 0.5rem;
  height: 28rem;
  overflow: hidden;
}

.blog--post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog--texts {
  max-width: 65rem;
  margin: auto;
  line-height: 1.5;
}

.blog--post-title {
  margin-bottom: 0.5rem;
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--dark-green);
}

.blog--post-author {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
}

.blog--texts .rte {
  margin-top: 1.6rem;   /* .rte zeroes its first child's margin, so space it off the byline */
}

.blog--post-date {
  font-size: 1.2rem;
  color: var(--normal-gray);
}


@media screen and (min-width: 1280px) {
  .blog--post {
    margin-top: 5rem;
  }

  .blog--post-img {
    height: 35rem;
  }

  .blog--texts {
    margin-top: 5rem;
  }
}
