/* WASABI ROSTER TELEGRAM CTA */
.roster-telegram {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 94px;
  margin: 0 0 22px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  border: 1px solid rgba(166,211,77,.52);
  background:
    linear-gradient(100deg, rgba(166,211,77,.14), rgba(166,211,77,.025) 58%, rgba(166,211,77,.09)),
    #141711;
}

.roster-telegram::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 220px;
  height: 220px;
  top: -116px;
  left: 38%;
  border: 1px solid rgba(166,211,77,.13);
  border-radius: 50%;
}

.roster-telegram::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 1px;
  right: 33%;
  bottom: 0;
  background: var(--acid-bright);
  transform: rotate(-42deg);
  transform-origin: right center;
  opacity: .24;
}

.roster-telegram-copy { min-width: 0; }

.roster-telegram-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--acid-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.roster-telegram-label i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid-bright);
  box-shadow: 0 0 0 5px rgba(166,211,77,.1);
}

.roster-telegram-copy > strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.025em;
}

.roster-telegram-copy p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  line-height: 1.45;
}

.roster-telegram-button {
  min-height: 72px;
  padding: 14px 17px 14px 19px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  align-items: center;
  gap: 7px 14px;
  color: #0b0d09;
  background: var(--acid-bright);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.roster-telegram-button span {
  grid-column: 1;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
  opacity: .68;
}

.roster-telegram-button strong {
  grid-column: 1;
  overflow: hidden;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roster-telegram-button b {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 26px;
  font-weight: 400;
}

.roster-telegram-button:hover,
.roster-telegram-button:focus-visible {
  color: #fff;
  background: #779b31;
  transform: translateY(-2px);
}

footer { grid-template-columns: 1fr auto; }

@media (max-width: 720px) {
  .roster-telegram {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 16px;
    padding: 20px;
  }

  .roster-telegram::before {
    top: -138px;
    left: auto;
    right: -58px;
  }

  .roster-telegram::after { display: none; }
  .roster-telegram-copy > strong { font-size: clamp(24px, 8vw, 32px); }
  .roster-telegram-button { width: 100%; min-height: 68px; }
  footer .back-top { grid-row: 1; }
}

@media (max-width: 420px) {
  .roster-telegram { padding: 17px 15px 15px; }
  .roster-telegram-label { font-size: 8px; letter-spacing: .12em; }
  .roster-telegram-copy p { font-size: 11px; }
}
