.rhs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.rhs-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.rhs-strip .rhs-item {
  flex: 1 1 0;
  min-width: 90px;
  padding: 10px;
}

.rhs-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 14px;
  border: 1px solid #e8e1e9;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgb(64 25 70 / 6%);
  transition: box-shadow .2s ease, transform .2s ease;
}

.rhs-item:hover {
  box-shadow: 0 14px 30px rgb(64 25 70 / 12%);
  transform: translateY(-2px);
}

.rhs-item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.rhs-item__name {
  color: #43104c;
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 720px) {
  .rhs-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
  }

  .rhs-strip {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 10px;
  }

  .rhs-strip .rhs-item {
    flex: 1 1 calc(33.333% - 7px);
    min-width: 90px;
  }

  .rhs-item {
    height: 70px;
    padding: 8px;
  }
}
