/*
.lb-rating-widget {
    width: 100%;
    background-color: #f0f6f1;
    border-radius: 12px;
    padding: 24px 20px;
    margin: 24px 0 0 0;
}
.lb-rating-widget__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.lb-rating-widget__logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: contain;
    padding: 4px;
}
.lb-rating-widget__title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}
.lb-rating-widget__summary {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.lb-rating-stars {
    display: inline-flex;
    position: relative;
    font-size: 20px;
    line-height: 1;
}
.lb-rating-stars__bg,
.lb-rating-stars__fg { white-space: nowrap; }
.lb-rating-stars__bg { color: #d3ddd0; }
.lb-rating-stars__fg {
    color: #e5b322;
    position: absolute;
    top: 0; left: 0;
    overflow: hidden;
}
.lb-rating-widget__score { font-size: 14px; color: #333; white-space: nowrap; }
.lb-rating-widget__link {
    font-size: 14px;
    color: #353535;
    border-bottom: 1px solid #353535;
    text-decoration: none;
    padding-bottom: 1px;
    white-space: nowrap;
}
.lb-rating-widget__link:hover { color: #000; border-color: #000; }
.lb-rating-widget__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
}
.lb-rating-card {
    background: #fff;
    border: 1px solid #d3ddd0;
    border-radius: 12px;
    padding: 18px 20px;
    flex: 1 1 0;
    min-width: 160px;
}
.lb-rating-card .lb-rating-stars { font-size: 15px; margin-bottom: 8px; }
.lb-rating-card__name {
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}
.lb-rating-card__text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}
.lb-rating-widget__footer { text-align: center; margin-top: 20px; }
.lb-rating-widget__footer .lb-rating-widget__link { font-size: 15px; }

@media (max-width: 767px) {
    .lb-rating-widget { padding: 20px; }
    .lb-rating-widget__cards { flex-direction: column; }
    .lb-rating-card { min-width: 0; }
}
*/


.lb-heureka-bar {
  width: 100%;
  background: #f0f6f1;
  padding: 48px 32px;
  box-sizing: border-box;
}
.lb-heureka-bar * { box-sizing: border-box; }

.lb-heureka-bar__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.lb-heureka-bar__header-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lb-heureka-bar__score {
  font-size: 64px;
  font-weight: 700;
  color: #1f3d2b;
  line-height: 1;
}
.lb-heureka-bar__score-suffix {
  font-size: 20px;
  font-weight: 400;
  color: #4c6b56;
  margin-left: 4px;
}

.lb-heureka-bar__heading {
  font-size: 20px !important;
  font-weight: 600;
  color: #151515;
  margin: 0;
}

.lb-heureka-bar__link {
  font-size: 14px !important;
  color: #1f3d2b;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lb-heureka-bar__link:hover,
.lb-heureka-bar__link:focus {
  color: #1f3d2b !important;
  text-decoration: none;
}

.lb-heureka-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.lb-rating-stars {
  font-size: 18px !important;
  margin-bottom: 14px;
}

.lb-heureka-bar__text {
  font-size: 16px !important;
  font-style: italic;
  line-height: 1.5;
  color: #2b2b2b;
  margin: 0 0 16px;
}

.lb-heureka-bar__name {
  font-size: 15px !important;
  color: #151515;
  margin: 0;
}

.lb-heureka-bar__verified {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #151515;
  cursor: pointer;
  padding: 2px 6px;
  margin: -2px -6px;
  border-radius: 6px;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  transition: background-color .15s;
}
.lb-heureka-bar__verified:hover,
.lb-heureka-bar__verified:focus {
  background-color: rgba(31, 61, 43, 0.08);
}
.lb-heureka-bar__verified svg { width: 16px; height: 16px; flex-shrink: 0; }

.lb-heureka-bar__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #1f3d2b;
  color: #fff;
  font-weight: 400;
  font-size: 13px !important;
  line-height: 1.6;
  padding: 10px 12px;
  border-radius: 8px;
  width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s;
  z-index: 5;
  text-decoration: none;
}
.lb-heureka-bar__verified:hover .lb-heureka-bar__tooltip,
.lb-heureka-bar__verified:focus .lb-heureka-bar__tooltip,
.lb-heureka-bar__verified.is-active .lb-heureka-bar__tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .lb-heureka-bar { padding: 36px 20px; }
  .lb-heureka-bar__score { font-size: 56px !important; }
  .lb-heureka-bar__header {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .lb-heureka-bar__header-text { text-align: center; }
  .lb-heureka-bar__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}