/*!
 * Steel Tongue Drum | Featured review card styles
 * Store: US   Product: STD
 * Source: Kiddospace-CDN / Stores/US/Product-STD/css/steeldrum-review-carousel.css
 * Maintained by Tulon S. Avi. Make changes in the repo, not in the theme.
 *
 * All review card styles live here, including the desktop/mobile switch.
 * The card renders twice on the page (drum-review--desktop in the media column,
 * drum-review--mobile under add to cart); only one is visible at a time.
 */

.drum-review {
  display: block;
  clear: both;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  margin: 100px 0 0;
  padding: 28px 26px;
  background: #E6F6FF;
  border-radius: 12px;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

.drum-review--mobile {
  display: none;
}

.drum-review__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: normal;
  margin: 0 0 10px;
}

.drum-review__stars svg {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px;
  fill: #F5A623 !important;
  position: static !important;
  display: block;
}

.drum-review__stars img {
  width: 16px;
  height: 16px;
  flex: 0 0 18px;
  display: block;
  object-fit: contain;
}

.drum-review__quote {
  margin: 0 0 10px;
  padding: 0;
  border: none;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  font-style: italic;
  color: #4a5967;
  quotes: none;
}

.drum-review__quote::before,
.drum-review__quote::after {
  content: none;
}

.drum-review__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #20323C;
}

.drum-review__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.drum-review__name {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #4a5967;
}

.drum-review__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.drum-review__verified svg {
  position: static !important;
}

.drum-review__verified img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  display: block;
}

.drum-review__verified-text {
  font-size: 12px;
  font-weight: 600;
  color: #F58720;
}

@media (max-width: 600px) {
  .drum-review {
    padding: 20px 22px;
    margin-top: 22px;
  }

  .drum-review__quote {
    font-size: 14px;
  }

  .drum-review--desktop {
    display: none;
  }

  .drum-review--mobile {
    display: block;
    margin-top: 18px;
  }
}
