:root {
  --muted-2: #bfbfc4;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  max-width: 100%;
  overflow-x: clip;
}
::details-content {
  height: 0;
  overflow: hidden;
  transition:
    height 0.34s ease,
    content-visibility 0.34s ease allow-discrete;
}
details[open]::details-content {
  height: auto;
}
body {
  margin: 0;
  min-width: 320px;
  padding-top: 72px;
  max-width: 100%;
  overflow-x: clip;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.jump-content {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--yellow);
  color: #000;
  border-radius: 6px;
  font-weight: 800;
}
.jump-content:focus {
  left: 8px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
}
.header-menu {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}
.identity-home {
  display: inline-flex;
  align-items: center;
}
.identity-logo {
  display: block;
}
.header-links {
  display: flex;
  align-items: center;
}
.member-actions {
  display: flex;
  align-items: center;
}
.action,
.action-article {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}
.action.action-outline {
  box-shadow: 0 0 0 1px #ffffff0d inset;
}
.menu-trigger {
  display: none;
  position: relative;
  z-index: 130;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.menu-trigger span {
  display: block;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  align-content: start;
  height: 100dvh;
  border-left: 1px solid var(--line-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateX(110%);
}
.mobile-drawer a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 7px;
  font-weight: 900;
}
.mobile-drawer a:not(.action) {
  color: var(--muted-2);
}
.mobile-drawer a:not(.action):hover {
  color: #fff;
  background: #ffffff18;
}
.header-menu:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 110;
  background: #0009;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.header-menu.menu-open .mobile-drawer {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.layout-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  max-width: 1600px;
  margin: 20px auto;
}
.side-panel {
  position: sticky;
  top: 92px;
  align-self: start;
  height: calc(100dvh - 92px);
  max-height: calc(100dvh - 92px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.side-panel::-webkit-scrollbar {
  display: none;
}
.contents-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
}
.contents-toggle span {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.contents-links {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}
.contents:not(.expanded-panel) .contents-links {
  display: none;
}
.contents.expanded-panel .contents-links {
  display: grid;
}
.contents-links a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
}
.page-article {
  min-width: 0;
  padding: 0 20px;
}
.intro {
  position: relative;
  overflow: hidden;
}
.intro-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro:after {
  position: absolute;
  inset: 0;
}
.intro-content {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
}
.page-trail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 800;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}
h1 {
  font-size: 60px;
  font-weight: 900;
}
h2 {
  font-size: 40px;
  font-weight: 900;
}
h3 {
  font-size: 20px;
  font-weight: 900;
}
p {
  margin: 0;
  color: var(--muted-2);
}
.intro p {
  margin-top: 18px;
}
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.article-block,
.content-block {
  margin-top: 24px;
  padding: 20px;
}
.article-block h3,
.content-block h3 {
  margin: 26px 0 12px;
}
.article-block h2 + h3 {
  margin-top: 0;
}
.article-block p,
.content-block p {
  width: 100%;
  max-width: 100%;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.72;
}
.article-block h2 + p,
.article-block h3 + p,
.content-block h2 + p,
.content-block h3 + p {
  margin-top: 0;
}
table {
  width: 100%;
  margin: 20px 0 8px;
  border-collapse: collapse;
}
.view-scroll-table {
  width: 100%;
  max-width: 100%;
  margin: 20px 0 8px;
  overflow-x: auto;
  overflow-y: hidden;
}
.view-scroll-table table {
  margin: 0;
}
.view-scroll-table::-webkit-scrollbar {
  height: 8px;
}
.view-scroll-table::-webkit-scrollbar-track {
  background: #111114;
}
.view-scroll-table::-webkit-scrollbar-thumb {
  border-radius: 999px;
}
td,
th {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}
.article-block ol,
.article-block ul,
.content-block ol,
.content-block ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  color: #dadadd;
  list-style: none;
  counter-reset: item;
}
.article-block li,
.content-block li {
  position: relative;
  min-height: 32px;
  padding: 7px 12px 7px 44px;
}
.article-block ul li:before,
.content-block ul li:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.article-block ol li,
.content-block ol li {
  counter-increment: item;
}
.article-block ol li:before,
.content-block ol li:before {
  content: counter(item);
  position: absolute;
  left: 10px;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}
