:root {
  --pbz-yellow: #ffd100;
  --pbz-navy: #101d2c;
  --pbz-teal: #017e80;
  --pbz-white: #ffffff;
  --pbz-black: #05070a;
  --pbz-ink: #132033;
  --pbz-soft: #f4f7f8;
  --pbz-line: rgba(16, 29, 44, 0.16);
  --pbz-glow: rgba(255, 209, 0, 0.38);
  --pbz-header: 78px;
  --pbz-wrap: min(1180px, calc(100vw - 32px));
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--pbz-header) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  padding-top: var(--pbz-header);
  overflow-x: hidden;
  background: var(--pbz-soft);
  color: var(--pbz-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.pbz-text-link {
  color: var(--pbz-teal);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  overflow-wrap: break-word;
  word-break: normal;
}

.pbz-section--navy .pbz-text-link,
.pbz-section--teal .pbz-text-link,
.pbz-hero .pbz-text-link,
.pbz-footer .pbz-text-link {
  color: var(--pbz-yellow);
}

.pbz-text-link:hover {
  text-decoration-color: currentColor;
  filter: brightness(1.12);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.pbz-text-link:focus-visible,
.pbz-table-frame:focus-visible {
  outline: 3px solid var(--pbz-yellow);
  outline-offset: 4px;
}

.pbz-skip {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--pbz-yellow);
  color: var(--pbz-black);
  font-weight: 900;
}

.pbz-skip:focus {
  transform: translateY(0);
}

.pbz-wrap {
  width: var(--pbz-wrap);
  margin: 0 auto;
}

.pbz-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 980;
  width: 100%;
  max-width: 100%;
  min-height: var(--pbz-header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 6px max(16px, calc((100vw - 1180px) / 2));
  background: rgba(5, 7, 10, 0.94);
  color: var(--pbz-white);
  border-bottom: 2px solid rgba(255, 209, 0, 0.72);
  backdrop-filter: blur(14px);
}

.pbz-brand,
.pbz-footer__brand {
  display: inline-grid;
  place-items: center;
  width: 176px;
  min-width: 0;
}

.pbz-brand {
  width: 156px;
}

.pbz-brand img,
.pbz-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pbz-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.pbz-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pbz-nav a,
.pbz-header-cta,
.pbz-button,
.pbz-promo__button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.84rem;
  line-height: 1.1;
  border-radius: 6px;
  transform: skew(-8deg);
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.pbz-nav a > *,
.pbz-header-cta > *,
.pbz-button > *,
.pbz-promo__button > * {
  transform: skew(8deg);
}

.pbz-nav a {
  color: var(--pbz-white);
  background: transparent;
}

.pbz-nav a:hover,
.pbz-nav a[aria-current="page"] {
  background: var(--pbz-yellow);
  color: var(--pbz-black);
}

.pbz-header-cta,
.pbz-button--primary,
.pbz-promo__button {
  background: var(--pbz-yellow);
  color: var(--pbz-black);
  box-shadow: 0 12px 24px rgba(255, 209, 0, 0.24);
}

.pbz-header-cta--register {
  background: var(--pbz-teal);
  color: var(--pbz-white);
  box-shadow: 0 12px 24px rgba(1, 126, 128, 0.22);
}

.pbz-header-cta--login,
.pbz-promo__button--soft {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pbz-white);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.pbz-header-cta:hover,
.pbz-button:hover,
.pbz-promo__button:hover {
  transform: skew(-8deg) translateY(-2px);
}

.pbz-button--ghost {
  color: var(--pbz-white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.pbz-nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 2px solid var(--pbz-yellow);
  border-radius: 6px;
  background: var(--pbz-black);
  padding: 9px;
}

.pbz-nav-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--pbz-yellow);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.pbz-header.is-open .pbz-nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.pbz-header.is-open .pbz-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.pbz-header.is-open .pbz-nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.pbz-hero {
  position: relative;
  min-height: clamp(480px, calc(100vh - var(--pbz-header)), 650px);
  display: flex;
  align-items: center;
  color: var(--pbz-white);
  isolation: isolate;
  background-color: var(--pbz-navy);
  background-size: cover;
  background-position: 60% center;
  overflow: hidden;
}

.pbz-hero--main {
  background-image: url("playbaze-austria-main-hero.webp");
}

.pbz-hero--bonuses {
  background-image: url("playbaze-austria-bonuses-hero.webp");
}

.pbz-hero--app {
  background-image: url("playbaze-austria-app-hero.webp");
}

.pbz-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background:
    linear-gradient(135deg, transparent 0 34%, var(--pbz-yellow) 34% 37%, transparent 37%),
    linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.75));
  opacity: 0.72;
  z-index: -1;
}

