.wr-wrap {
  margin: 1.5rem 0 0;
}

.wr-heading {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.wr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wr-card {
  min-width: 0;
}

.wr-card-link {
  color: inherit;
  text-decoration: none;
}

.wr-thumb-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #f5f5f5;
}

.wr-thumb-wrap::before {
  content: "";
  display: block;
  padding-top: 141%;
}

.wr-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wr-thumb-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #555;
  background: #e9e9e9;
}

.wr-title {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.wr-empty {
  margin: 0;
}

@media (max-width: 767px) {
  .wr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
