.home-content {
  padding-top: 1.9rem;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(230px, 270px);
  min-height: 240px;
  align-items: flex-end;
  justify-content: start;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: 1.2vh 0 2.6rem;
}

.home-hero-copy {
  min-width: 0;
}

.home-now {
  width: 100%;
  padding-bottom: 1.15rem;
  color: #536159;
}

.home-now-title {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0 0 1.25rem;
  color: var(--forest);
  font-family: Inter, "Noto Sans SC", system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1;
}

.home-now-title::after {
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.home-now-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.home-now-list dt {
  margin-bottom: .15rem;
  color: var(--moss);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.home-now-list dd {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 1.02rem;
  line-height: 1.55;
}

.home-now-foot {
  display: flex;
  gap: .45rem;
  margin: 1.3rem 0 0;
  color: var(--moss);
  font-size: .82rem;
  letter-spacing: .08em;
}

.home-posts {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.home-post-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 225px;
  padding: 1.15rem;
}

.home-post-meta {
  min-height: 1.4rem;
}

.home-post-title {
  display: -webkit-box;
  min-height: 3rem;
  margin: .7rem 0 .45rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.home-post-summary {
  display: -webkit-box;
  min-height: 3.3rem;
  margin: 0 0 .8rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.home-post-action {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 760px) {
  .home-hero {
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 2rem;
  }

  .home-now-list dd {
    font-size: .82rem;
  }
}

@media (max-width: 600px) {
  .home-content {
    padding-top: 1rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1rem;
    padding: .5rem 0 2rem;
  }

  .home-now {
    width: min(100%, 360px);
    padding: .4rem 0 0;
  }

  .home-post-card {
    min-height: 215px;
  }
}
