.wgm-google-reviews {
  position: relative;
  overflow: hidden;
  background: #f7f8fa;
  border-bottom: 1px solid #e4e8ec;
}

.wgm-google-reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d9dfe4;
  gap: 28px;
}

.wgm-google-reviews__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #c8a24d;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wgm-google-reviews__header h2 {
  margin: 0;
  color: #0f3d66;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wgm-google-reviews__header-side,
.wgm-google-reviews__source,
.wgm-google-reviews__controls {
  display: flex;
  align-items: center;
}

.wgm-google-reviews__header-side {
  gap: 20px;
}

.wgm-google-reviews__source {
  color: #34495a;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
}

.wgm-google-reviews__google,
.wgm-google-review-card__google {
  display: block;
  object-fit: contain;
}

.wgm-google-reviews__google {
  width: 31px;
  height: 31px;
}

.wgm-google-reviews__controls {
  gap: 8px;
}

.wgm-google-reviews__controls button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #0f3d66;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.wgm-google-reviews__controls button:first-child {
  background: #c8a24d;
}

.wgm-google-reviews__controls button:hover,
.wgm-google-reviews__controls button:focus-visible {
  background: #102f49;
  transform: translateY(-2px);
}

.wgm-google-reviews__swiper {
  overflow: hidden;
  padding: 3px 2px 22px;
}

.wgm-google-reviews__swiper .swiper-wrapper {
  align-items: stretch;
}

.wgm-google-review-card {
  display: flex;
  height: auto;
  min-height: 315px;
  padding: 23px 21px 25px;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e0e4e8;
  border-radius: 10px;
  box-shadow: 0 9px 28px rgba(15, 61, 102, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.wgm-google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 36px rgba(15, 61, 102, 0.12);
}

.wgm-google-review-card__author {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 11px;
}

.wgm-google-review-card__avatar {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #2f6e9c;
  border-radius: 50%;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.wgm-google-review-card__avatar--2 { background: #7855a5; }
.wgm-google-review-card__avatar--3 { background: #3d8267; }
.wgm-google-review-card__avatar--4 { background: #a96743; }

.wgm-google-review-card__identity {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.wgm-google-review-card__identity strong {
  overflow: hidden;
  color: #1f2933;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wgm-google-review-card__identity small {
  color: #7a8792;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.35;
}

.wgm-google-review-card__google {
  width: 26px;
  height: 26px;
}

.wgm-google-review-card__stars {
  display: flex;
  margin-top: 18px;
  color: #fbbc04;
  font-size: 13px;
  gap: 3px;
}

.wgm-google-review-card > p {
  margin: 16px 0 0;
  color: #465765;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.wgm-google-reviews__pagination {
  position: static;
  display: flex;
  width: auto;
  min-height: 12px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.wgm-google-reviews__pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  background: #a9b5be;
  opacity: 1;
  transition: width 180ms ease, background-color 180ms ease;
}

.wgm-google-reviews__pagination .swiper-pagination-bullet-active {
  width: 25px;
  background: #c8a24d;
  border-radius: 999px;
}

@media (max-width: 767.98px) {
  .wgm-google-reviews__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .wgm-google-reviews__header-side {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 479.98px) {
  .wgm-google-reviews__header h2 {
    font-size: 32px;
  }

  .wgm-google-reviews__source > span:last-child {
    display: none;
  }

  .wgm-google-review-card {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wgm-google-review-card,
  .wgm-google-reviews__controls button {
    transition: none;
  }
}