.pbz-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.94) 0%, rgba(5, 7, 10, 0.78) 32%, rgba(5, 7, 10, 0.28) 70%),
    linear-gradient(180deg, rgba(16, 29, 44, 0.34), rgba(16, 29, 44, 0.72));
}

.pbz-hero__inner {
  padding: 44px 0 54px;
  max-width: var(--pbz-wrap);
}

.pbz-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.pbz-breadcrumb a {
  color: var(--pbz-yellow);
  text-decoration: none;
  font-weight: 800;
}

.pbz-breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: var(--pbz-teal);
}

.pbz-kicker,
.pbz-section__count {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--pbz-black);
  background: var(--pbz-yellow);
  border: 2px solid rgba(5, 7, 10, 0.86);
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.pbz-hero h1 {
  width: min(660px, 100%);
  margin: 14px 0 16px;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: clamp(1.95rem, 3.25vw, 3.15rem);
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  letter-spacing: 0;
  text-shadow: 0 8px 0 rgba(1, 126, 128, 0.34);
}

.pbz-hero__copy {
  width: min(760px, 100%);
  font-size: clamp(0.96rem, 1.25vw, 1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.pbz-hero__copy p {
  margin: 0 0 14px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.pbz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pbz-hero__chips {
  display: none;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  width: min(720px, 100%);
  margin-top: 24px;
}

.pbz-hero-chip {
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 5px solid var(--pbz-yellow);
  background: rgba(16, 29, 44, 0.78);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.pbz-hero-chip strong,
.pbz-hero-chip small {
  display: block;
}

.pbz-hero-chip strong {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 1.48rem;
  line-height: 1;
}

.pbz-hero-chip small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.pbz-promo {
  position: relative;
  padding: clamp(28px, 4.5vw, 52px) 0;
  overflow: clip;
  background:
    linear-gradient(135deg, rgba(255, 209, 0, 0.11), transparent 36%),
    var(--pbz-black);
}

.pbz-promo__card {
  position: relative;
  min-height: clamp(250px, 31vw, 380px);
  overflow: hidden;
  border: 2px solid rgba(255, 209, 0, 0.42);
  border-radius: 8px;
  background: var(--pbz-navy);
  box-shadow: 0 22px 46px rgba(5, 7, 10, 0.36);
  isolation: isolate;
}

.pbz-promo__image,
.pbz-promo__shade {
  position: absolute;
  inset: 0;
}

.pbz-promo__image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.pbz-promo__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.97) 0%, rgba(5, 7, 10, 0.86) 32%, rgba(5, 7, 10, 0.34) 72%, rgba(5, 7, 10, 0.14)),
    radial-gradient(circle at 26% 50%, rgba(1, 126, 128, 0.28), transparent 34%);
}

.pbz-promo__content {
  position: relative;
  width: min(520px, 52%);
  min-height: clamp(250px, 31vw, 380px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 46px);
  color: var(--pbz-white);
  text-shadow: 0 3px 14px rgba(5, 7, 10, 0.9);
}

.pbz-promo__content::before {
  content: "";
  position: absolute;
  inset: clamp(16px, 3vw, 28px) clamp(10px, 2vw, 20px);
  max-width: 520px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 29, 44, 0.76), rgba(5, 7, 10, 0.58)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 42px rgba(5, 7, 10, 0.42);
  backdrop-filter: blur(8px);
}

.pbz-promo__content > * {
  position: relative;
  z-index: 1;
}

.pbz-promo__label {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--pbz-yellow);
  color: var(--pbz-black);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.pbz-promo__title {
  margin: 0;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: clamp(1.75rem, 2.75vw, 2.85rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.pbz-promo__text {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.42;
  overflow-wrap: break-word;
  word-break: normal;
}

.pbz-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pbz-promo__button {
  width: max-content;
  margin-top: 4px;
}

.pbz-section {
  position: relative;
  padding: clamp(56px, 8vw, 104px) 0;
  overflow: clip;
}

.pbz-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 209, 0, 0.08) 48% 50%, transparent 50%),
    linear-gradient(45deg, transparent 0 64%, rgba(1, 126, 128, 0.08) 64% 66%, transparent 66%);
}

