/* ==========================================================================
   Blog Description + Author Box sections (Insights page, under the blog list)
   Loaded via functions.php -> mb-insights-sections handle.
   Typography comes from custom189.css (p.subhead, span.italic); only layout
   and spacing are set here.
   ========================================================================== */

/* --- Blog Description ---------------------------------------------------- */

.blog-description {
  padding: 10px 0 0;
}

.blog-description-inner h2 {
  margin-bottom: 40px;
}

.blog-description-inner > :first-child {
  margin-top: 0;
}

.blog-description-inner > :last-child {
  margin-bottom: 0;
}

/* --- Author Box ---------------------------------------------------------- */

.author-box {
  padding: 30px 0 60px;
  margin-top: 40px;
}

.author-box .author-box-inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.author-box .author__img-bottom {
  flex: 0 0 150px;
}

.author-box .author__img-bottom img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.author-box .author-box-text {
  flex: 1 1 auto;
  min-width: 0;
}

.author-box .subhead {
  margin: 0 0 12px;
}

.author-box .italic {
  display: block;
}

@media (max-width: 767px) {
  .author-box {
    padding: 20px 0 40px;
  }

  .author-box .author-box-inner {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .author-box .author-box-inner {
    flex-direction: column;
  }
  .author__img-bottom {
    margin-left: auto;
    margin-right: auto;
  }
}
