.home__headline {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.25;
  margin-bottom: var(--space-l);
}

@media screen and (min-width: 576px) {
  .home__headline {
    font-size: 48px;
  }
}

.home__subheadline {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-xxl);
}

.home__posts {
  list-style: none;
  padding: 0;
}

.home__post-item {
  margin-bottom: var(--space-xxl);
}

.home__post-headline {
  margin-bottom: var(--space-xs);
}

.home__post-headline,
.home__post-headline a {
  text-decoration: none;
  font-size: 26px;
  color: var(--color-grey-500);
  line-height: 1.25;
  font-weight: 600;
}

.home__post-meta {
  margin-bottom: var(--space-l);
}

.home__post-excerpt {
  margin-top: 0;
  margin-bottom: var(--space-m);
}

.home__post-link {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-l);
  font-weight: 600;
  text-decoration: none;
  color: var(--color-grey-500);
}

.home__post-link::before {
  content: '>> @';
  color: var(--color-secondary);
}

.home__post-link-label {
  position: relative;
}

.home__post-link-label:hover::after {
  transform: scaleY(4);
}

.home__post-link-label::after {
  content: '';
  position: absolute;
  width: 100%;
  background-color: var(--color-grey-300);
  height: 4px;
  bottom: -8px;
  left: 0;
  z-index: -1;
  transform-origin: center bottom 0;
  transition: transform 100ms ease-in 0s;
}

@media screen and (min-width: 576px) {
  .home__post-headline,
  .home__post-headline a {
    font-size: 30px;
  }

  .home__post-meta {
    display: flex;
  }
}
