.rg-ops-list {
  display: grid;
  gap: 16px;
  margin: 20px 0;
}

.rg-ops-card {
  display: grid;
  grid-template-columns: 160px 1fr 1.4fr 180px;
  gap: 18px;
  align-items: center;
  background: #1b2748;
  border: 1px solid #2a3a67;
  border-radius: 16px;
  padding: 18px;
}

.rg-ops-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rg-ops-card__logo-img {
  max-width: 145px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.rg-ops-card__brand-name {
  margin: 0 0 6px;
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
}

.rg-ops-card__feature {
  margin: 0 0 8px;
  color: #d9e0ef;
  font-size: 16px;
  line-height: 1.3;
}

.rg-ops-stars {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.rg-ops-star {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9ca3af;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.rg-ops-star.is-on {
  background: #10b981;
}

.rg-ops-stars__value {
  margin-left: 6px;
  color: #d9e0ef;
  font-size: 28px;
  font-weight: 700;
}

.rg-ops-card__offer {
  color: #fff;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 700;
}

.rg-ops-card__bonus {
  display: block;
}

.rg-ops-card__cta {
  display: flex;
  justify-content: flex-end;
}

.rg-ops-card__cta a {
  min-width: 160px;
  text-align: center;
  background: #28c862;
  color: #fff;
  font-weight: 800;
  border-radius: 14px;
  padding: 13px 16px;
  text-decoration: none;
}

@media (max-width: 960px) {
  .rg-ops-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .rg-ops-card__cta {
    justify-content: center;
  }

  .rg-ops-card__brand-name {
    font-size: 22px;
  }

  .rg-ops-card__offer {
    font-size: 28px;
  }

  .rg-ops-stars__value {
    font-size: 22px;
  }
}
