    :root {

      --bg: #070707;

      --panel: #101010;

      --panel-2: #17100a;

      --text: #fff8e8;

      --muted: #b8b0a8;

      --orange: #ff8a00;

      --gold: #ffc544;

      --red: #e72a2d;

      --purple: #c72dff;

      --blue: #28b9ff;

      --line: rgba(255, 190, 65, .34);

      --shadow: rgba(0, 0, 0, .48);

      font-family: Inter, "Segoe UI", Arial, sans-serif;

    }



    * { box-sizing: border-box; }

    body {

      margin: 0;

      color: var(--text);

      background:

        radial-gradient(circle at 18% 6%, rgba(255, 138, 0, .16), transparent 28rem),

        radial-gradient(circle at 88% 32%, rgba(199, 45, 255, .11), transparent 24rem),

        linear-gradient(180deg, #070707 0%, #0d0704 48%, #050505 100%);

    }



    a { color: inherit; text-decoration: none; }

    .wrap { width: min(1280px, calc(100% - 80px)); margin: 0 auto; }



    .topbar {

      height: 78px;

      display: flex;

      align-items: center;

      background: #171717;

      border-bottom: 1px solid rgba(255,255,255,.06);

    }



    .topbar .wrap,

    .nav .wrap {

      display: flex;

      align-items: center;

      justify-content: space-between;

    }



    .brand {

      display: inline-flex;

      align-items: baseline;

      gap: 2px;

      font-size: 44px;

      font-weight: 950;

      font-style: italic;

      letter-spacing: 0;

      line-height: .9;

      text-shadow: 0 8px 22px rgba(255, 138, 0, .24);

    }



    .brand .num { color: var(--orange); }

    .brand .word { color: #fff; }



    .account { display: flex; align-items: center; gap: 20px; }

    .account a {

      min-width: 118px;

      height: 40px;

      display: inline-flex;

      align-items: center;

      justify-content: center;

      border-left: 1px solid rgba(255,255,255,.12);

      color: #fff;

      font-size: 15px;

      font-weight: 900;

      text-transform: uppercase;

      text-shadow: 0 0 16px var(--purple), 0 0 4px #fff;

    }



    .nav {

      min-height: 70px;

      background: var(--red);

      box-shadow: 0 12px 34px rgba(231, 42, 45, .25);

    }



    .nav-menu {

      display: flex;

      align-items: center;

      gap: 28px;

      margin: 0;

      padding: 0;

      list-style: none;

      color: #291010;

      font-weight: 950;

      text-transform: uppercase;

      font-size: 16px;

    }



    .nav-menu a {

      position: relative;

      display: inline-flex;

      min-height: 70px;

      align-items: center;

      color: rgba(35, 12, 14, .88);

      text-shadow: 0 1px rgba(255,255,255,.18);

    }



    .nav-menu a.active::after {

      content: "";

      position: absolute;

      left: 0;

      right: 0;

      bottom: 12px;

      height: 4px;

      border-radius: 99px;

      background: #101010;

      box-shadow: 0 0 16px var(--purple);

    }



    .nav-cta {

      min-width: 164px;

      height: 42px;

      display: inline-flex;

      align-items: center;

      justify-content: center;

      border-radius: 6px;

      color: #1b0e00;

      background: linear-gradient(180deg, #ffe36e, #ff8a00);

      font-size: 15px;

      font-weight: 950;

      box-shadow: 0 10px 24px rgba(255, 138, 0, .32);

    }



    .hero {

      position: relative;

      overflow: hidden;

      min-height: 650px;

      background:

        linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.58) 35%, rgba(0,0,0,.08) 72%),

        linear-gradient(180deg, rgba(255,138,0,.96), rgba(120,52,0,.9));

    }



    .hero::before {

      content: "";

      position: absolute;

      inset: 0;

      background: url("hero-casino.png") center right / cover no-repeat;

      opacity: .98;

    }



    .hero::after {

      content: "";

      position: absolute;

      inset: auto 0 0;

      height: 170px;

      background: linear-gradient(180deg, transparent, #070707);

    }



    .hero .wrap {

      position: relative;

      z-index: 1;

      min-height: 650px;

      display: grid;

      grid-template-columns: minmax(0, 560px) 1fr;

      align-items: center;

    }



    h1 {

      margin: 0;

      font-size: 70px;

      line-height: 1.02;

      font-weight: 950;

      color: #fff;

      text-shadow: 0 6px 28px rgba(0,0,0,.58);

    }



    .hero-copy p {

      max-width: 560px;

      margin: 24px 0 0;

      color: #ffe4b0;

      font-size: 21px;

      line-height: 1.55;

      font-weight: 650;

    }



    .hero-actions {

      display: flex;

      gap: 18px;

      margin-top: 34px;

    }



    .btn {

      display: inline-flex;

      align-items: center;

      justify-content: center;

      min-width: 190px;

      height: 56px;

      border-radius: 6px;

      font-weight: 950;

      font-size: 17px;

      border: 1px solid transparent;

    }



    .btn.primary {

      color: #1c0e00;

      background: linear-gradient(180deg, #ffe474, #ff8a00);

      box-shadow: 0 18px 34px rgba(255, 138, 0, .36);

    }



    .btn.secondary {

      color: #fff;

      border-color: rgba(255,255,255,.36);

      background: rgba(10, 10, 10, .46);

      backdrop-filter: blur(8px);

    }



    .hero-stats {

      display: grid;

      grid-template-columns: repeat(3, minmax(0, 1fr));

      gap: 14px;

      margin-top: 36px;

      max-width: 610px;

    }



    .stat {

      display: grid;

      grid-template-columns: 46px 1fr;

      gap: 12px;

      align-items: center;

      padding: 14px;

      border: 1px solid rgba(255, 197, 68, .3);

      border-radius: 8px;

      background: rgba(0,0,0,.42);

      box-shadow: 0 12px 28px rgba(0,0,0,.26);

    }



    .stat i,

    .game i,

    .trust i {

      display: inline-grid;

      place-items: center;

      width: 46px;

      height: 46px;

      border-radius: 8px;

      color: #0c0700;

      background: linear-gradient(180deg, #fff07e, #ff8a00);

      font-style: normal;

      font-weight: 950;

      box-shadow: inset 0 1px rgba(255,255,255,.5), 0 8px 24px rgba(255, 138, 0, .28);

    }



    .stat strong { display: block; font-size: 16px; color: #fff; }

    .stat span { display: block; margin-top: 3px; font-size: 13px; color: var(--muted); }



    section { position: relative; padding: 72px 0; }



    .section-title {

      display: flex;

      align-items: center;

      justify-content: center;

      gap: 28px;

      margin-bottom: 34px;

      text-align: center;

    }



    .section-title::before,

    .section-title::after {

      content: "";

      width: 144px;

      height: 2px;

      background: linear-gradient(90deg, transparent, var(--gold), transparent);

    }



    .section-title h2 {

      margin: 0;

      font-size: 40px;

      line-height: 1.1;

      color: #fff;

      font-weight: 950;

    }



    .game-rail {

      margin-top: -54px;

      position: relative;

      z-index: 2;

      padding: 0;

    }



    .game-panel {

      display: grid;

      grid-template-columns: repeat(6, minmax(0, 1fr));

      gap: 1px;

      overflow: hidden;

      border: 1px solid rgba(255, 197, 68, .46);

      border-radius: 8px;

      background: rgba(255, 197, 68, .28);

      box-shadow: 0 24px 70px rgba(0,0,0,.46);

    }



    .game {

      min-height: 170px;

      display: grid;

      place-items: center;

      padding: 24px 18px;

      text-align: center;

      background:

        radial-gradient(circle at 50% 18%, rgba(255,138,0,.18), transparent 7rem),

        rgba(8, 8, 8, .94);

    }



    .game i {

      margin: 0 auto 16px;

      color: #fff7d8;

      background: transparent;

      border: 1px solid rgba(255,197,68,.5);

      box-shadow: 0 0 28px rgba(255,138,0,.36);

      font-size: 28px;

    }



    .game h3 { margin: 0; color: var(--gold); font-size: 19px; }

    .game p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.42; }



    .bonus-grid {

      display: grid;

      grid-template-columns: repeat(4, minmax(0, 1fr));

      gap: 22px;

    }



    .bonus {

      min-height: 265px;

      padding: 28px;

      border: 1px solid rgba(255, 197, 68, .34);

      border-radius: 8px;

      background:

        radial-gradient(circle at 80% 0%, rgba(199,45,255,.14), transparent 9rem),

        linear-gradient(180deg, rgba(34, 17, 5, .96), rgba(7, 7, 7, .96));

      box-shadow: 0 18px 38px var(--shadow);

    }



    .bonus .big {

      display: block;

      color: var(--gold);

      font-size: 54px;

      font-weight: 950;

      line-height: 1;

      text-shadow: 0 0 24px rgba(255,138,0,.45);

    }



    .bonus h3 { margin: 22px 0 0; font-size: 22px; color: #fff; }

    .bonus p { margin: 12px 0 0; color: var(--muted); line-height: 1.55; }



    .articles {

      background:

        linear-gradient(180deg, rgba(255,138,0,.06), transparent 13rem),

        rgba(0,0,0,.18);

    }



    .article-head {

      display: flex;

      align-items: end;

      justify-content: space-between;

      margin-bottom: 24px;

    }



    .article-head .section-title {

      justify-content: flex-start;

      margin: 0;

    }



    .article-head .section-title::before { display: none; }



    .view-all {

      display: inline-flex;

      align-items: center;

      justify-content: center;

      width: 118px;

      height: 42px;

      border: 1px solid rgba(255,255,255,.28);

      border-radius: 6px;

      color: #fff;

      font-weight: 850;

      background: rgba(255,255,255,.04);

    }



    .article-grid {

      display: grid;

      grid-template-columns: repeat(3, minmax(0, 1fr));

      gap: 22px;

    }



    .post {

      overflow: hidden;

      border: 1px solid rgba(255, 197, 68, .34);

      border-radius: 8px;

      background: linear-gradient(180deg, rgba(18, 12, 8, .94), rgba(5, 5, 5, .98));

      box-shadow: 0 20px 44px rgba(0,0,0,.35);

    }



    .post-img {
      display: block;
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }



    .post-img img {

      width: 100%;

      height: 100%;

      display: block;

      object-fit: cover;

    }



    .post-img::after {

      content: "";

      position: absolute;

      inset: auto 0 0;

      height: 46%;

      background: linear-gradient(transparent, rgba(0,0,0,.85));

    }



    .date {

      position: absolute;

      z-index: 2;

      left: 14px;

      top: 14px;

      min-width: 52px;

      padding: 8px 7px;

      border-radius: 6px;

      color: #170a00;

      background: linear-gradient(180deg, #ffe779, #ff8a00);

      text-align: center;

      line-height: 1;

      font-weight: 950;

      box-shadow: 0 10px 20px rgba(0,0,0,.36);

    }



    .date b { display: block; font-size: 17px; }

    .date span { display: block; margin-top: 3px; font-size: 12px; }



    .post-body { padding: 20px 20px 22px; }

    .cat {

      display: inline-block;

      margin-bottom: 10px;

      color: var(--purple);

      font-size: 12px;

      font-weight: 950;

      text-transform: uppercase;

    }



    .post h3 {

      margin: 0;

      min-height: 58px;

      color: #fff3c0;

      font-size: 21px;

      line-height: 1.25;

      font-weight: 950;

    }



    .post p {

      margin: 12px 0 0;

      color: var(--muted);

      font-size: 15px;

      line-height: 1.55;

    }



    .intro {

      display: grid;

      grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);

      gap: 34px;

      align-items: center;

    }



    .intro-copy {

      padding: 36px;

      border-left: 5px solid var(--red);

      background:

        linear-gradient(90deg, rgba(231,42,45,.16), transparent 70%),

        rgba(255,255,255,.025);

    }



    .intro-copy h2 {

      margin: 0;

      color: #fff;

      font-size: 42px;

      line-height: 1.12;

      font-weight: 950;

    }



    .intro-copy p {

      margin: 18px 0 0;

      color: var(--muted);

      font-size: 18px;

      line-height: 1.65;

    }



    .trust-grid {

      display: grid;

      grid-template-columns: repeat(2, minmax(0, 1fr));

      gap: 18px;

    }



    .trust {

      padding: 22px;

      border: 1px solid rgba(255,255,255,.12);

      border-radius: 8px;

      background: rgba(255,255,255,.04);

    }



    .trust i { margin-bottom: 14px; }

    .trust h3 { margin: 0; color: var(--gold); font-size: 18px; }

    .trust p { margin: 8px 0 0; color: var(--muted); line-height: 1.48; }



    footer {

      padding: 42px 0 28px;

      border-top: 1px solid rgba(255,255,255,.1);

      background: #111;

    }



    .footer-grid {

      display: grid;

      grid-template-columns: 1.1fr .8fr .8fr 1fr;

      gap: 34px;

    }



    footer h3 {

      margin: 0 0 14px;

      color: #fff;

      font-size: 17px;

    }



    footer p,

    footer a {

      display: block;

      margin: 7px 0;

      color: var(--muted);

      font-size: 14px;

    }



    .pay-row { display: flex; flex-wrap: wrap; gap: 10px; }

    .pay-row span {

      min-width: 64px;

      padding: 8px 10px;

      border: 1px solid rgba(255,255,255,.18);

      border-radius: 6px;

      color: #fff;

      text-align: center;

      font-weight: 900;

      background: rgba(255,255,255,.04);

    }



    .copyright {

      display: flex;

      justify-content: space-between;

      margin-top: 30px;

      padding-top: 20px;

      border-top: 1px solid rgba(255,255,255,.08);

      color: #8e8780;

      font-size: 13px;

    }



.article-page {

  padding-top: 64px;

  background:

    radial-gradient(circle at 85% 12%, rgba(255, 138, 0, .14), transparent 24rem),

    linear-gradient(180deg, #0a0705, #050505 62%);

}



.article-hero {

  position: relative;

  min-height: 360px;

  display: grid;

  align-items: center;

  overflow: hidden;

  background:

    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.58), rgba(0,0,0,.16)),

    url("hero-casino.png") center right / cover no-repeat;

}



.article-hero::after {

  content: "";

  position: absolute;

  inset: auto 0 0;

  height: 120px;

  background: linear-gradient(180deg, transparent, #070707);

}



.article-hero .wrap {

  position: relative;

  z-index: 1;

}



.article-hero h1 {

  max-width: 860px;

  font-size: 54px;

}



.article-meta {

  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 20px;

  color: #ffd98a;

  font-weight: 800;

}



.article-layout {

  display: grid;

  grid-template-columns: minmax(0, 1fr) 340px;

  gap: 28px;

  align-items: start;

}



.article-card,

.side-card {

  border: 1px solid rgba(255, 197, 68, .28);

  border-radius: 8px;

  background: linear-gradient(180deg, rgba(18, 12, 8, .96), rgba(5, 5, 5, .98));

  box-shadow: 0 20px 44px rgba(0,0,0,.35);

}



.article-card {

  padding: 34px;

}



.article-card h2,

.article-card h3 {

  margin: 28px 0 14px;

  color: #fff3c0;

  line-height: 1.22;

}



.article-card p,

.article-card li {

  color: var(--muted);

  font-size: 17px;

  line-height: 1.78;

}



.article-card p:first-child {

  margin-top: 0;

}



.article-card a {

  color: var(--gold);

  font-weight: 850;

}



.article-card img {

  max-width: 100%;

  height: auto;

  border-radius: 8px;

}



.side-card {

  padding: 24px;

  position: sticky;

  top: 20px;

}



.side-card h3 {

  margin: 0 0 14px;

  color: #fff;

}



.side-card a,

.side-card span {

  display: block;

  padding: 12px 0;

  border-top: 1px solid rgba(255,255,255,.08);

  color: var(--muted);

}



.page-nav {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;

  margin-top: 24px;

}



.page-nav a,

.page-nav span {

  display: block;

  padding: 16px;

  border: 1px solid rgba(255, 197, 68, .28);

  border-radius: 8px;

  color: #fff3c0;

  background: rgba(255,255,255,.035);

}



.article-pager {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.article-list-pager {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.article-pager .pagination,
.article-list-pager .pagination {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin: 0;

  padding: 0;

  list-style: none;

}



.article-pager a,

.article-pager span,

.article-list-pager a,

.article-list-pager span {

  display: inline-flex;

  min-width: 38px;

  height: 38px;

  align-items: center;

  justify-content: center;

  padding: 0 12px;

  border-radius: 6px;

  border: 1px solid rgba(255,197,68,.28);

  color: #fff;

  background: rgba(255,255,255,.04);

}



@media (max-width: 1180px) {

  .wrap { width: min(100% - 36px, 960px); }

  .nav-menu { gap: 16px; font-size: 14px; }

  .hero .wrap { grid-template-columns: minmax(0, 1fr); }

  h1 { font-size: 56px; }

  .hero-copy p { max-width: 650px; }

  .game-panel { grid-template-columns: repeat(3, minmax(0, 1fr)); }

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

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

  .intro { grid-template-columns: 1fr; }

  .article-layout { grid-template-columns: 1fr; }

  .side-card { position: static; }

}



@media (max-width: 760px) {

  .wrap { width: min(100% - 28px, 560px); }

  .topbar { height: auto; padding: 18px 0; }

  .topbar .wrap, .nav .wrap { gap: 16px; align-items: flex-start; }

  .topbar .wrap { flex-direction: column; }

  .account { width: 100%; gap: 8px; }

  .account a { flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 6px; }

  .nav { padding: 12px 0; }

  .nav .wrap { flex-direction: column; }

  .nav-menu { width: 100%; overflow-x: auto; gap: 18px; padding-bottom: 4px; }

  .nav-menu a { min-height: 42px; white-space: nowrap; }

  .nav-menu a.active::after { bottom: 0; }

  .nav-cta { width: 100%; }

  .brand { font-size: 38px; }

  .hero, .hero .wrap { min-height: 700px; }

  .hero::before { background-position: 62% center; opacity: .62; }

  h1 { font-size: 43px; }

  .hero-copy p { font-size: 17px; }

  .hero-actions, .hero-stats { grid-template-columns: 1fr; flex-direction: column; }

  .hero-stats { display: grid; }

  .btn { width: 100%; }

  .game-panel, .bonus-grid, .article-grid, .trust-grid, .footer-grid, .page-nav { grid-template-columns: 1fr; }

  .article-head { align-items: flex-start; flex-direction: column; gap: 18px; }

  .section-title { gap: 12px; margin-bottom: 24px; }

  .section-title::before, .section-title::after { width: 42px; }

  .section-title h2, .intro-copy h2 { font-size: 32px; }

  section { padding: 52px 0; }

  .article-card { padding: 24px 18px; }

  .article-hero h1 { font-size: 38px; }

  .copyright { flex-direction: column; gap: 10px; }

}

/* 56WIN supplemental column links 202607062150 */
.win56-support .bonus{display:flex;flex-direction:column;min-height:310px}
.win56-support .bonus p{flex:1}
.win56-card-link{display:inline-flex;align-items:center;justify-content:center;min-height:42px;margin-top:18px;padding:0 16px;border-radius:6px;background:linear-gradient(180deg,#ffe36e,#ff8a00);color:#1b0e00!important;font-weight:950;text-decoration:none}
.article-card ul{padding-left:22px;margin:14px 0 24px}
.article-card li{margin-bottom:10px}

/* 56WIN article reference layout 202607071755 */
.win56-article-redesign {
  background: #fff !important;
  color: #0b0b0f;
}
.win56-article-redesign .zref-hero {
  position: relative;
  min-height: 310px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 38px 0 56px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 34%, rgba(0,0,0,.16) 70%),
    url("/assets/hero-casino.png") center right / cover no-repeat;
}
.win56-article-redesign .zref-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 86px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.28));
}
.win56-article-redesign .zref-hero .wrap {
  position: relative;
  z-index: 1;
}
.win56-article-redesign .zref-hero-copy {
  width: min(590px, 100%);
}
.win56-article-redesign .zref-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 8px 28px rgba(0,0,0,.62);
}
.win56-article-redesign .zref-hero p {
  margin: 20px 0 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.6;
  font-weight: 700;
}
.win56-article-redesign .zref-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.win56-article-redesign .zref-btn {
  display: inline-flex;
  min-width: 114px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
}
.win56-article-redesign .zref-btn.primary {
  color: #fff;
  background: #d71925;
  box-shadow: 0 16px 28px rgba(215,25,37,.26);
}
.win56-article-redesign .zref-btn.secondary {
  color: #fff;
  border: 1px solid rgba(255,199,66,.72);
  background: rgba(0,0,0,.36);
}
.win56-article-redesign .zref-body {
  padding: 62px 0 58px;
  background: #fff;
}
.win56-article-redesign .zref-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}
.win56-article-redesign .zref-article,
.win56-article-redesign .zref-side {
  border: 1px solid #f0cf8a;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(35,22,0,.08);
}
.win56-article-redesign .zref-article {
  min-height: 640px;
  padding: 38px 38px 42px;
}
.win56-article-redesign .zref-meta {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  color: #0d0d10;
  background: #fff2c8;
  font-size: 14px;
  font-weight: 900;
}
.win56-article-redesign .zref-article h1 {
  margin: 22px 0 16px;
  color: #111116;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: none;
}
.win56-article-redesign .zref-article h2 {
  margin: 24px 0 12px;
  color: #05070b;
  font-size: 25px;
  line-height: 1.28;
  font-weight: 950;
}
.win56-article-redesign .zref-article h3 {
  margin: 20px 0 8px;
  color: #111116;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}
.win56-article-redesign .zref-article p,
.win56-article-redesign .zref-article li {
  color: #252a31;
  font-size: 17px;
  line-height: 1.78;
}
.win56-article-redesign .zref-article ul {
  margin: 14px 0 22px;
  padding-left: 22px;
}
.win56-article-redesign .zref-article li {
  margin-bottom: 8px;
}
.win56-article-redesign .zref-article a {
  color: #c81622;
  font-weight: 850;
}
.win56-article-redesign .zref-article img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.win56-article-redesign .zref-side {
  position: sticky;
  top: 20px;
  padding: 24px;
}
.win56-article-redesign .zref-side h3 {
  margin: 0 0 16px;
  color: #05070b;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 950;
  white-space: nowrap;
}
.win56-article-redesign .zref-side a,
.win56-article-redesign .zref-side span {
  display: flex;
  align-items: center;
  min-height: 56px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid #f0cf8a;
  border-radius: 7px;
  color: #05070b;
  background: #fff;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}
.win56-article-redesign .zref-side span {
  color: #7c6900;
  background: #fff9df;
}
.win56-article-redesign .zref-more {
  padding: 0 0 72px;
  background: #fff;
}
.win56-article-redesign .zref-more h2 {
  margin: 0 0 22px;
  color: #111116;
  font-size: 32px;
  font-weight: 950;
}
.win56-article-redesign .zref-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.win56-article-redesign .zref-card-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid #f0cf8a;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(35,22,0,.06);
}
.win56-article-redesign .zref-card-grid strong {
  display: block;
  color: #111116;
  font-size: 19px;
  font-weight: 950;
}
.win56-article-redesign .zref-card-grid p {
  margin: 10px 0 16px;
  color: #3d4148;
  line-height: 1.62;
}
.win56-article-redesign .zref-card-grid a {
  color: #d71925;
  font-weight: 950;
}
.win56-article-redesign .page-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.win56-article-redesign .page-nav a,
.win56-article-redesign .page-nav span {
  display: block;
  padding: 14px;
  border: 1px solid #f0cf8a;
  border-radius: 8px;
  color: #111116;
  background: #fff9df;
}
@media (max-width: 980px) {
  .win56-article-redesign .zref-layout,
  .win56-article-redesign .zref-card-grid {
    grid-template-columns: 1fr;
  }
  .win56-article-redesign .zref-side {
    position: static;
  }
  .win56-article-redesign .zref-hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 640px) {
  .win56-article-redesign .zref-hero {
    min-height: 430px;
    background-position: 64% center;
  }
  .win56-article-redesign .zref-hero h1,
  .win56-article-redesign .zref-article h1 {
    font-size: 38px;
  }
  .win56-article-redesign .zref-hero p,
  .win56-article-redesign .zref-article p,
  .win56-article-redesign .zref-article li {
    font-size: 16px;
  }
  .win56-article-redesign .zref-article {
    padding: 26px 20px 30px;
  }
  .win56-article-redesign .zref-actions {
    flex-direction: column;
  }
  .win56-article-redesign .zref-btn {
    width: 100%;
  }
}
