:root {
  --bg: #04112f;
  --bg-head: #002461;
  --bg-nav: #031c55;
  --bg-card: #041848;
  --bg-card-2: #05205f;
  --bg-chip: #0c2b70;
  --bg-chip-2: #0e2f7b;
  --line: #0c2b70;
  --text: #b6dafb;
  --muted: #6885a0;
  --gold: #ffd800;
  --gold-2: #f5cb61;
  --ink: #04112f;
  --card-w: 140px;
  --gap: 8px;
  --radius: 8px;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
.scroller::-webkit-scrollbar,
.drawer__panel::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.scroller,
.drawer__panel {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}

.btn--ghost {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn--wide {
  width: 100%;
  height: 44px;
}

.hdr {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--bg-head);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hdr__in {
  display: grid;
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  height: 62px;
  padding: 0 16px;
}

.hdr__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
}

.burger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}

.hdr__nav {
  display: none;
  gap: 16px;
}

.hdr__navlink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
}

.hdr__navlink.is-active {
  border-bottom-color: var(--gold);
}

.hdr__logo {
  justify-self: center;
}

.hdr__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hdr__right .btn--gold {
  display: none;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  visibility: hidden;
}

.drawer__back {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 29, 0.8);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  max-width: 86vw;
  background: var(--bg-card);
  border-right: 1px solid var(--line);
  transform: translateX(-100%);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.is-menu .drawer {
  visibility: visible;
}

.is-menu .drawer__back {
  opacity: 1;
}

.is-menu .drawer__panel {
  transform: none;
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.drawer__close {
  width: 32px;
  height: 32px;
  font-size: 26px;
  line-height: 1;
  color: var(--gold);
}

.drawer__btns {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.drawer__list {
  list-style: none;
  padding: 0 8px 24px;
}

.drawer__list a {
  display: block;
  padding: 11px 12px;
  border-radius: var(--radius);
  font-size: 15px;
}

.drawer__list .is-active a {
  background: var(--bg-chip);
  color: var(--gold);
}

.hero {
  padding: 0;
}

.hero .wrap {
  position: relative;
  max-width: none;
  padding: 0;
}

.hero__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  grid-auto-rows: 100%;
  aspect-ratio: 2 / 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.hero__slide {
  scroll-snap-align: start;
  height: 100%;
}

.hero__slide picture {
  display: block;
  height: 100%;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__dots {
  display: none;
}

.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(182, 218, 251, 0.35);
}

.hero__dot.is-active {
  background: var(--gold);
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-chip);
  color: var(--text);
  font-size: 15px;
  line-height: 1;
  flex: none;
}

.hero__arrows {
  display: none;
}

.gnav {
  background: var(--bg-nav);
  border-top: 1px solid rgba(12, 43, 112, 0.6);
  border-bottom: 1px solid rgba(12, 43, 112, 0.6);
}

.gnav__row {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 6px 0;
}

.gnav__brand {
  flex: none;
  padding-right: 12px;
}

.gnav__item {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  white-space: nowrap;
}

.gnav__item.is-active {
  background: var(--bg-chip-2);
  color: var(--gold);
}

@media (min-width: 1100px) {
  .gnav .wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .gnav__row {
    padding: 8px 0;
  }
}

.gnav--panel {
  border: 0;
}

.gnav--panel .wrap {
  display: block;
  max-width: none;
  padding: 0;
}

.gnav--panel .gnav__row {
  gap: 8px;
  height: 44px;
  padding: 4px 16px 0;
  overflow: visible;
}

.gnav--panel .gnav__item {
  flex: 2 1 0;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  height: 39px;
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gnav--panel .gnav__item--sm {
  flex-grow: 1;
  gap: 0;
}

.gnav--panel .gnav__item--sm .gnav__name {
  display: none;
}

.gnav--panel .gnav__name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.gnav--panel .gnav__item img {
  width: 24px;
  height: 24px;
  flex: none;
}

.gnav--panel .gnav__brand {
  padding: 0;
}

.gnav--panel .gnav__brand img {
  width: auto;
  height: 24px;
}

.gnav--panel .gnav__item.is-active {
  height: 40px;
  border-radius: 2px 2px 0 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--gold);
}

.jackcar {
  padding: 18px 0 6px;
}

.jackcar .wrap {
  position: relative;
}

.jackcar__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  height: 415px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 2px;
}

@media (min-width: 321px) {
  .jackcar__track {
    height: 330px;
  }
}

.jackcar__slide {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  scroll-snap-align: start;
}

.jackcar__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jackcar__crown {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: calc(100% - 30px);
  object-fit: contain;
  opacity: 0.55;
}

.jackcar__in {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 16px 30px;
  text-align: center;
}

.jackcar__cap {
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  color: #fff;
}

.jackcar__logo {
  width: 232px;
  height: auto;
}

.jackcar__sum {
  font-size: 44px;
  font-weight: 700;
  line-height: 60px;
  color: var(--gold);
}

.jackcar__note {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--gold);
}

