
.as-seen-in {
  text-align: center;
  padding: 2em 0;
  max-width: 100%;
}

.as-seen-in h2 {
  font-size: 1.5em;
  margin-bottom: 1em;
}

.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.1em, 5vw, 5em);
  margin: 0 auto;
  max-width: 100%;
  flex-wrap: nowrap;
}

.logo-strip img {
  max-height: clamp(16px, 6.5vw, 45px);
  max-width: 100%;
  flex: 0 1 auto;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.logo-strip img:hover {
  opacity: 0.8;
}

.rating-strip {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 30px);
  padding: 2em 0.5em;
  max-width: 100%;
  flex-wrap: nowrap;
  transform-origin: center;
}

.rating-box {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  background: #fff;
  border-radius: 5px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  width: clamp(140px, 40vw, 170px);
  height: clamp(90px, 13vw, 110px);
  padding: 20px 10px;
  flex-shrink: 1;
}

.rating-box:visited {
  color: #333;
}

.rating-box img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.rating-text {
  padding-top: 5px;
}

@media (max-width: 400px) {
  .rating-box {
    font-size: 11px;
  }
}

@media (max-width: 299px) {
  .rating-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .rating-box {
    font-size: 13px;
    width: 100%;
    max-width: 170px;
  }
}

