.recenze-banner {
  background-color: #f5f4f3;
  padding: 40px 20px 5px 20px;
  width: 100%;
  box-sizing: border-box;
}

.recenze-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.recenze-banner__header {
  text-align: center;
  margin-bottom: 36px;
}

.recenze-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.recenze-banner__label img {
  height: 18px;
  width: auto;
}

.recenze-banner__title {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.recenze-banner__stars-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.recenze-banner__stars-header .stars {
  color: #e8a838;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 0.5;
  margin-right: 20px;
  position: relative;
  top: 1px;
}

.recenze-banner__stars-header .score {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

.recenze-carousel {
  position: relative;
  overflow: hidden;
}

.recenze-carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

.recenze-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 28px 24px;
  flex: 0 0 calc(33.333% - 14px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
}

.recenze-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.recenze-card__stars {
  color: #e8a838;
  font-size: 17px;
  letter-spacing: 2px;
}

.recenze-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  flex: 1;
  font-style: italic;
}

.recenze-card__text::before {
  content: '\201E';
  font-size: 25px;
  line-height: 0;
  vertical-align: 0px;
  color: #e17ea9;
  margin-right: 2px;
  font-style: normal;
}

.recenze-card__text::after {
  content: '\201C';
  font-size: 25px;
  line-height: 0;
  vertical-align: -5px;
  color: #e17ea9;
  margin-left: 2px;
  font-style: normal;
}

.recenze-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0efee;
  padding-top: 14px;
  margin-top: auto;
}

.recenze-card__author {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.recenze-card__date {
  font-size: 12px;
  color: #aaa;
}


.recenze-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.recenze-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.recenze-carousel__btn:hover {
  border-color: #e17ea9;
  background: #fff0f5;
}

.recenze-carousel__btn svg {
  width: 16px;
  height: 16px;
  stroke: #555;
}

.recenze-carousel__btn:hover svg {
  stroke: #e17ea9;
}

.recenze-carousel__dots {
  display: flex;
  gap: 6px;
}

.recenze-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}

.recenze-carousel__dot.active {
  background: #e17ea9;
  transform: scale(1.25);
}


.recenze-banner__cta {
  text-align: center;
  margin-top: 36px;
}

.recenze-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid #333;
  color: #333;
  padding: 13px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.recenze-banner__btn:hover {
  background: #e17ea9;
  border-color: #e17ea9;
  color: #fff;
}

.recenze-banner__btn svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .recenze-card {
    flex: 0 0 calc(50% - 10px);
  }
}


@media (max-width: 600px) {
  .recenze-banner {
    padding: 10px 16px 40px 16px;
  }

  .recenze-banner__title {
    font-size: 22px;
  }

  .recenze-card {
    flex: 0 0 calc(100% - 0px);
  }

  .recenze-carousel__btn {
    display: none;
  }

 
  .recenze-banner__stars-header .stars {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1;
    top: 0;
  }


  .recenze-card__stars {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .recenze-banner__stars-header .stars {
  margin-right: 3px;
}
.recenze-card__stars .half-star-wrap {
  letter-spacing: 0;
}
}