.jackcar__more {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-decoration: underline;
  color: #fff;
}

.jackcar__dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.jackcar__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.jackcar__dot.is-active {
  background: var(--gold);
}

.jackcar__arrows {
  display: none;
}

.magic {
  position: fixed;
  right: -10px;
  bottom: 138px;
  z-index: 20;
  width: 68px;
}

.magic__gift {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
}

.magic__gift img {
  width: 66px;
  height: 66px;
}

.sect {
  padding: 14px 0 2px;
}

.sect__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.sect__name {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sect__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sect__act {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

.sect__all {
  font-size: 13px;
  color: var(--muted);
}

.sect__row {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(7, var(--card-w));
  grid-template-rows: repeat(1, 1fr);
  grid-auto-columns: var(--card-w);
  gap: 8px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.sect__row:has(> :nth-child(8)) {
  grid-template-rows: repeat(2, 1fr);
}

.sect__row:has(> :nth-child(15)) {
  grid-template-rows: repeat(3, 1fr);
}

.card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 186 / 130;
}

.card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__stub {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-2);
  background: linear-gradient(160deg, var(--bg-card-2), var(--bg-card));
}

.badge {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--gap);
}

.provrow {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.provgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: start;
  gap: 16px;
  padding-top: 16px;
}

.page-providers section.wrap {
  max-width: none;
  padding: 32px 16px 0;
}

.prov {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: none;
  min-width: 170px;
  min-height: 96px;
  padding: 14px 12px;
  border-radius: 12px;
  background: var(--bg-card);
  text-align: center;
}

.prov img {
  width: 140px;
  height: 44px;
  object-fit: contain;
}

.prov__name {
  font-size: 13px;
  font-weight: 600;
}

.prov__count {
  font-size: 12px;
  color: var(--muted);
}

.prov__label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 8px;
  border-radius: 0 12px 0 8px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.provhero {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-card);
  margin-bottom: 12px;
}

.provhero__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.provhero__side img {
  width: 120px;
  height: 46px;
  object-fit: contain;
}

.provhero__games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.provgrid .provhero {
  grid-area: 1 / 1 / 4 / 3;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  gap: 0;
  margin: 0;
  padding: 0;
  border-radius: 8px;
}

.provgrid .provhero__side {
  height: 134px;
  justify-content: center;
  gap: 0;
}

.provgrid .provhero__games {
  gap: 8px;
  padding: 16px 0;
}

.provgrid .provhero__games .card {
  width: 100px;
  height: 69px;
}

.provgrid .prov {
  min-width: 0;
  min-height: 0;
  height: 54px;
  gap: 0;
  padding: 2px 6px;
  border-radius: 8px;
}

.provgrid .prov img {
  width: 110px;
  height: 26px;
}

.provgrid .prov__name {
  font-size: 11px;
  line-height: 13px;
}

.provgrid .prov__count {
  font-size: 10px;
  line-height: 11px;
}

.jack {
  display: block;
  position: relative;
  margin: 18px 0 6px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card-2);
}

.jack__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.jack__in {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 34px 16px;
  text-align: center;
}

.jack__logo {
  height: 34px;
  width: auto;
}

.jack__sum {
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
}

.jack__note {
  font-size: 13px;
  color: var(--gold-2);
}

.jack__more {
  font-size: 13px;
  text-decoration: underline;
  color: var(--text);
}

.promogrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.promo {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.promo img {
  width: 100%;
  height: auto;
}

.promo__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.promo__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-2);
}

.promo__meta {
  font-size: 12px;
  color: var(--muted);
}

.tourlist {
  display: grid;
  gap: 16px;
}

.tour {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.tour img {
  width: 100%;
  height: auto;
}

.tour__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
}

.tour__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-2);
}

.tour__meta {
  font-size: 12px;
  color: var(--muted);
}

.tour__state {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-chip);
  color: var(--gold);
}

.ptitle {
  padding: 18px 0 12px;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}

.info {
  padding: 26px 0 8px;
}

.page-home .info {
  padding: 48px 16px 64px;
}

.page-home .info .wrap {
  max-width: none;
  height: 267px;
  padding: 0 12px 0 0;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-size: 16px;
  line-height: 24px;
}

.page-home .info .wrap::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.page-home .info h1 {
  font-size: 1.5em;
  line-height: 1.2;
}

.page-home .info h2 {
  font-size: 1.2em;
  line-height: 1.2;
}

.page-home .info h3 {
  font-size: 1.1em;
  line-height: 1.2;
}

.page-home .info p,
.page-home .info li {
  font-size: 1em;
  line-height: 1.3;
}

.info h1 {
  font-size: 26px;
  line-height: 1.25;
  color: var(--gold);
  margin-bottom: 14px;
}

.info h2 {
  font-size: 20px;
  line-height: 1.3;
  color: var(--gold-2);
  margin: 22px 0 10px;
}

.info h3 {
  font-size: 17px;
  color: var(--text);
  margin: 18px 0 8px;
}

.info p {
  margin-bottom: 12px;
}

