.blog-hero {
  background: #ffffff;
}

.blog-hero-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 40px;
}

.blog-wordmark {
  display: block;
  margin: 0 auto 32px auto;
  max-height: 40px;
}

.blog-heading {
  font-family: 'Gulzar', serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -0.125rem;
  margin: 0;
  padding: 0 0 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* wrapper around list */

.blog-list-wrapper {
  max-width: 960px;
  margin: 0 auto 80px auto;
}

/* each row */

.blog-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-list-main {
  flex: 1 1 auto;
  min-width: 0;
}

/* title */

.blog-list-title {
  display: inline-block;
  font-family: 'Gulzar', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.3;
  text-decoration: none;
  margin-bottom: 8px;
}

.blog-list-title:hover {
  text-decoration: underline;
}

/* excerpt */

.blog-list-excerpt {
  font-family:
    'Golos Text',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #222;
}

/* meta (right column) */

.blog-list-meta {
  flex: 0 0 auto;
  font-family:
    'Golos Text',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 14px;
  color: #555;
  white-space: nowrap;
  text-align: right;
  margin-top: 4px;
}

.blog-list-dot {
  padding: 0 4px;
}

/* footer active state for blog link */

.pq-footer-link-active {
  opacity: 1;
  font-weight: 500;
}

/* responsive */

@media (max-width: 900px) {
  .blog-hero-wrapper,
  .blog-list-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-heading {
    font-size: 34px;
  }

  .blog-list-item {
    flex-direction: column;
    gap: 16px;
  }

  .blog-list-meta {
    text-align: left;
    white-space: normal;
  }
}