.site-foot {
  padding: 34px 20px 28px;
}
.site-foot-inner {
  max-width: 1600px;
  margin: 0 auto;
}
.back-to-top {
  position: fixed;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.92);
  cursor: pointer;
}
.back-to-top.view-panel-docked {
  position: absolute;
}
.back-to-top:before {
  content: "";
}
.back-to-top:after {
  position: absolute;
  width: 2px;
  height: 24px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(3px);
}
.cookie-notice {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 960px;
  margin: auto;
  padding: 16px;
}
.cookie-notice.visible-item {
  display: flex;
}
.cookie-notice button {
  padding: 10px 18px;
}
.offer {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}
.offer:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.offer-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 300px;
  padding: 36px 34px;
}
.offer-eyebrow {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.offer .view-offer-value {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
}
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.app-action-icon {
  display: block;
  margin-right: 8px;
  object-fit: contain;
}
.app-action .app-action-icon {
  width: 38px;
  height: 38px;
  margin: 0;
  filter: drop-shadow(0 3px 8px #0009);
}
.app-action .app-action-label {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: none;
}
@media (max-width: 1180px) {
  .layout-shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .header-links a {
    padding-inline: 9px;
  }
}
@media (max-width: 960px) {
  body {
    padding-top: 68px;
  }
  html {
    scroll-padding-top: 88px;
  }
  .header-menu {
    flex-wrap: nowrap;
  }
  .member-actions {
    display: flex;
  }
  .menu-trigger {
    display: inline-flex;
    margin-left: 0;
  }
  .side-panel {
    display: none;
  }
  .contents.contents-inline {
    display: block;
    margin: 16px 0 20px;
  }
  .contents-links {
    display: none;
  }
  .contents.expanded-panel .contents-links {
    display: grid;
  }
  .page-article {
    padding: 0 20px;
  }
  .article-block table,
  .content-block table {
    white-space: nowrap;
  }
}
@media (max-width: 620px) {
  .header-links a {
    white-space: nowrap;
  }
  .offer {
    min-height: 360px;
  }
  .offer-content {
    min-height: 360px;
    padding: 24px 20px;
  }
  .offer .view-offer-value {
    font-size: 34px;
  }
  .offer-actions .action-article {
    width: 100%;
    justify-content: center;
  }
  .article-block,
  .content-block {
    padding: 20px;
  }
  .back-to-top {
    width: 44px;
    height: 44px;
  }
}
.content-block > h3,
.article-block > h3 {
  position: relative;
  margin-bottom: 0 !important;
  padding: 14px 16px 13px 46px;
  border: 1px solid #ffffff1f;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}
.content-block > h3:before,
.article-block > h3:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
}
.content-block > h3 + p,
.article-block > h3 + p {
  margin-top: 0 !important;
  padding: 14px 16px 16px;
  border: 1px solid #ffffff1f;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 28px #0005;
  color: #e4e4ea;
}
.side-panel {
  border-right-color: #ffd84a1f;
}
.page-trail a:hover {
  color: var(--yellow);
}
.view-scroll-table::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #c9151b, #ffd84a);
}
.content-block > h3 + p,
.article-block > h3 + p {
  border-color: #ffd84a24;
}
:root {
  --line-soft: #ffd66624;
}
.header-links a.active-item,
.header-links a:hover {
  box-shadow: 0 0 0 1px #ffdc5526 inset;
}
.action,
.action-article {
  border-color: #ffdc5540;
}
.action.action-primary,
.action-article,
.action-article.action-primary {
  border-color: #2a1208;
  text-shadow: 0 1px 0 #ffeaa6;
  box-shadow:
    0 7px 0 #351006,
    0 18px 28px #0007,
    0 0 26px #d21b223a,
    inset 0 1px 0 #fff6;
}
.action.action-primary:hover,
.action-article:hover {
  filter: saturate(1.15) brightness(1.08);
  transform: translateY(-1px);
}
.action.action-outline {
  border-color: #ffdc5545;
}
.intro-actions .action-article {
  min-width: 150px;
}
.article-block,
.content-block {
  border-color: #ffdc5522;
}
.article-block:hover,
.content-block:hover {
  border-color: #ffdc5530;
}
table {
  box-shadow: 0 12px 30px #0008;
}
th {
  border-bottom-color: #000000;
}
td {
  border-bottom-color: #000000;
}
.view-scroll-table {
  scrollbar-color: #ffdc55 #111114;
}
.offer {
  background-image:
    linear-gradient(
      90deg,
      #050506 0,
      #050506ed 29%,
      #1f070995 53%,
      #00000016 78%
    ),
    radial-gradient(circle at 78% 48%, #ffdc5522, #0000 23rem), var(--offer-bg);
  background-size: cover;
  background-position: center right;
}
.offer:before {
  background:
    radial-gradient(circle at 82% 38%, #d21b2258, #0000 42%),
    linear-gradient(0deg, #040405c0, #0000 40%);
}
.offer:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.offer-content {
  padding-left: 34px;
}
.offer-eyebrow {
  text-shadow: 0 0 16px #ffdc5560;
}
.cookie-notice {
  border-color: #ffdc5530;
}
@media (max-width: 620px) {
  .offer {
    background-position: center right;
  }
  .offer {
    background-image:
      linear-gradient(90deg, #050506f6 0, #050506dd 58%, #00000028 100%),
      radial-gradient(circle at 80% 30%, #d21b2248, #0000 44%), var(--offer-bg);
  }
  .offer-content {
    padding-left: 20px;
  }
}
.page-article
  > .article-block:not(.content-pros-cons-block):not(
    .content-platform-choice-block
  ):not(.content-verdict-block):not(.content-faq-block),
.page-article
  > .content-block:not(.content-pros-cons-block):not(
    .content-platform-choice-block
  ):not(.content-verdict-block):not(.content-faq-block) {
  border-color: #ffdc5522;
  background:
    radial-gradient(circle at 95% 0, #d21b2226, #0000 13rem),
    radial-gradient(circle at 6% 100%, #c88f2212, #0000 18rem),
    linear-gradient(180deg, #231216f5, #000000);
}
.content-faq-block {
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  gap: 14px !important;
}
.content-faq-block > * {
  position: relative !important;
  z-index: 1 !important;
}
.content-faq-block > h2 {
  color: #f34b46;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 4px !important;
}
.content-faq-block > h2:before {
  content: "?" !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  font-weight: 900 !important;
}
.content-faq-block details {
  overflow: hidden !important;
}
.content-faq-block summary {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  min-height: 58px !important;
  padding: 16px 58px 16px 18px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  list-style: none !important;
}
.content-faq-block summary::-webkit-details-marker {
  display: none !important;
}
.content-faq-block summary:after {
  content: "+" !important;
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  display: grid !important;
  place-items: center !important;
  width: 30px !important;
  height: 30px !important;
  transform: translateY(-50%) !important;
  border-radius: 50% !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}
.content-faq-block details p {
  margin-top: 0 !important;
  padding: 0 18px 18px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}
:root {
  --b11-red: #f84a4a;
  --b11-red-dark: #e74242;
  --b11-text: #35495e;
  --b11-line: #edf1f3;
}
body {
  background: #0a636b;
}
.action-article,
.action,
.cookie-notice button {
  border-radius: 18px !important;
  background: linear-gradient(
    180deg,
    var(--b11-red),
    var(--b11-red-dark)
  ) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
}
.action-article.action-primary {
  background: linear-gradient(
    180deg,
    var(--b11-red),
    var(--b11-red-dark)
  ) !important;
  color: #fff !important;
}
.content-block,
.article-block {
  border: 1px solid var(--b11-line) !important;
  box-shadow: 0 8px 24px #1d1d1b14 !important;
  color: var(--b11-text) !important;
}
.content-block p,
.article-block p,
.article-block li,
.content-block li,
td {
  color: #000000;
}
.content-block > h3,
.article-block > h3 {
  background: #fff !important;
  border-color: var(--b11-line) !important;
  box-shadow: none !important;
}
.content-block > h3:before,
.article-block > h3:before {
  background: var(--b11-red) !important;
  box-shadow: none !important;
}
table {
  overflow: hidden !important;
}
th {
  border-bottom: 1px solid #ffffff20 !important;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}
td {
  border-bottom: 1px solid var(--b11-line) !important;
}
.offer-eyebrow {
  color: #fff !important;
  width: max-content !important;
  padding: 5px 12px !important;
}
.side-panel {
  padding-top: 0 !important;
}
.side-panel .contents {
  margin-top: 14px;
}
@media (max-width: 960px) {
  .contents.contents-inline {
    background: #fff !important;
  }
}
.header-menu {
  height: 74px !important;
  min-height: 74px !important;
  padding: 0 24px !important;
  gap: 18px !important;
}
.identity-logo {
  width: 152px !important;
  height: auto !important;
  filter: none !important;
}
.header-links {
  margin-left: 44px !important;
  border-radius: 999px !important;
}
.header-links a {
  min-height: 30px !important;
  padding: 0 18px !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 30px !important;
  text-transform: uppercase !important;
}
.member-actions {
  color: #000000;
  margin-left: auto !important;
  gap: 8px !important;
}
.member-actions .action {
  min-height: 30px !important;
  padding: 0 22px !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
.member-actions .action:hover,
.header-links a:hover {
  filter: brightness(1.06) !important;
}
@media (max-width: 960px) {
  .header-menu {
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 12px !important;
  }
  .identity-logo {
    width: 126px !important;
  }
  .header-links {
    display: none !important;
  }
  .member-actions {
    color: #000000;
    margin-left: auto !important;
  }
  .member-actions .action {
    display: none !important;
  }
  .menu-trigger {
    border-radius: 999px !important;
  }
}
.article-block,
.content-block {
  background: #008480 !important;
}
.site-foot {
  border-top-color: #d3dee2 !important;
}
.offer .action-article:not(.app-action) {
  min-width: 118px !important;
  min-height: 30px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
.site-foot a,
.site-foot p {
  font-weight: 400 !important;
}
.page-article > .article-block:not(.offer),
.page-article > .content-block:not(.offer) {
  border-color: #dfe7eb !important;
}
.content-faq-block {
  border-color: #dfe7eb !important;
}
.content-faq-block details {
  border-color: #dfe7eb !important;
}
@media (max-width: 620px) {
  .intro-actions .action-article {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 18px !important;
  }
}
@media (max-width: 960px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .layout-shell {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 16px 0 !important;
    overflow: hidden !important;
  }
  .page-article {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    overflow: hidden !important;
  }
  .intro,
  .article-block,
  .content-block {
    width: 100% !important;
    max-width: 100% !important;
  }
  .intro-image {
    max-width: none !important;
  }
}
@media (min-width: 901px) {
  .layout-shell {
    grid-template-columns: 220px minmax(0, 1fr) !important;
  }
  .page-article {
    padding-left: 18px !important;
    padding-right: 20px !important;
  }
}
.contents {
  padding: 10px !important;
}
.content-block > h3 + p,
.article-block > h3 + p {
  background: #27b84f66 !important;
}
.intro,
.intro-image,
.article-block,
.content-block,
.offer,
.view-scroll-table,
table,
.content-faq-block,
.content-faq-block details {
  border-radius: 8px !important;
}
.view-scroll-table {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.back-to-top {
  border: 0 !important;
  border-radius: 50% !important;
  color: #273e60 !important;
}
.back-to-top:before {
  width: 12px !important;
  height: 12px !important;
  border-left: 3px solid currentColor !important;
  border-top: 3px solid currentColor !important;
  transform: translateY(3px) rotate(45deg) !important;
}
.back-to-top:after {
  display: none !important;
  content: none !important;
}
.back-to-top:hover {
  color: #273e60 !important;
  filter: none !important;
}
.back-to-top.visible-item:not(:hover) {
  transform: translateY(0) scale(1) !important;
}
@media (max-width: 960px) {
  .view-scroll-table {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .view-scroll-table table {
    width: max-content !important;
    min-width: 720px !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
  .view-scroll-table th,
  .view-scroll-table td {
    white-space: nowrap !important;
  }
}
.content-block table,
.article-block table,
.view-scroll-table table {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.content-block table,
.article-block table,
.view-scroll-table table {
  box-shadow: none !important;
  border-collapse: collapse !important;
  background: #fff !important;
}
.content-block th,
.article-block th,
.view-scroll-table th {
  background: #d3dee2 !important;
  color: #000 !important;
  border-bottom: 1px solid var(--b11-line) !important;
}
.content-block td,
.article-block td,
.view-scroll-table td {
  background: #fff !important;
  color: #000 !important;
  border-bottom: 1px solid var(--b11-line) !important;
}
.side-panel {
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
@media (max-width: 960px) {
  .offer .offer-eyebrow {
    display: block !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 7px 12px !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }
}
.offer .action-article:not(.app-action) {
  padding: 15px 28px !important;
  line-height: 1 !important;
}
.content-block > h3,
.article-block > h3 {
  margin-top: 20px !important;
}
.contents-links a {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 620px) {
  h1 {
    font-size: 32px !important;
    line-height: 1.12 !important;
  }
  h2 {
    font-size: 26px !important;
    line-height: 1.16 !important;
  }
  h3,
  .content-block > h3,
  .article-block > h3 {
    font-size: 18px !important;
    line-height: 1.22 !important;
  }
  .content-block p,
  .article-block p,
  .content-block li,
  .article-block li,
  td,
  th {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }
  .action-article,
  .action,
  .app-action {
    font-size: 12px !important;
  }
  .contents-links a {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
  .site-foot a,
  .site-foot p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}
.content-block h2 + p,
.article-block h2 + p {
  margin-top: 14px !important;
}
@media (max-width: 620px) {
  .intro-content {
    overflow-wrap: anywhere !important;
  }
}
:root {
  --safe-purple: #5b2b7b;
  --safe-purple-dark: #351b4f;
  --safe-coral: #ef6376;
  --safe-coral-light: #f88998;
  --safe-coral-dark: #d64b63;
  --safe-coral-shadow: #a9344c;
  --safe-mint: #28bd9a;
  --safe-mint-light: #63d5b8;
  --safe-mint-dark: #119576;
  --safe-mint-shadow: #08705d;
}
html {
  color-scheme: light !important;
}
body,
a,
button,
.header-links a,
.site-foot a,
.site-foot p {
  font-family: Roboto, Arial, "Helvetica Neue", sans-serif !important;
}
.header-links a {
  color: #e9e5f7 !important;
}
.member-actions .action.action-outline {
  border: 1px solid #ffffff26 !important;
}
.member-actions .action,
.intro .action-article {
  border-radius: 7px !important;
}
.member-actions .action:hover,
.intro .action-article:hover {
  filter: brightness(1.08) !important;
  transform: translateY(-1px) !important;
}
.layout-shell {
  background: transparent !important;
}
.page-article {
  border-radius: 10px !important;
}
.side-panel {
  border-radius: 8px !important;
}
.contents-toggle {
  position: relative !important;
  min-height: 48px !important;
  padding: 7px 18px !important;
  overflow: hidden !important;
  width: calc(100% + 32px) !important;
  margin-left: -16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease !important;
}
.contents-toggle:before {
  display: none !important;
  content: none !important;
}
.contents-toggle > span {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  width: 25px !important;
  height: 25px !important;
  border: 0 !important;
  border-radius: 50% !important;
  transform: none !important;
  box-shadow:
    inset 0 1px 0 #ffffff40,
    0 3px 7px #3d1f8633 !important;
}
.contents-toggle > span:after {
  content: "";
  width: 7px;
  height: 7px;
  transform: translateY(-2px) rotate(45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.contents-toggle:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 7px 15px #2c174224 !important;
}
.contents-toggle:active {
  transform: translateY(1px) !important;
}
.contents.expanded-panel .contents-toggle > span {
  transform: rotate(180deg) !important;
}
.intro {
  min-height: 500px !important;
  border-radius: 9px !important;
}
.intro:after {
  display: none !important;
  content: none !important;
}
.intro-image {
  display: block !important;
}
.intro-content {
  display: grid !important;
  align-content: center !important;
  min-height: 500px !important;
}
.intro p {
  text-shadow: 0 2px 12px #000 !important;
}
.page-trail,
.page-trail a,
.page-trail span {
  color: #fff !important;
}
.intro:after {
  background:
    linear-gradient(
      90deg,
      #160b3cf2 0,
      #20104fda 34%,
      #28115b70 66%,
      transparent 100%
    ),
    linear-gradient(0deg, #170b40c9, transparent 48%) !important;
}
.intro h1 {
  color: #fff !important;
  font-family: "Arial Rounded MT Bold", Roboto, Arial, sans-serif !important;
  font-size: clamp(38px, 4vw, 58px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.02 !important;
  text-shadow:
    0 3px 0 #24103f,
    0 8px 22px #0008 !important;
}
.intro p {
  color: #f2efff !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
}
h1,
h2,
h3,
.content-block > h3,
.article-block > h3 {
  color: var(--safe-ink) !important;
  font-family: Roboto, Arial, "Helvetica Neue", sans-serif !important;
  letter-spacing: -0.02em !important;
}
.page-article > .content-block h2,
.page-article > .article-block h2 {
  font-size: 30px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
}
.page-article > .content-block h3,
.page-article > .article-block h3 {
  color: #334b70 !important;
  font-size: 21px !important;
  font-weight: 900 !important;
}
.page-article > .content-block:not(.offer),
.page-article > .article-block:not(.offer) {
  background: #cdcdcd4d !important;
  color: var(--safe-ink) !important;
  border: 1px solid var(--safe-line-strong) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  padding: 24px 26px !important;
}
.page-article > .content-block p,
.page-article > .article-block p,
.page-article > .content-block li,
.page-article > .article-block li {
  color: var(--safe-ink) !important;
  font-size: 16px !important;
  line-height: 1.67 !important;
}
.offer {
  border-radius: 9px !important;
}
.offer:after {
  background: linear-gradient(
    90deg,
    #1c0d49e8,
    #28105f9e 55%,
    transparent
  ) !important;
}
.offer-eyebrow {
  background: var(--safe-coral) !important;
  border-radius: 5px !important;
  box-shadow: inset 0 1px 0 #ffffff52 !important;
}
.offer .view-offer-value {
  color: #fff !important;
  text-shadow:
    0 3px 0 #28123f,
    0 6px 16px #0007 !important;
}
.offer-content {
  max-width: 655px !important;
}
.view-scroll-table {
  border: 1px solid var(--safe-line) !important;
  border-radius: 7px !important;
}
table {
  background: var(--safe-paper) !important;
}
th {
  font-weight: 800 !important;
}
td,
tbody tr:nth-child(even) td {
  border-color: #eee8de !important;
}
.article-block li,
.content-block li {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--safe-ink) !important;
}
.content-faq-block {
  background: var(--safe-bg) !important;
  border: 0 !important;
  box-shadow: none !important;
}
.content-faq-block > h2:before {
  background: var(--safe-yellow) !important;
  color: var(--safe-purple-dark) !important;
  box-shadow: none !important;
}
.content-faq-block details {
  background: var(--safe-paper) !important;
  border: 1px solid var(--safe-line) !important;
  border-radius: 6px !important;
  box-shadow: 0 3px 8px #3b283214 !important;
}
.content-faq-block summary {
  color: var(--safe-ink) !important;
  font-size: 16px !important;
}
.content-faq-block summary:after {
  background: transparent !important;
  color: var(--safe-ink) !important;
  box-shadow: none !important;
}
.content-faq-block details[open] summary {
  background: var(--safe-bg-soft) !important;
  color: var(--safe-purple) !important;
}
.content-faq-block details p {
  color: var(--safe-ink) !important;
}
.cookie-notice {
  background: linear-gradient(90deg, #25206f, #3146a3) !important;
  border: 1px solid #6579d1 !important;
  border-radius: 7px !important;
  box-shadow: 0 7px 18px #21103d55 !important;
  color: #fff !important;
}
.cookie-notice p {
  color: #fff !important;
}
.cookie-notice button {
  border-radius: 6px !important;
}
.cookie-notice-inner {
  left: 50% !important;
  right: auto !important;
  bottom: 10px !important;
  width: 560px !important;
  min-height: 68px !important;
  max-width: calc(100vw - 40px) !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  padding: 10px 12px 10px 110px !important;
  overflow: visible !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  border: 1px solid #536ad0 !important;
  border-radius: 7px !important;
  background: linear-gradient(
    100deg,
    #252269 0%,
    #28357f 55%,
    #304b9e 100%
  ) !important;
  box-shadow:
    0 4px 0 #181a58,
    0 8px 18px #24154845 !important;
}
.cookie-notice-inner .cookie-notice-text {
  flex: 1 1 auto !important;
  max-width: 290px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  text-wrap: balance !important;
}
.cookie-notice-inner .cookie-notice-policy {
  color: #21e1ae !important;
  font: inherit !important;
  text-decoration: none !important;
}
.cookie-notice-inner .cookie-notice-policy:hover {
  text-decoration: underline !important;
}
.cookie-notice-inner #cookieOk {
  flex: 0 0 108px !important;
  width: 108px !important;
  min-width: 108px !important;
  min-height: 42px !important;
  padding: 0 12px !important;
  border-radius: 7px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-transform: none !important;
  cursor: pointer !important;
}
@media (max-width: 520px) {
  .cookie-notice-inner {
    left: 50% !important;
    bottom: 8px !important;
    width: calc(100vw - 16px) !important;
    max-width: none !important;
    min-height: 78px !important;
    padding: 8px 8px 8px 90px !important;
    gap: 7px !important;
  }
  .cookie-notice-inner .cookie-notice-text {
    max-width: none !important;
    font-size: 11px !important;
    line-height: 1.08 !important;
  }
  .cookie-notice-inner #cookieOk {
    flex-basis: 82px !important;
    width: 82px !important;
    min-width: 82px !important;
    min-height: 38px !important;
    padding-inline: 8px !important;
    font-size: 11px !important;
  }
}
.site-foot {
  background: var(--safe-paper) !important;
  border-top: 1px solid var(--safe-line) !important;
  color: var(--safe-ink) !important;
}
.site-foot a,
.site-foot p {
  color: var(--safe-ink) !important;
}
.site-foot a:hover {
  color: var(--safe-purple) !important;
  text-decoration: none !important;
}
.action:focus-visible,
.action-article:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--safe-yellow) !important;
  outline-offset: 3px !important;
}
@media (max-width: 620px) {
  .page-article > .content-block:not(.offer),
  .page-article > .article-block:not(.offer) {
    padding: 20px 16px !important;
  }
  .page-article > .content-block h2,
  .page-article > .article-block h2 {
    font-size: 25px !important;
  }
}
.page-article > .content-block > p,
.page-article > .article-block > p {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.page-article > .content-block > p:before,
.page-article > .article-block > p:before {
  display: none !important;
  content: none !important;
}
.page-article > .content-block > h3,
.page-article > .article-block > h3 {
  position: relative !important;
  margin: 28px 0 12px !important;
  padding: 0 0 0 34px !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 21px !important;
  line-height: 1.3 !important;
}
.page-article > .content-block > h3:before,
.page-article > .article-block > h3:before {
  content: "" !important;
  position: absolute !important;
  left: 4px !important;
  top: 0.28em !important;
  display: block !important;
  width: 15px !important;
  height: 15px !important;
  transform: rotate(45deg) !important;
  border: 3px solid #fff !important;
  border-radius: 4px !important;
}
.page-article > .content-block > h3 + p,
.page-article > .article-block > h3 + p {
  margin-top: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.page-article .view-scroll-table {
  position: relative !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: transparent !important;
  box-shadow: none !important;
  scrollbar-color: var(--safe-mint) var(--safe-bg-soft) !important;
  scrollbar-width: thin !important;
}
.page-article .view-scroll-table {
  margin: 0 !important;
}
.page-article .view-scroll-table::-webkit-scrollbar {
  height: 9px !important;
}
.page-article .view-scroll-table::-webkit-scrollbar-track {
  background: var(--safe-bg-soft) !important;
}
.page-article .view-scroll-table::-webkit-scrollbar-thumb {
  border: 2px solid var(--safe-bg-soft) !important;
  border-radius: 20px !important;
  background: var(--safe-mint) !important;
}
.page-article .content-block table,
.page-article .article-block table,
.page-article .view-scroll-table table {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 0 !important;
  background: var(--safe-paper) !important;
  box-shadow: none !important;
  font-variant-numeric: tabular-nums !important;
}
.page-article .content-block th,
.page-article .article-block th,
.page-article .view-scroll-table th {
  padding: 16px 18px !important;
  border: 0 !important;
  border-right: 1px solid #ffffff26 !important;
  border-bottom: 3px solid var(--safe-mint) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.01em !important;
  text-align: left !important;
  text-transform: none !important;
}
.page-article .content-block th:last-child,
.page-article .article-block th:last-child,
.page-article .view-scroll-table th:last-child {
  border-right: 0 !important;
}
.page-article .content-block td,
.page-article .article-block td,
.page-article .view-scroll-table td,
.page-article tbody tr:nth-child(even) td {
  padding: 15px 18px !important;
  border: 0 !important;
  border-right: 1px solid #eee8de !important;
  border-bottom: 1px solid var(--safe-line) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  vertical-align: top !important;
  transition: background-color 0.16s ease !important;
}
.page-article tbody tr:hover td {
  background: #f2e9e7 !important;
}
.page-article tbody tr:last-child td {
  border-bottom: 0 !important;
}
.page-article tbody td:last-child {
  border-right: 0 !important;
}
.page-article tbody td:first-child {
  color: #334b70 !important;
  font-weight: 800 !important;
}
@media (max-width: 960px) {
  .page-article .view-scroll-table table {
    min-width: 700px !important;
    width: 100% !important;
  }
}
@media (max-width: 620px) {
  .page-article .content-block th,
  .page-article .article-block th,
  .page-article .view-scroll-table th,
  .page-article .content-block td,
  .page-article .article-block td,
  .page-article .view-scroll-table td {
    padding: 13px 14px !important;
    font-size: 13px !important;
  }
}
.site-foot.site-foot-compact {
  margin-top: 40px !important;
  padding: 22px 24px 48px !important;
  border: 0 !important;
  box-shadow: none !important;
}
.site-foot.site-foot-compact .site-foot-inner {
  max-width: 1440px !important;
  margin: 0 auto !important;
}
.site-foot-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  width: 100%;
}
.site-foot-links a {
  display: inline-flex;
  align-items: center;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.015em !important;
  text-transform: uppercase !important;
  transition: color 0.18s ease !important;
}
.site-foot-links a + a:before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  margin: 0 12px;
}
.site-foot-links a:hover {
  color: var(--safe-coral-dark) !important;
}
.site-foot-links a:focus-visible {
  outline: 3px solid var(--safe-yellow) !important;
  outline-offset: 4px !important;
}
.site-foot-legal {
  display: grid;
  gap: 10px;
  margin: 76px auto 0;
  text-align: center;
}
.site-foot.site-foot-compact .site-foot-legal p {
  margin: 0 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}
@media (max-width: 620px) {
  .site-foot.site-foot-compact {
    margin-top: 28px !important;
    padding: 22px 16px 34px !important;
  }
  .site-foot-links {
    column-gap: 0;
    row-gap: 12px;
  }
  .site-foot-links a {
    font-size: 9px !important;
  }
  .site-foot-links a + a:before {
    margin: 0 8px;
  }
  .site-foot-legal {
    margin-top: 46px;
  }
  .site-foot.site-foot-compact .site-foot-legal p {
    font-size: 11px !important;
  }
}
.page-article > .content-faq-block {
  display: grid !important;
  gap: 10px !important;
  overflow: visible !important;
  border: 1px solid var(--safe-line-strong) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}
.page-article > .content-faq-block > h2 {
  display: block !important;
  margin-bottom: 8px !important;
}
.page-article > .content-faq-block > h2:before {
  display: none !important;
  content: none !important;
}
.page-article > .content-faq-block details {
  overflow: hidden !important;
  border: 1px solid var(--safe-line) !important;
  border-radius: 8px !important;
}
.page-article > .content-faq-block summary {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  min-height: 54px !important;
  padding: 13px 58px 13px 18px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  cursor: pointer !important;
  list-style: none !important;
  transition:
    background-color 0.18s ease,
    color 0.18s ease !important;
}
.page-article > .content-faq-block summary::-webkit-details-marker {
  display: none !important;
}
.page-article > .content-faq-block summary:after {
  content: "+" !important;
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  display: grid !important;
  place-items: center !important;
  width: 30px !important;
  height: 30px !important;
  transform: translateY(-50%) !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}
.page-article > .content-faq-block details p {
  margin: 0 !important;
  padding: 0 18px 17px !important;
  color: var(--safe-ink) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}
.page-article > .content-faq-block summary:focus-visible {
  outline: 3px solid var(--safe-yellow) !important;
  outline-offset: -3px !important;
}
@media (max-width: 620px) {
  .page-article > .content-faq-block summary {
    padding: 12px 52px 12px 14px !important;
    font-size: 14px !important;
  }
  .page-article > .content-faq-block details p {
    padding: 0 14px 15px !important;
    font-size: 14px !important;
  }
}
.header-links {
  gap: 6px !important;
  padding: 0 !important;
  border: 0 !important;
}
.header-links a {
  border: 1px solid transparent !important;
  border-radius: 7px !important;
  background: transparent !important;
  box-shadow: none !important;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease !important;
}
.header-links a:hover {
  border-color: #ffffff30 !important;
  border-radius: 7px !important;
  transform: translateY(-1px) !important;
}
.header-links a.active-item {
  border-color: #d8d8d8 !important;
  border-radius: 7px !important;
  box-shadow: none !important;
}
.page-article > .content-faq-block .faq-item {
  margin-top: 10px !important;
  overflow: hidden;
  border: 1px solid #ded8e8 !important;
  border-radius: 9px !important;
  background: #fff !important;
  box-shadow: 0 7px 18px #32174d0d !important;
}
.page-article > .content-faq-block .faq-item summary {
  position: relative;
  min-height: 48px;
  padding: 15px 50px 15px 16px !important;
  color: var(--safe-ink) !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  cursor: pointer;
  list-style: none;
}
.page-article > .content-faq-block .faq-item summary::-webkit-details-marker {
  display: none;
}
.page-article > .content-faq-block .faq-item summary:after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--safe-purple);
  color: #fff;
  font-size: 18px;
}
.page-article > .content-faq-block .faq-item summary:focus-visible {
  outline: 3px solid #9561bc;
  outline-offset: -3px;
}
.page-article > .content-faq-block .faq-item p {
  margin: 0 !important;
  padding: 0 16px 17px !important;
  color: var(--safe-ink) !important;
}
@media (max-width: 620px) {
  .intro {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .intro:after {
    display: block !important;
    content: "" !important;
    background:
      linear-gradient(90deg, #160b3cf5 0, #20104fe8 58%, #251052a8 100%),
      linear-gradient(0deg, #170b40d9, transparent 48%) !important;
  }
  .intro-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 24px 20px !important;
    overflow: hidden !important;
  }
  .intro h1,
  .intro p {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }
}
@media (max-width: 960px) {
  .contents,
  .contents.contents-inline {
    padding: 0 10px !important;
  }
}
.intro-image {
  object-position: center top;
}
.intro-error {
  min-height: calc(100dvh - 112px) !important;
  background: #211044 !important;
}
.intro-error .intro-image {
  object-position: center top !important;
}
.intro-error .intro-content {
  width: min(650px, 100%) !important;
  min-height: calc(100dvh - 112px) !important;
  padding: clamp(32px, 6vw, 76px) !important;
}
.error-layout-eyebrow {
  display: inline-flex;
  width: max-content;
  padding: 7px 13px;
  border: 1px solid #ffffff38;
  border-radius: 999px;
  background: #ffffff14;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.intro-error h1 {
  display: grid !important;
  gap: 4px !important;
  margin-top: 18px !important;
}
.intro-error p {
  max-width: 500px !important;
  font-size: 18px !important;
}
@media (max-width: 620px) {
  .intro-error,
  .intro-error .intro-content {
    min-height: calc(100dvh - 96px) !important;
  }
  .intro-error .intro-content {
    align-content: end !important;
    padding: 32px 20px !important;
  }
}
.member-actions .action.action-outline {
  box-shadow: inset 0 1px 0 #ffffff12 !important;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease !important;
}
.member-actions .action.action-outline:hover {
  background: #ffffff1c !important;
  border-color: #ffffff55 !important;
  box-shadow:
    inset 0 1px 0 #ffffff20,
    0 5px 12px #080d1840 !important;
  transform: translateY(-1px) !important;
}
.member-actions .action.action-outline:active {
  background: #ffffff0a !important;
  border-color: #ffffff35 !important;
  box-shadow: inset 0 2px 4px #0004 !important;
  transform: translateY(1px) scale(0.985) !important;
}
.action.action-primary,
.member-actions .action.action-primary,
.intro .action-article {
  border: 1px solid #f4a0aa !important;
  background: linear-gradient(
    180deg,
    var(--safe-coral-light),
    var(--safe-coral-dark)
  ) !important;
  color: #fff !important;
  box-shadow:
    inset 0 2px 0 #ffffff59,
    inset 0 -3px 0 #b2385066,
    0 4px 0 var(--safe-coral-shadow),
    0 9px 18px #4a26334a !important;
  text-shadow: 0 1px 1px #8b2e42 !important;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    transform 0.18s ease !important;
}
.action.action-primary:hover,
.member-actions .action.action-primary:hover,
.intro .action-article:hover {
  border-color: #ffc0c7 !important;
  background: linear-gradient(180deg, #ff9ba7, #df5369) !important;
  box-shadow:
    inset 0 2px 0 #ffffff70,
    inset 0 -3px 0 #b238505c,
    0 6px 0 var(--safe-coral-shadow),
    0 13px 23px #4a263352 !important;
  filter: saturate(0.96) !important;
  transform: translateY(-2px) !important;
}
.action.action-primary:active,
.member-actions .action.action-primary:active,
.intro .action-article:active {
  border-color: #cf455c !important;
  background: linear-gradient(180deg, #d9566b, #bd3d55) !important;
  filter: saturate(0.92) !important;
  transform: translateY(3px) scale(0.985) !important;
  box-shadow:
    inset 0 2px 0 #ffffff42,
    inset 0 -1px 0 #b2385055,
    0 1px 0 var(--safe-coral-shadow),
    0 4px 9px #4a263338 !important;
}
.offer .action-article:not(.app-action),
.cookie-notice button,
.cookie-notice-inner #cookieOk {
  border: 1px solid #65d5b7 !important;
  background: linear-gradient(
    180deg,
    var(--safe-mint-light),
    var(--safe-mint-dark)
  ) !important;
  color: #fff !important;
  box-shadow:
    inset 0 2px 0 #ffffff61,
    inset 0 -2px 0 #08745e52,
    0 4px 0 var(--safe-mint-shadow),
    0 8px 16px #28423b35 !important;
  text-shadow: 0 1px 1px #07634f !important;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    transform 0.18s ease !important;
}
.offer .action-article:not(.app-action):hover,
.cookie-notice button:hover,
.cookie-notice-inner #cookieOk:hover {
  border-color: #8fe4cf !important;
  background: linear-gradient(180deg, #78ddc4, #19a884) !important;
  box-shadow:
    inset 0 2px 0 #ffffff73,
    inset 0 -2px 0 #08745e45,
    0 6px 0 var(--safe-mint-shadow),
    0 12px 21px #28423b40 !important;
  filter: saturate(0.94) !important;
  transform: translateY(-2px) !important;
}
.offer .action-article:not(.app-action):active,
.cookie-notice button:active,
.cookie-notice-inner #cookieOk:active {
  border-color: #148e72 !important;
  background: linear-gradient(180deg, #30ad8c, #0b7d64) !important;
  filter: saturate(0.92) !important;
  transform: translateY(3px) scale(0.985) !important;
  box-shadow:
    inset 0 2px 0 #ffffff48,
    0 1px 0 var(--safe-mint-shadow),
    0 4px 9px #28423b2d !important;
}
.action-article.app-action {
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease !important;
}
.action-article.app-action:active {
  border-color: #485f7e !important;
  background: linear-gradient(180deg, #512d68, #2c153d) !important;
  box-shadow:
    inset 0 2px 4px #1b0b2766,
    0 1px 0 #29143c,
    0 4px 9px #35253d38 !important;
  transform: translateY(3px) scale(0.985) !important;
}
.back-to-top {
  box-shadow: none !important;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    filter 0.18s ease,
    transform 0.18s ease !important;
}
.back-to-top:hover {
  border-color: #a17ab5 !important;
  background: linear-gradient(180deg, #754790, #41225a) !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}
.back-to-top:active {
  border-color: #485f7e !important;
  background: linear-gradient(180deg, #4c2a62, #2b153c) !important;
  box-shadow: none !important;
  transform: translateY(3px) scale(0.96) !important;
}
.offer-block {
  width: 100%;
  margin: clamp(24px, 3vw, 38px) 0 0;
  padding: 0;
  border: 0;
}
.offer-block .offer {
  margin: 0 !important;
  background-color: transparent !important;
  background-image: var(--offer-bg) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.offer-block .offer:before,
.offer-block .offer:after {
  display: none !important;
  content: none !important;
  background: none !important;
}
.offer-block .offer-actions .action-article {
  min-width: 170px !important;
}
@media (max-width: 620px) {
  .offer-block {
    margin-top: 24px;
  }
  .offer-block .offer-actions .action-article {
    width: 100% !important;
    min-width: 0 !important;
  }
}
.offer-block .offer-content {
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 8px !important;
  max-width: min(760px, 68%) !important;
  padding: 28px 34px !important;
}
.offer-block .offer-eyebrow {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: clamp(14px, 1.25vw, 18px) !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-transform: none !important;
  text-shadow:
    0 2px 4px #061247,
    0 1px 0 #061247 !important;
}
.offer-block .offer .view-offer-value {
  max-width: 720px !important;
  margin: 0 !important;
  color: #ffd856 !important;
  font-size: 50px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  text-wrap: balance;
  text-shadow:
    0 3px 0 #9b6608,
    0 6px 13px #061247b8 !important;
}
.offer-block .offer-actions {
  justify-content: flex-start !important;
  margin-top: 8px !important;
}
.offer-block .offer-actions .action-article:not(.app-action) {
  width: max-content !important;
  min-width: 126px !important;
  min-height: 44px !important;
  padding: 0 22px !important;
  border: 1px solid #ff9ca9 !important;
  border-radius: 6px !important;
  background: linear-gradient(180deg, #ff6679, #ed405d) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-shadow: 0 1px 2px #8c1831 !important;
}
.offer-block .offer-actions .action-article:not(.app-action):hover {
  background: linear-gradient(180deg, #ff7a8b, #f04b66) !important;
  filter: brightness(1.04) !important;
  transform: none !important;
}
@media (max-width: 620px) {
  .offer-block .offer-content {
    max-width: 78% !important;
    padding: 22px 18px !important;
  }
  .offer-block .offer-eyebrow {
    font-size: 13px !important;
    text-align: left !important;
  }
  .offer-block .offer .view-offer-value {
    line-height: 1.02 !important;
  }
  .offer-block .offer-actions .action-article:not(.app-action) {
    width: max-content !important;
    min-width: 116px !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }
}
.mobile-banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  aspect-ratio: 640/245;
  margin: clamp(24px, 3vw, 38px) 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #160b36;
}
.mobile-banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% top;
}
.mobile-banner-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 62%;
  padding: 34px 38px;
}
.mobile-banner-eyebrow {
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  text-shadow: 0 2px 5px #090526;
}
.mobile-banner h2 {
  margin: 0;
  color: #ffd856 !important;
  font-size: clamp(46px, 4.4vw, 66px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  text-shadow:
    0 3px 0 #91600a,
    0 7px 15px #090526b8 !important;
}
.mobile-banner-actions {
  flex-wrap: wrap;
  margin-top: 22px;
}
.mobile-banner .app-action {
  min-height: 56px !important;
  padding: 7px 16px !important;
  border: 1px solid #b9c9de !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #704493, #43215e) !important;
  box-shadow: none !important;
  color: #fff !important;
}
.mobile-banner .app-action:hover {
  background: linear-gradient(180deg, #8052a2, #51286d) !important;
  box-shadow: none !important;
  transform: none !important;
}
.mobile-banner .app-action .app-action-label {
  flex: 1;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}
@media (max-width: 760px) {
  .mobile-banner {
    min-height: 470px;
    aspect-ratio: auto;
  }
  .mobile-banner-media {
    object-position: 68% center;
  }
  .mobile-banner-content {
    width: 74%;
    padding: 26px 20px;
  }
  .mobile-banner h2 {
    font-size: 40px !important;
  }
  .mobile-banner-actions {
    flex-direction: column;
    margin-top: 18px;
  }
  .mobile-banner .app-action {
    min-height: 52px !important;
  }
}
.offer-block .offer,
.offer-block .offer-content {
  min-height: 450px !important;
}
.offer-block .offer {
  background-position: right top !important;
}
.mobile-banner-app .mobile-banner-media {
  object-position: 68% top !important;
}
#content
  .page-article
  > :is(.content-block, .article-block)
  h2:not(
    :where(
      .intro h2,
      .offer-block h2,
      .offer .view-offer-value,
      .mobile-banner h2
    )
  ) {
  color: var(--safe-purple-dark) !important;
  font-size: 36px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  overflow-wrap: anywhere;
}
.mobile-banner-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  width: min(100%, 552px) !important;
  max-width: none !important;
  align-self: center !important;
  justify-content: center !important;
  gap: 12px !important;
}
.mobile-banner .app-action {
  display: inline-flex !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
.mobile-banner .app-action .app-action-label {
  display: block !important;
  min-width: 0 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  text-wrap: balance;
  text-align: center !important;
}
@media (max-width: 760px) {
  .mobile-banner-actions {
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100%, 270px) !important;
    max-width: none !important;
    align-self: center !important;
  }
}
.action-article.app-action {
  width: 260px !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  padding: 7px 16px !important;
  border: 1px solid #b9c9de !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  color: #fff !important;
  justify-self: center !important;
  text-transform: none !important;
}
.action-article.app-action:hover {
  box-shadow: none !important;
  transform: none !important;
}
.action-article.app-action .app-action-icon {
  flex: 0 0 38px !important;
  width: 38px !important;
  height: 38px !important;
  margin: 0 !important;
}
.action-article.app-action .app-action-label {
  flex: 1 1 auto !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  text-transform: none !important;
}
.mobile-banner-content > .mobile-banner-actions {
  align-self: flex-start !important;
  justify-content: start !important;
  justify-items: start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mobile-banner-content > .mobile-banner-actions > .app-action {
  justify-self: start !important;
}
@media (max-width: 620px) {
  #content
    .page-article
    > :is(.content-block, .article-block)
    h2:not(
      :where(
        .intro h2,
        .offer-block h2,
        .offer .view-offer-value,
        .mobile-banner h2
      )
    ) {
    font-size: clamp(24px, 7vw, 28px) !important;
    line-height: 1.1 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none;
    text-wrap: balance;
  }
  .page-article > .content-block p,
  .page-article > .article-block p,
  .page-article > .content-block li,
  .page-article > .article-block li {
    font-size: 14px !important;
    line-height: 1.6 !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}
.action-article.app-action {
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) 40px !important;
  gap: 6px !important;
  align-items: center !important;
  justify-content: stretch !important;
  text-align: center !important;
  white-space: normal !important;
}
.action-article.app-action:after {
  display: block;
  width: 40px;
  height: 1px;
  content: "";
  grid-column: 3;
}
.action-article.app-action .app-action-icon {
  grid-column: 1 !important;
  justify-self: center !important;
}
.action-article.app-action .app-action-label {
  display: flex !important;
  min-width: 0 !important;
  height: 100% !important;
  grid-column: 2 !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: balance;
}
body {
  background-size:
    34px 34px,
    42px 42px,
    auto !important;
}
.site-header {
  border-bottom: 3px solid #e8c75f !important;
}
.page-article {
  background: transparent !important;
}
.page-article
  > .content-block:not(.intro):not(.mobile-banner):not(.offer-block),
.page-article
  > .article-block:not(.intro):not(.mobile-banner):not(.offer-block) {
  border: 1px solid var(--safe-line) !important;
}
.page-article > .content-block:not(.intro) p,
.page-article > .article-block:not(.intro) p,
.page-article > .content-block:not(.intro) li,
.page-article > .article-block:not(.intro) li {
  color: var(--safe-ink) !important;
}
.page-article > .content-block h2,
.page-article > .article-block h2 {
  color: #5c3b61 !important;
}
.page-article > .content-block > h3,
.page-article > .article-block > h3 {
  box-shadow: none !important;
}
.page-article > .content-block > h3 + p,
.page-article > .article-block > h3 + p {
  box-shadow: none !important;
}
.side-panel {
  border: 1px solid var(--safe-line-strong) !important;
}
th {
  border-color: #cdb66d !important;
  background: #ead58b !important;
  color: #44351f !important;
}
td {
  border-color: #eadfb9 !important;
  background: #fffdf3 !important;
  color: #342a1c !important;
}
tbody tr:nth-child(even) td {
  background: #faf2d6 !important;
  color: #342a1c !important;
}
.article-block ol li:before,
.content-block ol li:before {
  border: 1px solid #d1a52f !important;
}
.intro {
  border: 1px solid #d5b75b !important;
}
.offer,
.mobile-banner {
  border: 1px solid #d9b64a !important;
}
.offer-block {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.site-foot.site-foot-compact {
  border-top: 1px solid #d3b960 !important;
}
.site-foot-links a,
.site-foot.site-foot-compact .site-foot-legal p {
  color: #4e3b20 !important;
}
.page-article .content-block th,
.page-article .article-block th,
.page-article .view-scroll-table th {
  border-right-color: #cdb66d !important;
  border-bottom-color: #b98a22 !important;
}
.mobile-banner .action-article.app-action {
  grid-template-columns: 32px minmax(0, 1fr) 32px !important;
  padding-inline: 9px !important;
}
.mobile-banner .action-article.app-action:after {
  width: 32px !important;
}
.mobile-banner .action-article.app-action .app-action-icon {
  width: 30px !important;
  height: 30px !important;
}
.mobile-banner .action-article.app-action .app-action-label {
  font-size: 13px !important;
  line-height: 1.12 !important;
}
.mobile-banner .action-article.app-action .app-action-label > span {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}
.support-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.support-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid #a88731;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}
@media (max-width: 620px) {
  .support-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .support-links a {
    padding-inline: 8px;
  }
}
:root {
  --nz-blue: #00247d;
  --nz-red: #cc142b;
  --nz-white: #fff;
  --safe-bg: #e8eef8;
  --safe-bg-soft: #f4f7fc;
  --safe-paper: #fff;
  --safe-ink: #10265a;
  --safe-yellow: #cc142b;
  --safe-line: #c7d3e8;
  --safe-line-strong: #7c93bd;
  --safe-shadow: 0 10px 26px #00247d18;
}
body {
  background-color: var(--safe-bg) !important;
  background-image:
    radial-gradient(circle at 14% 8%, #ffffff 0 2px, transparent 2.5px),
    radial-gradient(circle at 82% 24%, #cc142b20 0 1px, transparent 1.8px),
    linear-gradient(135deg, #edf3fc 0%, #dfe8f7 52%, #f7f9fd 100%) !important;
  color: var(--safe-ink) !important;
}
.site-header {
  border-bottom-color: var(--nz-red) !important;
  background: var(--nz-blue) !important;
  box-shadow: 0 6px 18px #00184f40 !important;
}
.header-links {
  background: #ffffff12 !important;
  box-shadow: inset 0 0 0 1px #ffffff20 !important;
}
.header-links a.active-item,
.header-links a:hover {
  background: var(--nz-red) !important;
  color: var(--nz-white) !important;
}
.menu-trigger {
  border-color: #ffffff80 !important;
  background: #ffffff12 !important;
}
.mobile-drawer {
  border-left-color: #ffffff26 !important;
  background: #001b5ff7 !important;
  box-shadow: -24px 0 60px #00123870 !important;
}
.page-article
  > .content-block:not(.intro):not(.mobile-banner):not(.offer-block),
.page-article
  > .article-block:not(.intro):not(.mobile-banner):not(.offer-block) {
  border-color: var(--safe-line) !important;
  background: linear-gradient(160deg, #fff 0%, #f3f7fd 100%) !important;
  box-shadow: var(--safe-shadow) !important;
}
#content
  .page-article
  > .content-block:not(.intro):not(.mobile-banner):not(.offer-block)
  h2,
#content
  .page-article
  > .article-block:not(.intro):not(.mobile-banner):not(.offer-block)
  h2 {
  color: var(--nz-blue) !important;
}
.page-article > .content-block > h3,
.page-article > .article-block > h3 {
  border-color: var(--safe-line) !important;
  background: #edf3fc !important;
  color: var(--nz-blue) !important;
}
.page-article > .content-block > h3:before,
.page-article > .article-block > h3:before {
  background: linear-gradient(180deg, #e92943, var(--nz-red)) !important;
  box-shadow: 0 0 0 3px #cc142b24 !important;
  color: #fff !important;
}
.page-article > .content-block > h3 + p,
.page-article > .article-block > h3 + p {
  border-color: var(--safe-line) !important;
  background: #fff !important;
  color: var(--safe-ink) !important;
}
.side-panel {
  border-color: var(--safe-line-strong) !important;
  background: #eaf0fa !important;
  box-shadow: 0 14px 32px #00247d20 !important;
}
.contents-links a {
  color: #243c73 !important;
}
.contents-links a:hover {
  background: #fff !important;
  color: var(--nz-red) !important;
}
.contents-toggle {
  background: linear-gradient(105deg, var(--nz-blue), #173f98) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.contents-toggle:hover {
  background: #0b348d !important;
}
.contents-toggle > span {
  background: var(--nz-red) !important;
  color: #fff !important;
}
.view-scroll-table {
  border-color: var(--safe-line) !important;
  background: #fff !important;
  box-shadow: 0 6px 16px #00247d12 !important;
}
.page-article .content-block th,
.page-article .article-block th,
.page-article .view-scroll-table th {
  border-color: #496aaa !important;
  background: linear-gradient(110deg, var(--nz-blue), #173f98) !important;
  color: #fff !important;
}
.page-article .content-block td,
.page-article .article-block td,
.page-article .view-scroll-table td {
  border-color: #d4ddeb !important;
  background: #fff !important;
  color: var(--safe-ink) !important;
}
.page-article tbody tr:nth-child(even) td {
  background: #eef3fb !important;
  color: var(--safe-ink) !important;
}
.article-block li,
.content-block li {
  border-color: #d4ddeb !important;
  background: #f8faff !important;
}
.article-block ul li:before,
.content-block ul li:before {
  background: var(--nz-red) !important;
  box-shadow: 0 0 0 3px #cc142b20 !important;
}
.article-block ol li:before,
.content-block ol li:before {
  border-color: #9e1024 !important;
  background: var(--nz-red) !important;
  color: #fff !important;
  box-shadow: 0 3px 8px #7d0c1b24 !important;
}
.page-article > .content-faq-block {
  border-color: var(--safe-line-strong) !important;
  background: #f4f7fc !important;
}
.page-article > .content-faq-block details {
  border-color: var(--safe-line) !important;
  background: #fff !important;
  box-shadow: 0 3px 9px #00247d10 !important;
}
.page-article > .content-faq-block summary {
  color: var(--nz-blue) !important;
}
.page-article > .content-faq-block summary:after {
  background: #e7edf8 !important;
  color: var(--nz-blue) !important;
}
.page-article > .content-faq-block details[open] summary {
  background: #e9eff9 !important;
  color: var(--nz-blue) !important;
}
.intro,
.offer,
.mobile-banner {
  border-color: #8298c2 !important;
  box-shadow: 0 12px 30px #00247d26 !important;
}
.site-foot.site-foot-compact {
  border-top-color: var(--nz-red) !important;
  background: var(--nz-blue) !important;
  color: #fff !important;
}
.site-foot-links a,
.site-foot.site-foot-compact .site-foot-legal p,
.site-foot-links a + a:before {
  background: #ffffff66 !important;
}
.support-links a {
  border-color: #8298c2 !important;
  background: #fff !important;
  color: var(--nz-blue) !important;
}
.support-links a:hover {
  background: #e8eef8 !important;
  color: var(--nz-red) !important;
}
.action.action-primary,
.action-article:not(.app-action) {
  border-color: #ee8091 !important;
  background: linear-gradient(180deg, #df2842, var(--nz-red)) !important;
  color: #fff !important;
  text-shadow: none !important;
}
.action.action-primary:hover,
.action-article:not(.app-action):hover {
  background: linear-gradient(180deg, #ee3851, #b81027) !important;
}
.action-article.app-action {
  border-color: #6f8ec8 !important;
  background: linear-gradient(180deg, #173f98, var(--nz-blue)) !important;
}
.action-article.app-action:hover {
  border-color: #9eb3da !important;
  background: linear-gradient(180deg, #2854ae, #062b82) !important;
}
.member-actions .action.action-outline {
  border-color: #ffffff70 !important;
  background: #ffffff10 !important;
  color: #fff !important;
}
.member-actions .action.action-primary {
  border-color: #ee8091 !important;
  background: linear-gradient(180deg, #df2842, var(--nz-red)) !important;
  color: #fff !important;
}
.cookie-notice button,
.cookie-notice-inner #cookieOk {
  border-color: #ee8091 !important;
  background: linear-gradient(180deg, #df2842, var(--nz-red)) !important;
  color: #fff !important;
  text-shadow: none !important;
}
.back-to-top {
  border-color: #fff !important;
  background: var(--nz-red) !important;
}
.intro {
  --hero-image-headroom: 18px;
  background: #020617 !important;
}
.intro > .intro-image {
  top: var(--hero-image-headroom) !important;
  bottom: auto !important;
  height: calc(100% - var(--hero-image-headroom)) !important;
  object-position: center top !important;
}
@media (max-width: 620px) {
  .intro {
    --hero-image-headroom: 12px;
  }
  .intro > .intro-image {
    object-position: right top !important;
  }
  .intro-error > .intro-image {
    object-position: 80% top !important;
  }
}
.intro::after {
  display: none !important;
  content: none !important;
  background: none !important;
}
@media (max-width: 960px) {
  .intro-content,
  .offer-block .offer-content,
  .mobile-banner-content {
    width: 100% !important;
    max-width: 100% !important;
    align-items: center !important;
    justify-items: center !important;
    background: transparent !important;
    text-align: center !important;
  }
  .intro h1,
  .offer-block .offer .view-offer-value,
  .mobile-banner h2 {
    max-width: 780px !important;
    font-size: clamp(34px, 5.2vw, 42px) !important;
    text-align: center !important;
    text-wrap: balance;
  }
  .intro p {
    margin-inline: auto !important;
    font-size: 18px !important;
    text-align: center !important;
  }
  .page-trail,
  .offer-block .offer-eyebrow {
    justify-self: center !important;
    text-align: center !important;
  }
  .intro-actions,
  .offer-block .offer-actions,
  .mobile-banner-actions {
    justify-content: center !important;
    align-items: center !important;
    margin-inline: auto !important;
  }
  .mobile-banner-content > .mobile-banner-actions {
    align-self: center !important;
    justify-content: center !important;
    justify-items: center !important;
    margin-inline: auto !important;
  }
  .mobile-banner-content > .mobile-banner-actions > .app-action {
    justify-self: center !important;
  }
}
@media (max-width: 620px) {
  .intro h1 {
    font-size: 32px !important;
  }
  .offer-block .offer .view-offer-value {
    font-size: 34px !important;
  }
  .mobile-banner h2 {
    font-size: 32px !important;
  }
  .intro p {
    font-size: 16px !important;
  }
}
@media (max-width: 960px) {
  .intro:not(.intro-error) > .intro-content,
  .offer-block .offer-content,
  .mobile-banner-content {
    border: 2px solid #527fcd !important;
  }
  .intro:not(.intro-error) > .intro-content {
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    min-height: calc(500px - 36px) !important;
    margin: 18px !important;
    border-radius: 12px !important;
    border-width: 1px !important;
    background: rgba(2, 6, 23, 0.55) !important;
  }
  .offer-block .offer-content {
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    min-height: calc(450px - 36px) !important;
    margin: 18px !important;
    border-radius: 12px !important;
    background: rgba(2, 6, 23, 0.46) !important;
  }
  .mobile-banner-content {
    inset: 18px !important;
    width: auto !important;
    max-width: none !important;
    min-height: 0 !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: rgba(2, 6, 23, 0.46) !important;
  }
}
#content .page-article .view-scroll-table {
  margin-block: 24px !important;
}
@media (max-width: 620px) {
  #content .page-article .view-scroll-table {
    margin-block: 20px !important;
  }
}
.back-to-top.visible-item {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
