.kh2-posts-overview {
  margin: 64px 0;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.kh2-posts-overview__list {
  display: grid;
  gap: 24px;
}

.kh2-posts-overview__item {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 20px;
  border-radius: 20px;
  background: #efefef;
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.kh2-posts-overview__item--no-image {
  grid-template-columns: minmax(0, 1fr);
}

.kh2-posts-overview__item:hover,
.kh2-posts-overview__item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 8px 10px 20px rgba(0, 0, 0, 0.14);
}

.kh2-posts-overview__image {
  width: 200px;
  min-height: 160px;
  height: 100%;
  max-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background: #d9d9d9;
}

.kh2-posts-overview__image-tag {
  width: 100%;
  height: 100%;
  min-height: 160px;
  max-height: 500px;
}

.kh2-posts-overview__image-tag {
  display: block;
  object-fit: cover;
}

.kh2-posts-overview__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kh2-posts-overview__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.kh2-posts-overview__category {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kh2-posts-overview__title {
  margin: 0;
  color: #002e2d;
  font-size: 28px;
  line-height: 1.2;
}

.kh2-posts-overview__info {
  color: #003838;
  font-size: 18px;
  line-height: 1.55;
}

.kh2-posts-overview__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.kh2-posts-overview__link-label {
  display: inline-block;
  color: #002e2d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.kh2-posts-overview__date {
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.4;
}

.kh2-posts-overview__empty {
  padding: 20px;
  border-radius: 16px;
  background: #efefef;
  color: #555555;
}

@media only screen and (max-width: 768px) {
  .kh2-posts-overview {
    margin: 48px 0;
  }

  .kh2-posts-overview__item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .kh2-posts-overview__image {
    width: 100%;
    min-height: 220px;
    height: clamp(220px, 42vw, 360px);
    max-height: 500px;
  }

  .kh2-posts-overview__title {
    font-size: 24px;
  }

  .kh2-posts-overview__info {
    font-size: 16px;
  }
}
