/* Blog preview — home page */
.component--blog-home {
  background: #fff;
  color: #111;
  padding: 6vw 0 7vw;
}

.blog-home__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 3vw;
  flex-wrap: wrap;
}

.blog-home__intro {
  max-width: 640px;
}

.blog-home__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
}

.blog-home__title {
  margin: 0;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.blog-home__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: #141414;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}

.blog-home__link:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .component--blog-home {
    padding: 18vw 0 16vw;
  }

  .blog-home__head {
    margin-bottom: 8vw;
  }
}
