.guild-promo {
  position: relative;
  display: block;
  width: min(100%, 672px);
  margin: clamp(14px, 1.5vw, 22px) 0;
  overflow: hidden;
  border: 1px solid rgba(255, 191, 101, .34);
  border-radius: 6px;
  background: #090d0f;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  color: inherit;
  line-height: 0;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.guild-promo::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
  background: rgba(7, 11, 13, .82);
  color: #fff2d8;
  content: "Вступить в Discord";
  font: 700 .7rem/1.1 "Chakra Petch", sans-serif;
  letter-spacing: .02em;
  pointer-events: none;
}

.guild-promo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 248;
  object-fit: cover;
}

.guild-promo:hover,
.guild-promo:focus-visible {
  border-color: rgba(255, 191, 101, .88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .3), 0 0 24px rgba(255, 191, 101, .11);
  outline: 0;
  transform: translateY(-2px);
}

.market-page-heading .guild-promo {
  grid-column: 1 / -1;
  grid-row: 2;
}

.rankings-head .guild-promo {
  margin-bottom: 4px;
}

@media (max-width: 760px) {
  .guild-promo {
    margin-block: 12px;
    border-radius: 4px;
  }

  .guild-promo::after {
    right: 7px;
    bottom: 7px;
    padding: 5px 7px;
    font-size: .58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guild-promo { transition: none; }
}
