/* SEHS / Shoptet - Shop reviews on product detail (isolated) */
.sehs-votes {
  margin: 30px 0;
  padding: 0;
}

.sehs-votes__title {
  margin: 0 0 14px 0;
  text-align: center;
  font-size: 24px;
  line-height: 26.4px;
}

.sehs-votes__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

@media (max-width: 560px) {
  .sehs-votes__grid {
    grid-template-columns: 1fr;
  }
}

.sehs-votes__card {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sehs-votes__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sehs-votes__name {
  font-weight: 800;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.sehs-votes__stars {
  display: inline-flex;
  gap: 4px;
  color: #e5c35f;
}

.sehs-votes__star {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.sehs-votes__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sehs-votes__ctaWrap {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.sehs-votes__btn {
    border-radius: 10px;
    padding: 10px 30px;
    background: #01161e;
    color: white !important;
    font-weight: 800;
    margin-top: 20px !important;
    display: inline-block;
    transition: all 0.5s ease;
    cursor: pointer;
}

.sehs-votes__btn:hover {
    background: #e5e5e5;
    color: #01161e !important;
}
