.cta-bonus {
  padding: 50px;
}
.cta-bonus .cta-bonus__title {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 30px;
}
.cta-bonus__card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 26px 36px;
  border: 1px solid var(--color-3);
  border-radius: 20px;
  background-color: var(--color-4);
}
@media screen and (max-width: 600px) {
  .cta-bonus__card {
    padding: 20px 15px;
    gap: 20px;
    flex-wrap: wrap;
  }
}
.cta-bonus__logo {
  flex-shrink: 0;
  width: 100%;
  max-width: 216px;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
@media screen and (max-width: 600px) {
  .cta-bonus__logo {
    max-width: calc(50% - 10px);
  }
}
.cta-bonus__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cta-bonus__logo-placeholder {
  color: #a0aec0;
  text-align: center;
  word-break: break-word;
}
.cta-bonus__info {
  flex-shrink: 0;
  min-width: 140px;
}
@media screen and (max-width: 600px) {
  .cta-bonus__info {
    min-width: unset;
    max-width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.cta-bonus__name {
  margin: 0 0 0.35rem 0;
  font-weight: 700;
  padding: 0;
}
.cta-bonus__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.cta-bonus__stars {
  display: inline-flex;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.cta-bonus__star {
  background: linear-gradient(to right, #ffd700 0%, #ffd700 var(--fill, 0%), #a0aec0 var(--fill, 0%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-bonus__rating-value {
  font-size: 0.95rem;
  font-weight: 600;
}
.cta-bonus__bonus {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 20px;
  border: 1px dashed var(--color-3);
  padding: 19px 25px;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .cta-bonus__bonus {
    width: 100%;
    padding: 15px 10px;
    min-width: unset;
    flex-direction: column;
    flex-basis: auto;
    gap: 10px;
    margin-bottom: 10px;
  }
}
.cta-bonus__bonus-label {
  font-weight: 600;
  color: var(--color-3);
}
@media screen and (max-width: 600px) {
  .cta-bonus__bonus-label {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .cta-bonus__bonus-line {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .cta-bonus .cta-bonus__actions {
    margin: 0px auto 0 auto;
  }
}
.cta-bonus__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.cta-bonus__buttons .btn {
  min-width: 193px;
}