@layer components {
  .wz-page {
    min-height: 100vh;
    min-height: 100dvh;
    background: #fff;
    color: #4a4a4a;
    font-family: var(--font-roboto), Roboto, sans-serif;
    overflow-x: hidden;
  }

  .wz-shell {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 20px;
  }

  .wz-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
  }

  .wz-header-shell {
    padding: 0;
  }

  .wz-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
  }

  .wz-header-inner::after {
    content: "";
    display: table;
    clear: both;
  }

  .wz-logo-link {
    display: block;
    flex-shrink: 0;
  }

  .wz-logo {
    width: auto;
    height: 48px;
    max-width: 200px;
    object-fit: contain;
  }

  .wz-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    padding: 8px;
  }

  .wz-menu-icon {
    width: 18px;
    height: 2px;
    background: #333;
    box-shadow: 0 6px 0 #333, 0 -6px 0 #333;
  }

  .wz-nav {
    display: none;
  }

  .wz-nav-open {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    bottom: 0;
    z-index: 60;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 12px 20px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .wz-nav-backdrop {
    position: fixed;
    inset: 72px 0 0;
    z-index: 55;
    border: 0;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
  }

  .wz-header-menu-open {
    z-index: 80;
  }

  .wz-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .wz-nav-link {
    color: #313131;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.15s ease;
    display: block;
    padding: 10px 0;
  }

  .wz-nav-link:hover {
    color: #b8860b;
  }

  .wz-nav-link-active {
    color: #b8860b;
    font-weight: 600;
  }

  .wz-nav-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
  }

  .wz-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 44px;
    padding: 8px 18px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: filter 0.15s ease;
  }

  .wz-header-btn-register {
    background: #313131;
    color: #fff;
  }

  .wz-header-btn-register:hover {
    filter: brightness(1.08);
  }

  .wz-header-btn-login {
    border: 1px solid #313131;
    background: #fff;
    color: #313131;
  }

  .wz-header-btn-login:hover {
    background: #f5f5f5;
  }

  .wz-page-title {
    margin: 0 auto 16px;
    max-width: 1200px;
    padding: 24px 20px 0;
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    color: #000;
  }

  .wz-hero-section {
    padding-bottom: 0;
  }

  .wz-hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1920 / 600;
    background: #111;
  }

  .wz-hero-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease;
  }

  .wz-hero-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
  }

  .wz-hero-image {
    object-fit: cover;
  }

  .wz-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    translate: 0 -50%;
    cursor: pointer;
    transition: background 0.15s ease;
  }

  .wz-hero-arrow:hover {
    background: rgba(0, 0, 0, 0.65);
  }

  .wz-hero-arrow-prev {
    left: 12px;
  }

  .wz-hero-arrow-next {
    right: 12px;
  }

  .wz-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 2;
    display: flex;
    gap: 6px;
    translate: -50% 0;
  }

  .wz-hero-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
  }

  .wz-hero-dot-active {
    background: #000;
    transform: scale(1.2);
  }

  .wz-games-section {
    padding: 32px 0 40px;
    background: #fff;
  }

  .wz-games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }

  .wz-game-card {
    display: block;
    width: calc(50% - 8px);
    margin: 4px;
    overflow: hidden;
    border-radius: 0;
    transition: transform 0.2s ease, filter 0.2s ease;
  }

  .wz-game-card:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
  }

  .wz-game-card-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .wz-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }

  .wz-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 3px;
    background: #313131;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: filter 0.15s ease;
  }

  .wz-btn-dark:hover {
    filter: brightness(1.08);
  }

  .wz-btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 3px;
    border: 0;
    background: #0099de;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: filter 0.15s ease;
  }

  .wz-btn-service:hover {
    filter: brightness(1.05);
  }

  .wz-gold-section {
    position: relative;
    background: #e6cb8c;
    color: #fff;
    padding: 0 0 48px;
  }

  .wz-wave-top {
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 0;
  }

  .wz-wave-svg {
    display: block;
    width: 100%;
    height: 60px;
  }

  .wz-gold-inner {
    position: relative;
    z-index: 1;
    padding-top: 8px;
  }

  .wz-gold-title,
  .wz-gold-subtitle,
  .wz-gold-heading-sm,
  .wz-promo-heading {
    font-family: var(--font-roboto-slab), "Roboto Slab", serif;
    color: #fff;
    text-align: center;
  }

  .wz-gold-title {
    margin: 32px 0 16px;
    font-size: 28px;
    font-weight: 700;
  }

  .wz-gold-subtitle {
    margin: 28px 0 12px;
    font-size: 22px;
    font-weight: 700;
  }

  .wz-gold-heading-sm {
    margin: 32px 0 16px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
  }

  .wz-body-text {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
  }

  .wz-content-image,
  .wz-banner-image {
    display: block;
    width: min(100%, 888px);
    height: auto;
    margin: 0 auto 24px;
    border-radius: 0;
  }

  .wz-horse-promo-image {
    display: block;
    width: min(100%, 366px);
    height: auto;
    margin: 0 auto 24px;
  }

  .wz-feature-grid {
    display: grid;
    gap: 20px;
    margin-top: 24px;
  }

  .wz-feature-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
  }

  .wz-feature-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
  }

  .wz-feature-list {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
    color: #fff;
  }

  .wz-game-type-block {
    margin-top: 20px;
  }

  .wz-promo-section {
    padding: 40px 0 56px;
    background: #fff;
    color: #4a4a4a;
  }

  .wz-promo-heading {
    color: #222;
    margin: 32px 0 16px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
  }

  .wz-promo-banners {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
  }

  .wz-promo-banner-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
  }

  .wz-promo-banner-inline {
    margin-bottom: 16px;
  }

  .wz-accordion {
    display: grid;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
  }

  .wz-accordion-item {
    border-bottom: 1px solid #ddd;
  }

  .wz-accordion-item:last-child {
    border-bottom: 0;
  }

  .wz-accordion-trigger {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 10px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #1f2124;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .wz-accordion-icon {
    font-size: 10px;
    color: #666;
    flex-shrink: 0;
  }

  .wz-accordion-panel {
    padding: 12px 16px 16px;
    font-size: 14px;
    line-height: 1.8;
    background: #fff;
    color: #4a4a4a;
    border-top: 1px solid #eee;
  }

  .wz-about-text {
    color: #4a4a4a;
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.8;
  }

  .wz-partners-section {
    position: relative;
    padding: 50px 0 56px;
    background-color: #0a0a0a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("/images/winzone8/footer-bg.png");
    background-size: cover;
    background-position: center;
    color: #fff;
  }

  .wz-partners-inner {
    text-align: center;
  }

  .wz-partners-heading {
    margin: 0 0 24px;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
  }

  .wz-license-heading {
    margin: 28px 0 16px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
  }

  .wz-partners-image,
  .wz-license-image {
    display: block;
    width: min(100%, 1024px);
    height: auto;
    margin: 0 auto;
  }

  .wz-footer {
    background: #111;
    padding: 28px 0 36px;
  }

  .wz-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .wz-float-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .wz-float-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 22px 0 8px;
    border-radius: 999px;
    background: #0099de;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 153, 222, 0.35);
    transition: filter 0.15s ease;
  }

  .wz-float-service:hover {
    filter: brightness(1.05);
  }

  .wz-float-service-icon {
    display: grid;
    place-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
  }

  .wz-float-service-text {
    white-space: nowrap;
  }

  .wz-float-top {
    display: grid;
    place-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 4px;
    background: #222;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: filter 0.15s ease;
  }

  .wz-float-top:hover {
    filter: brightness(1.15);
  }

  .wz-inner-page {
    padding: 32px 0 56px;
    background: #fff;
  }

  .wz-inner-title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #000;
  }

  .wz-article-grid {
    display: grid;
    gap: 28px;
  }

  .wz-article-card {
    display: grid;
    gap: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 24px;
  }

  @media (min-width: 768px) {
    .wz-article-card {
      grid-template-columns: minmax(200px, 320px) 1fr;
      align-items: start;
      gap: 24px;
    }
  }

  .wz-article-card-image-wrap {
    display: block;
    overflow: hidden;
    border-radius: 4px;
  }

  .wz-article-card-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .wz-article-card-title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.4;
  }

  .wz-article-card-title a {
    color: #222;
    text-decoration: none;
  }

  .wz-article-card-title a:hover {
    color: #b8860b;
  }

  .wz-article-card-excerpt {
    margin: 0 0 12px;
    color: #4a4a4a;
    line-height: 1.8;
  }

  .wz-read-more {
    display: inline-block;
    color: #313131;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
  }

  .wz-read-more:hover {
    color: #b8860b;
  }

  .wz-article-body {
    color: #4a4a4a;
    line-height: 1.8;
  }

  .wz-article-heading {
    margin: 28px 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #222;
  }

  .wz-article-subheading {
    margin: 24px 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    font-family: var(--font-roboto-slab), "Roboto Slab", serif;
  }

  .wz-article-source {
    margin: 24px 0 0;
    font-size: 14px;
    color: #666;
  }

  .wz-article-source a {
    color: #313131;
    word-break: break-all;
  }

  .wz-article-paragraph {
    margin: 0 0 16px;
    font-size: 16px;
  }

  .wz-article-list {
    margin: 0 0 16px;
    padding-left: 20px;
  }

  .wz-article-image {
    display: block;
    width: min(100%, 888px);
    height: auto;
    margin: 0 auto 20px;
  }

  .wz-article-pagination {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 32px 0 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
  }

  .wz-pagination-link {
    color: #313131;
    text-decoration: none;
    font-weight: 500;
  }

  .wz-pagination-link:hover {
    color: #b8860b;
  }

  .wz-inner-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }

  .wz-deposit-page .wz-article-body,
  .wz-deposit-page .wz-article-paragraph,
  .wz-deposit-page .wz-article-list,
  .wz-deposit-page .wz-article-heading {
    color: #fff;
  }

  .wz-deposit-page .wz-article-subheading {
    font-family: var(--font-roboto-slab), "Roboto Slab", serif;
  }

  @media (max-width: 959px) {
    .wz-shell {
      padding: 0 14px;
    }

    .wz-header {
      position: sticky;
      top: 0;
      z-index: 70;
    }

    .wz-header-inner {
      min-height: 64px;
    }

    .wz-nav-open {
      top: 64px;
    }

    .wz-nav-backdrop {
      inset: 64px 0 0;
    }

    .wz-logo {
      height: 42px;
      max-width: 168px;
    }

    .wz-nav-actions {
      width: 100%;
      padding-top: 8px;
      border-top: 1px solid #eee;
    }

    .wz-header-btn {
      flex: 1;
    }

    .wz-page-title {
      font-size: 20px;
      padding: 14px 14px 0;
      line-height: 1.35;
    }

    .wz-hero-carousel {
      aspect-ratio: 16 / 9;
    }

    .wz-hero-arrow {
      width: 36px;
      height: 36px;
      min-width: 36px;
      min-height: 36px;
      font-size: 22px;
    }

    .wz-hero-arrow-prev {
      left: 8px;
    }

    .wz-hero-arrow-next {
      right: 8px;
    }

    .wz-hero-dots {
      bottom: 10px;
      gap: 8px;
    }

    .wz-games-section {
      padding: 24px 0 32px;
    }

    .wz-game-card {
      width: calc(50% - 4px);
      margin: 2px;
    }

    .wz-cta-row .wz-btn-dark {
      width: 100%;
      max-width: 320px;
    }

    .wz-btn-dark,
    .wz-btn-service {
      font-size: 16px;
      padding: 14px 20px;
      min-height: 48px;
    }

    .wz-gold-title {
      margin-top: 24px;
      font-size: 22px;
    }

    .wz-gold-subtitle {
      font-size: 18px;
    }

    .wz-gold-heading-sm {
      font-size: 16px;
    }

    .wz-body-text,
    .wz-about-text {
      font-size: 15px;
    }

    .wz-gold-section {
      padding-bottom: 32px;
    }

    .wz-wave-top,
    .wz-wave-svg {
      height: 40px;
    }

    .wz-promo-section {
      padding: 28px 0 36px;
    }

    .wz-promo-heading {
      font-size: 22px;
    }

    .wz-accordion-trigger {
      min-height: 48px;
      padding: 12px 14px;
      font-size: 13px;
    }

    .wz-partners-section {
      padding: 32px 0 40px;
    }

    .wz-partners-heading {
      font-size: 22px;
    }

    .wz-license-heading {
      font-size: 18px;
    }

    .wz-footer {
      padding: 24px 0 calc(24px + env(safe-area-inset-bottom));
    }

    .wz-footer-inner {
      flex-direction: column;
      align-items: stretch;
    }

    .wz-footer-inner .wz-btn-dark,
    .wz-footer-inner .wz-btn-service {
      width: 100%;
      max-width: none;
    }

    .wz-float-actions {
      right: 12px;
      bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .wz-float-service {
      min-height: 48px;
      padding: 0 14px 0 6px;
      font-size: 14px;
    }

    .wz-float-service-icon {
      width: 36px;
      height: 36px;
    }

    .wz-float-top {
      width: 40px;
      height: 40px;
    }

    .wz-inner-page {
      padding: 24px 0 40px;
    }

    .wz-inner-title {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .wz-article-card-title {
      font-size: 18px;
    }

    .wz-article-paragraph {
      font-size: 15px;
    }

    .wz-article-pagination {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }

    .wz-pagination-link {
      display: block;
      padding: 10px 0;
    }

    .wz-inner-cta-row {
      flex-direction: column;
      align-items: stretch;
    }

    .wz-inner-cta-row .wz-btn-dark,
    .wz-inner-cta-row .wz-btn-service {
      width: 100%;
      max-width: none;
    }

    .wz-keyword-banner {
      font-size: 14px;
      padding: 12px 14px;
    }

    .wz-internal-links {
      padding: 14px 16px;
      margin: 18px 0;
    }

    .wz-internal-links-list {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 480px) {
    .wz-shell {
      padding: 0 12px;
    }

    .wz-page-title {
      font-size: 18px;
    }

    .wz-float-service-text {
      font-size: 13px;
    }

    .wz-partners-heading {
      font-size: 20px;
    }

    .wz-feature-title {
      font-size: 18px;
    }

    .wz-horse-promo-image {
      width: min(100%, 280px);
    }
  }

  .wz-internal-links {
    margin: 24px 0;
    padding: 18px 20px;
    border: 1px solid #e8dfc0;
    border-radius: 8px;
    background: #faf6eb;
  }

  .wz-internal-links-gold {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.18);
  }

  .wz-internal-links-title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: #5c4a1f;
  }

  .wz-internal-links-gold .wz-internal-links-title {
    color: #fff;
  }

  .wz-internal-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }

  @media (min-width: 640px) {
    .wz-internal-links-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .wz-internal-link-chip {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ead9a8;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }

  .wz-internal-links-gold .wz-internal-link-chip {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
  }

  .wz-internal-link-chip:hover {
    border-color: #b8860b;
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.12);
  }

  .wz-internal-link-label {
    font-size: 15px;
    font-weight: 600;
    color: #313131;
  }

  .wz-internal-links-gold .wz-internal-link-label {
    color: #fff;
  }

  .wz-internal-link-hint {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
  }

  .wz-internal-links-gold .wz-internal-link-hint {
    color: rgba(255, 255, 255, 0.78);
  }

  .wz-keyword-banner {
    margin: 0 0 20px;
    padding: 14px 16px;
    border-left: 4px solid #b8860b;
    background: #faf6eb;
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
  }

  .wz-keyword-banner-gold {
    border-left-color: #f5d76e;
    background: rgba(0, 0, 0, 0.16);
    color: #fff;
  }

  .wz-article-body + .wz-keyword-banner {
    margin-top: 24px;
  }

  .wz-keyword-link {
    color: #b8860b;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .wz-keyword-banner-gold .wz-keyword-link {
    color: #ffe08a;
  }

  .wz-keyword-link:hover {
    color: #8b6914;
  }

  .wz-keyword-banner-gold .wz-keyword-link:hover {
    color: #fff;
  }

  @media (min-width: 768px) {
    .wz-article-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wz-game-card {
      width: calc(33.333% - 8px);
    }
  }

  @media (min-width: 960px) {
    .wz-header {
      position: relative;
    }

    .wz-header-inner {
      display: block;
      min-height: 145px;
      padding: 0 20px;
    }

    .wz-logo-link {
      float: left;
      width: 300px;
      height: 145px;
      display: flex;
      align-items: center;
    }

    .wz-logo {
      height: 95px;
      max-width: 300px;
    }

    .wz-menu-toggle {
      display: none;
    }

    .wz-nav {
      display: block;
      float: right;
      width: auto;
      max-width: calc(100% - 320px);
      height: 145px;
      position: static;
      padding: 0;
      border: 0;
    }

    .wz-nav-list {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
      height: 100%;
      gap: 22px;
    }

    .wz-nav-link {
      font-size: 18px;
      display: inline;
      padding: 0;
    }

    .wz-nav-backdrop {
      display: none;
    }

    .wz-nav-actions {
      width: auto;
      padding-top: 0;
      border-top: 0;
    }

    .wz-header-btn {
      flex: initial;
      min-width: 80px;
      padding: 9px 20px;
      font-size: 18px;
    }

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

    .wz-promo-banners {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
}
