.promo-banner {
  margin-top: 28px;
}

.promo-banner__link {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 48, .55);
  border-radius: 18px;
  background: #050505;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
  text-decoration: none;
}

.promo-banner__link img {
  display: block;
  width: 100%;
  height: auto;
}

.promo-banner__button {
  position: absolute;
  right: 7%;
  bottom: 7%;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #ffe279;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffd84d, #d89500);
  box-shadow: 0 8px 24px rgba(255, 183, 0, .32);
  color: #111;
  font: 800 15px/1 "Segoe UI", system-ui, sans-serif;
  text-transform: uppercase;
}

.promo-banner__link:hover .promo-banner__button,
.promo-banner__link:focus-visible .promo-banner__button {
  background: linear-gradient(180deg, #ffe87a, #f2ae00);
  transform: translateY(-1px);
}

.promo-banner__link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .promo-banner {
    margin-top: 18px;
  }

  .promo-banner__link {
    border-radius: 12px;
  }

  .promo-banner__button {
    right: 4%;
    bottom: 5%;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 7px;
    font-size: 10px;
  }
}