.pbz-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.pbz-section__head {
  position: sticky;
  top: calc(var(--pbz-header) + 24px);
  display: grid;
  justify-items: start;
  min-width: 0;
  max-width: 100%;
  gap: 18px;
}

.pbz-section__count {
  justify-self: start;
  min-width: 64px;
}

.pbz-section__head h2 {
  margin: 0;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  max-width: 100%;
  font-size: clamp(1.55rem, 2.55vw, 2.65rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.pbz-section__body {
  min-width: 0;
  font-size: 1rem;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.pbz-section__body > p:first-child {
  margin-top: 0;
}

.pbz-copy-line {
  margin: 0 0 18px;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.pbz-note-line {
  font-weight: 900;
  color: var(--pbz-teal);
}

.pbz-topic-stack {
  display: grid;
  gap: 16px;
}

.pbz-topic {
  min-width: 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--pbz-line);
  border-left: 6px solid var(--pbz-teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(16, 29, 44, 0.08);
}

.pbz-topic h3,
.pbz-section__body > h3 {
  margin: 0 0 14px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.12rem, 1.45vw, 1.55rem);
  line-height: 1.18;
  color: var(--pbz-navy);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.pbz-topic p:last-child,
.pbz-section__body p:last-child {
  margin-bottom: 0;
}

.pbz-table-frame {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 22px 0;
  border: 2px solid var(--pbz-navy);
  border-radius: 8px;
  background: var(--pbz-white);
  box-shadow: 0 16px 34px rgba(16, 29, 44, 0.1);
}

table {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.84rem;
  line-height: 1.34;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(16, 29, 44, 0.12);
  vertical-align: top;
  text-align: left;
  color: var(--pbz-ink);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--pbz-navy);
  color: var(--pbz-white);
  font-weight: 900;
  line-height: 1.22;
}

tbody th {
  color: var(--pbz-navy);
  font-weight: 900;
}

tbody td {
  color: var(--pbz-ink);
}

.pbz-table-frame .pbz-text-link {
  color: var(--pbz-teal);
}

tbody tr:nth-child(even) {
  background: rgba(1, 126, 128, 0.06);
}

tbody tr:hover {
  background: rgba(255, 209, 0, 0.18);
}

.pbz-section--light {
  background: var(--pbz-soft);
  color: var(--pbz-ink);
}

.pbz-section--white {
  background: var(--pbz-white);
  color: var(--pbz-ink);
}

.pbz-section--yellow {
  background: var(--pbz-yellow);
  color: var(--pbz-black);
}

.pbz-section--yellow .pbz-section__count {
  background: var(--pbz-black);
  color: var(--pbz-yellow);
  border-color: var(--pbz-black);
}

.pbz-section--yellow .pbz-topic {
  background: rgba(255, 255, 255, 0.78);
  border-left-color: var(--pbz-black);
}

.pbz-section--navy,
.pbz-section--teal {
  color: var(--pbz-white);
}

.pbz-section--navy {
  background:
    linear-gradient(135deg, rgba(255, 209, 0, 0.14), transparent 38%),
    var(--pbz-navy);
}

.pbz-section--teal {
  background:
    linear-gradient(135deg, rgba(16, 29, 44, 0.42), transparent 44%),
    var(--pbz-teal);
}

.pbz-section--navy .pbz-section__head h2,
.pbz-section--teal .pbz-section__head h2,
.pbz-section--navy .pbz-topic h3,
.pbz-section--teal .pbz-topic h3 {
  color: var(--pbz-white);
}

.pbz-section--navy .pbz-topic,
.pbz-section--teal .pbz-topic {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: var(--pbz-yellow);
  box-shadow: none;
}

.pbz-section--navy .pbz-note-line,
.pbz-section--teal .pbz-note-line {
  color: var(--pbz-yellow);
}

.pbz-faq-grid {
  display: grid;
  gap: 12px;
}

.pbz-faq-item {
  border: 2px solid var(--pbz-navy);
  border-radius: 8px;
  background: var(--pbz-white);
  color: var(--pbz-ink);
  overflow: hidden;
}

.pbz-faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-family: "Arial Black", Arial, sans-serif;
  line-height: 1.2;
}

.pbz-faq-item summary h3 {
  margin: 0;
  font: inherit;
  color: inherit;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.pbz-faq-item summary::before {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  background: var(--pbz-yellow);
  color: var(--pbz-black);
  border-radius: 4px;
}

.pbz-faq-item[open] summary::before {
  content: "-";
}

.pbz-faq-answer {
  padding: 0 18px 18px 58px;
}

.pbz-footer {
  padding: 42px 0;
  background: var(--pbz-black);
  color: var(--pbz-white);
}

.pbz-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  gap: 26px;
  align-items: start;
}

.pbz-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.pbz-footer nav {
  display: grid;
  gap: 10px;
}

.pbz-footer nav a {
  color: var(--pbz-white);
  text-decoration: none;
  font-weight: 900;
}

.pbz-footer nav a:hover {
  color: var(--pbz-yellow);
}

.pbz-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.pbz-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .pbz-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  :root {
    --pbz-header: 70px;
  }

  .pbz-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }

  .pbz-header.is-open {
    max-height: calc(100vh - 10px);
    max-height: calc(100dvh - 10px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .pbz-brand {
    width: 148px;
  }

  .pbz-nav-toggle {
    display: block;
  }

  .pbz-nav,
  .pbz-header-actions {
    grid-column: 1 / -1;
  }

  .pbz-nav {
    display: none;
    width: 100%;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 4px;
  }

  .pbz-header.is-open .pbz-nav {
    display: flex;
  }

  .pbz-header-actions {
    display: none;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    justify-content: stretch;
  }

  .pbz-header.is-open .pbz-header-actions {
    display: grid;
  }

  .pbz-header-actions .pbz-header-cta {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .pbz-section__grid {
    grid-template-columns: 1fr;
  }

  .pbz-section__head {
    position: static;
  }

  .pbz-section__head h2 {
    font-size: clamp(1.55rem, 5.2vw, 2.55rem);
  }

  .pbz-hero {
    min-height: auto;
    background-position: 66% top;
  }

  .pbz-hero__inner {
    padding: 46px 0 58px;
  }

  .pbz-hero__shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.64)),
      linear-gradient(180deg, rgba(16, 29, 44, 0.2), rgba(16, 29, 44, 0.88));
  }

  .pbz-hero__chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pbz-promo__content {
    width: min(560px, 64%);
  }

  .pbz-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pbz-wrap {
    width: min(calc(100% - 24px), 1180px);
  }

  .pbz-header {
    grid-template-columns: minmax(0, 1fr) 46px;
    width: 100%;
    max-width: 100%;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .pbz-brand {
    width: 132px;
  }

  .pbz-nav-toggle {
    display: block !important;
  }

  .pbz-header.is-open .pbz-header-actions {
    grid-template-columns: 1fr;
  }

  .pbz-hero {
    background-position: 72% top;
  }

  .pbz-hero__inner {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin-left: 12px;
    margin-right: 12px;
    padding: 42px 0 54px;
  }

  .pbz-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.95rem, 11.6vw, 3rem);
  }

  .pbz-hero__copy,
  .pbz-hero__actions,
  .pbz-hero__chips {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .pbz-hero__copy p {
    width: 100%;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .pbz-hero__chips {
    grid-template-columns: 1fr;
  }

  .pbz-button {
    width: 100%;
  }

  .pbz-promo {
    padding: 24px 0;
  }

  .pbz-promo__card {
    min-height: 430px;
  }

  .pbz-promo__image {
    object-position: 68% center;
  }

  .pbz-promo__shade {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.22) 0%, rgba(5, 7, 10, 0.58) 42%, rgba(5, 7, 10, 0.94) 100%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.88), rgba(5, 7, 10, 0.22));
  }

  .pbz-promo__content {
    width: 100%;
    min-height: 430px;
    justify-content: flex-end;
    padding: 22px;
  }

  .pbz-promo__content::before {
    inset: auto 12px 12px;
    height: min(300px, calc(100% - 24px));
  }

  .pbz-promo__title {
    font-size: clamp(1.8rem, 9vw, 2.65rem);
  }

  .pbz-promo__actions,
  .pbz-promo__button {
    width: 100%;
  }

  .pbz-section {
    padding: 48px 0;
  }

  .pbz-section__head h2 {
    font-size: clamp(1.45rem, 7.2vw, 2.25rem);
  }

  .pbz-topic {
    padding: 16px;
  }

  .pbz-table-frame {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 620px;
    table-layout: auto;
    font-size: 0.82rem;
  }

  th,
  td {
    padding: 10px 10px;
  }

  .pbz-faq-answer {
    padding-left: 18px;
  }
}
