.gfm-offer-banner {
  --gfm-offer-bg: #974FC2;
  width: 100%;
  background: var(--gfm-offer-bg);
  color: #fff;
  position: relative;
  z-index: 10;
  clear: both;
  overflow: hidden;
  font-family: inherit;
}

.gfm-offer-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.14), transparent 70%);
  pointer-events: none;
}

.gfm-offer-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gfm-offer-link {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.gfm-offer-link:hover,
.gfm-offer-link:focus {
  color: #fff;
  text-decoration: none;
}

.gfm-offer-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gfm-offer-icon {
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 44px;
}

.gfm-offer-title {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.gfm-offer-text {
  font-size: 16px;
  font-weight: 900;
  border-bottom: 2px solid rgba(255,255,255,.65);
  padding-bottom: 3px;
  white-space: nowrap;
}

.gfm-offer-link:hover .gfm-offer-text,
.gfm-offer-link:focus .gfm-offer-text {
  border-color: #fff;
}

.gfm-offer-close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.gfm-offer-close:hover,
.gfm-offer-close:focus {
  opacity: .72;
}

.gfm-offer-banner.is-hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .gfm-offer-wrap {
    width: min(100% - 28px, 1180px);
  }

  .gfm-offer-link {
    min-height: auto;
    padding: 18px 44px 18px 0;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }

  .gfm-offer-heading {
    gap: 12px;
  }

  .gfm-offer-icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
    flex: 0 0 38px;
  }

  .gfm-offer-title {
    font-size: 18px;
  }

  .gfm-offer-text {
    margin-left: 50px;
    font-size: 14px;
  }

  .gfm-offer-close {
    right: 10px;
    font-size: 30px;
  }
}
