.ns-kiyoh-reviews {
  padding: 48px 0;
  padding-bottom:0;
  overflow: hidden;
}

.homepage-kiyoh-reviews__title {
  font-size: 2rem !important;
}

.ns-kiyoh-reviews__swiper {
  width: 100%;
  overflow: visible;
}

.ns-kiyoh-reviews__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.ns-kiyoh-review-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #dfe3e9;
  border-radius: 13px;                 /* was 16px */
  box-shadow: 0 6px 19px rgba(22, 35, 58, 0.08); /* was 0 8px 24px */
  overflow: hidden;
  /* transform: scale(0.8);  <-- removed */
}

.ns-kiyoh-review-card__score {
  position: absolute;
  top: 13px;         /* was 16px */
  right: 13px;        /* was 16px */
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;         /* was 42px */
  height: 34px;        /* was 42px */
  border-radius: 50%;
  background: #e9632a;
  color: #fff;
  font-size: 13px;      /* was 16px */
  font-weight: 700;
  line-height: 1;
}

.ns-kiyoh-review-card__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 18px;         /* was 22px */
}

.ns-kiyoh-review-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 42px 13px 0;  /* was 0 52px 16px 0 */
}

.ns-kiyoh-review-card__star {
  color: #d7dce3;
  font-size: 16px;        /* was 20px */
  line-height: 1;
}

.ns-kiyoh-review-card__star--active {
  color: #f5a623;
}

.ns-kiyoh-review-card__title {
  margin: 0 0 8px;        /* was 0 0 10px */
  color: #16233a;
  font-size: 14px;        /* was 17px */
  font-weight: 700;
  line-height: 1.35;
}

.ns-kiyoh-review-card__body {
  display: -webkit-box;
  margin: 0 0 18px;       /* was 0 0 22px */
  overflow: hidden;
  color: #4b5a72;
  font-size: 11px;        /* was 14px */
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.ns-kiyoh-review-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 13px;              /* was 16px */
  margin-top: auto;
  padding-top: 13px;      /* was 16px */
  border-top: 1px solid #e8ebef;
  color: #8792a2;
  font-size: 10px;        /* was 13px */
}

.ns-kiyoh-review-card__footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;               /* was 5px */
  min-width: 0;
}

.ns-kiyoh-review-card__footer time {
  white-space: nowrap;
}

.ns-kiyoh-review-card__footer strong {
  color: #16233a;
  font-weight: 600;
  text-align: left;
}

.ns-kiyoh-review-card__logo-link {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
  border-radius: 4px;
}

.ns-kiyoh-review-card__logo-link:focus-visible {
  outline: 2px solid #e9632a;
  outline-offset: 4px;
}

.ns-kiyoh-review-card__logo {
  display: block;
  width: 34px;             /* was 42px */
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.ns-kiyoh-reviews__pagination {
  display: none;
}

.ns-kiyoh-value--loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25em;
  min-height: 1em;
  vertical-align: middle;
}

.ns-kiyoh-spinner {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0.55;
  animation: ns-kiyoh-spin 0.7s linear infinite;
}

@keyframes ns-kiyoh-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ns-kiyoh-spinner {
    animation-duration: 1.5s;
  }
}

@media (max-width: 1399.98px) {
  .ns-kiyoh-reviews__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .homepage-kiyoh-reviews__title {
    font-size: 1.5rem !important;
  }

}

@media (max-width: 1199.98px) {
  .ns-kiyoh-reviews__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .ns-kiyoh-reviews__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ns-kiyoh-reviews {
    padding: 32px 0;
    overflow: hidden;
  }

  .ns-kiyoh-reviews__swiper {
    width: 100%;
    overflow: hidden;
  }

  .ns-kiyoh-reviews__list {
    display: flex;
    grid-template-columns: none;
    gap: 0;
  }

  .ns-kiyoh-review-card.swiper-slide {
    flex: 0 0 100%;
    width: 100% !important;
    min-width: 100%;
    height: auto;
  }

  .ns-kiyoh-review-card__content {
    padding: 20px;
  }

  .ns-kiyoh-review-card__body {
    -webkit-line-clamp: 8;
  }

  .ns-kiyoh-reviews__pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 12px;
    margin-top: 18px;
  }

  .ns-kiyoh-reviews__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #c8ced8;
    opacity: 1;
  }

  .ns-kiyoh-reviews__pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 999px;
    background: #e9632a;
  }
}

@media (max-width: 575.98px) {
  .ns-kiyoh-review-card__score {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .ns-kiyoh-review-card__content {
    padding: 18px;
  }

  .ns-kiyoh-review-card__stars {
    margin-right: 48px;
  }

  .ns-kiyoh-review-card__footer {
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
  }

  .ns-kiyoh-review-card__logo {
    width: 38px;
  }
}