.info ul,
.info ol {
  margin: 0 0 14px 20px;
}

.info li {
  margin-bottom: 6px;
}

.info a {
  color: var(--gold);
  text-decoration: underline;
}

table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

table::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

thead,
tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 520px;
}

tr {
  display: flex;
  width: 100%;
}

th,
td {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  min-width: 110px;
  padding: 12px 14px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  word-break: break-word;
}

th:first-child,
td:first-child {
  justify-content: flex-start;
  text-align: left;
}

thead th {
  background: var(--bg-chip);
  color: var(--gold-2);
  font-weight: 600;
}

tbody tr:last-child td {
  border-bottom: none;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 26px;
  font-size: 13px;
  color: var(--muted);
}

.crumbs a {
  color: var(--text);
}

.pwa {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 14px;
  background: var(--bg-card);
}

.pwa__txt {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 14px;
  background: var(--bg-card);
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.form input {
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card-2);
  color: var(--text);
}

.ftr {
  margin-top: 26px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--bg-card);
}

.ftr__in {
  display: grid;
  gap: 24px;
}

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

.ftr__soc {
  display: flex;
  gap: 10px;
}

.ftr__nav {
  display: grid;
  gap: 8px;
  align-content: start;
  font-size: 14px;
}

.ftr__bot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: start;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--bg-chip);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.15;
}

.ftr__rights {
  padding-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

@media (min-width: 768px) {
  :root {
    --card-w: 186px;
    --gap: 10px;
  }

  .hdr__nav {
    display: flex;
  }

  .hdr__right .btn--gold {
    display: inline-flex;
  }

  .hero__arrows {
    position: absolute;
    top: 50%;
    right: 16px;
    left: 16px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .hero__arrows .arrow {
    width: 40px;
    height: 40px;
    background: rgba(4, 24, 72, 0.72);
    pointer-events: auto;
  }

  .provhero {
    grid-template-columns: 260px 1fr;
    align-items: center;
  }

  .provhero__games {
    grid-template-columns: repeat(6, 1fr);
  }

  .provgrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .provgrid .provhero {
    grid-area: 1 / 1 / 5 / 3;
  }

  .provgrid .provhero__games {
    grid-template-columns: repeat(3, 1fr);
  }

  .provgrid .provhero__games .card {
    width: 112px;
    height: 77px;
  }

  .provgrid .prov {
    height: 86px;
    padding: 4px 8px;
  }

  .provgrid .prov img {
    width: 170px;
    height: 40px;
  }

  .provgrid .prov__name {
    font-size: 13px;
    line-height: 16px;
  }

  .provgrid .prov__count {
    font-size: 11px;
    line-height: 13px;
  }

  .page-home .info {
    padding: 48px 64px 64px;
  }

  .page-home .info h1 {
    font-size: 1.8em;
  }

  .page-home .info h2 {
    font-size: 1.4em;
  }

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

  .jack__sum {
    font-size: 46px;
  }

  .ftr__in {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
  }

  .info h1 {
    font-size: 32px;
  }

  .ptitle {
    font-size: 28px;
  }

  .hero__track {
    aspect-ratio: 1800 / 390;
  }

  .hero__slide img {
    object-fit: cover;
  }

  .gnav--panel .gnav__item {
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
  }

  .gnav--panel .gnav__item img {
    width: 32px;
    height: 32px;
  }

  .gnav--panel .gnav__brand img {
    height: 32px;
  }

  .jackcar__track {
    height: 360px;
  }

  .jackcar__logo {
    width: 282px;
  }

  .jackcar__sum {
    font-size: 64px;
    line-height: 72px;
  }

  .jackcar__note {
    font-size: 20px;
    line-height: 28px;
  }

  .jackcar__arrows {
    position: absolute;
    top: 50%;
    right: 16px;
    left: 16px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .jackcar__arrows .arrow {
    width: 40px;
    height: 40px;
    background: rgba(4, 24, 72, 0.72);
    pointer-events: auto;
  }
}

@media (min-width: 390px) {
  .magic {
    right: -20px;
    width: 100px;
  }

  .magic__gift {
    width: 100px;
    height: 100px;
  }

  .magic__gift img {
    width: 88px;
    height: 88px;
  }
}

@media (min-width: 769px) {
  .hero__dots {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .gnav--panel .gnav__item,
  .gnav--panel .gnav__item--sm {
    flex-grow: 1;
  }

  .gnav--panel .gnav__item--sm .gnav__name {
    display: block;
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .provgrid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1440px) {
  .gnav--panel .wrap {
    max-width: 1200px;
  }

  .gnav--panel .gnav__row {
    justify-content: space-between;
  }

  .gnav--panel .gnav__item,
  .gnav--panel .gnav__item--sm {
    flex: none;
    gap: 8px;
    padding: 4px 16px;
  }

  .provgrid {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-providers section.wrap {
    max-width: 1200px;
    padding: 32px 0 0;
  }

  .page-home .info .wrap {
    max-width: 1200px;
  }
}

.card--wide {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}
