
.flagship {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(88, 155, 221, .26), transparent 28%),
    linear-gradient(135deg, #052a5f 0%, #0b3d78 58%, #164f8b 100%);
  color: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, .15), inset 0 -1px rgba(0, 0, 0, .16);
}

.flagship::after {
  position: absolute;
  z-index: -1;
  right: -85px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255, 255, 255, .025), 0 0 0 104px rgba(255, 255, 255, .018);
  content: '';
}

.flagship-mark {
  border: 1px solid rgba(241, 199, 115, .72);
  background: rgba(255, 255, 255, .1);
  color: #f1c773;
  box-shadow: 0 9px 26px rgba(0, 0, 0, .18);
}

.flagship .eyebrow {
  color: #f1c773;
  font-size: .72rem;
  letter-spacing: .2em;
}

.flagship h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  text-wrap: balance;
}

.flagship p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
  font-size: .98rem;
  line-height: 1.75;
}

.flagship-link {
  position: relative;
  justify-content: space-between;
  min-width: 205px;
  border: 2px solid #f1c773;
  border-radius: 3px;
  background: #f1c773;
  color: #052a5f;
  padding: 18px 22px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.flagship-link span {
  font-size: 1.15rem;
}

.flagship-link:hover,
.flagship-link:focus-visible {
  background: #fff;
  color: #052a5f;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

@media (max-width: 860px) {
  .flagship-link {
    min-width: min(290px, 100%);
  }
}

@media (max-width: 560px) {
  .flagship {
    text-align: left;
  }

  .flagship-mark {
    width: 58px;
    height: 58px;
  }

  .flagship-link {
    width: 100%;
  }
}
