.kk-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.kk-results__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(34, 51, 130, 0.12);
  border-radius: 14px;
  background: #fff;
}
.kk-results__thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f1ec;
  aspect-ratio: 3 / 4;
}
.kk-results__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kk-results__tool {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c6480;
}
.kk-results__title {
  margin: 0.15rem 0;
  font-size: 1.05rem;
  color: #223382;
}
.kk-results__meta {
  margin: 0;
  font-size: 0.85rem;
  color: #5c6480;
}
.kk-results__actions {
  margin: 0.35rem 0 0;
}

.kk-results__thumb--video {
  display: block;
  background: #1a1a1a;
}
.kk-results__thumb--video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}
.kk-results__thumb--audio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #f3f0ea;
  box-sizing: border-box;
}
.kk-results__thumb--audio audio {
  width: 100%;
  max-width: 100%;
}
.kk-results__card--video .kk-results__thumb,
.kk-results__card--audio .kk-results__thumb {
  min-height: 140px;
}
