@font-face {
  font-family: "YabbyBody";
  src: url("assets/typography/yabby-body.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "YabbyDisplay";
  src: url("assets/typography/yabby-display.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

:root {
  --gn-bg-900: #031530;
  --gn-bg-800: #062145;
  --gn-bg-700: #0d3d7a;
  --gn-card-700: #0a3a78;
  --gn-card-800: #082f61;
  --gn-accent: #ffd33b;
  --gn-accent-strong: #f7c800;
  --gn-text: #f4f7ff;
  --gn-text-muted: #b8c7e5;
  --gn-border: rgba(147, 185, 255, 0.26);
  --gn-shadow-soft: 0 10px 30px rgba(1, 7, 26, 0.4);
  --gn-shadow-card: 0 14px 34px rgba(0, 8, 28, 0.45);
  --gn-radius-xl: 20px;
  --gn-radius-lg: 16px;
  --gn-radius-md: 12px;
  --gn-radius-sm: 10px;
  --gn-sidebar-width: 260px;
  --gn-main-pad: clamp(16px, 2.2vw, 24px);
  --gn-block-gap: clamp(16px, 2vw, 24px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "YabbyBody", "Segoe UI", sans-serif;
  color: var(--gn-text);
  background:
    radial-gradient(circle at 12% 10%, rgba(29, 99, 185, 0.44), transparent 44%),
    radial-gradient(circle at 84% 8%, rgba(9, 61, 131, 0.42), transparent 48%),
    linear-gradient(180deg, #041936 0%, #021029 100%);
  overflow-x: hidden;
}

.gn-layout {
  min-height: 100vh;
}

.gn-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--gn-sidebar-width);
  background: linear-gradient(180deg, rgba(1, 14, 38, 0.96) 0%, rgba(1, 10, 28, 0.96) 100%);
  border-right: 1px solid rgba(140, 173, 235, 0.22);
  display: flex;
  flex-direction: column;
  padding: 18px 14px;
  z-index: 40;
}

.gn-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 14px;
  padding: 8px;
  background: rgba(9, 32, 69, 0.45);
}

.gn-logo-link img {
  width: 178px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.3));
}

.gn-sidebar-cta-wrap {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.gn-btn,
.entry-claim-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 208px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.gn-btn:hover,
.entry-claim-link:hover {
  transform: translateY(-1px);
}

.gn-btn:focus-visible,
.entry-claim-link:focus-visible,
.gn-slot-action:focus-visible,
.gn-accordion-trigger:focus-visible,
.gn-slot-reveal:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #8fc0ff;
  outline-offset: 2px;
}

.gn-btn--ghost {
  color: #f6f9ff;
  border: 1px solid rgba(241, 248, 255, 0.7);
  background: rgba(5, 33, 76, 0.86);
  min-width: 0;
  width: 100%;
}

.gn-btn--primary {
  color: #052252;
  background: linear-gradient(180deg, #ffd849 0%, #f4c800 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  min-width: 0;
  width: 100%;
}

.gn-sidebar-nav,
.de-sidebar-nav {
  flex: 1;
  overflow: auto;
  padding-right: 3px;
}

.gn-sidebar-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.gn-sidebar-nav-list a {
  display: block;
  text-decoration: none;
  color: #e8f1ff;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(5, 38, 82, 0.56);
  border: 1px solid rgba(114, 154, 226, 0.22);
  font-size: 0.94rem;
}

.gn-sidebar-nav-list a:hover {
  background: rgba(15, 62, 126, 0.68);
}

.gn-sidebar-disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(116, 149, 204, 0.26);
  background: rgba(2, 18, 44, 0.75);
  font-size: 0.78rem;
  color: #9fb6df;
  line-height: 1.42;
}

.gn-main {
  margin-left: var(--gn-sidebar-width);
  padding: var(--gn-main-pad);
  display: flex;
  flex-direction: column;
  gap: var(--gn-block-gap);
  min-height: 100vh;
}

.gn-main > section,
.gn-main > article,
.gn-main > div {
  margin: 0;
}

.gn-panel {
  border-radius: var(--gn-radius-xl);
  border: 1px solid var(--gn-border);
  background: linear-gradient(180deg, rgba(6, 34, 75, 0.88), rgba(4, 22, 49, 0.88));
  box-shadow: var(--gn-shadow-soft);
}

.gn-panel h2,
.gn-panel h3 {
  margin: 0 0 10px;
  color: #f4f8ff;
}

.gn-section-body {
  padding: clamp(18px, 2.6vw, 30px);
}

.gn-section-body p {
  margin: 0;
  line-height: 1.72;
  color: #d8e6ff;
}

.gn-section-body p + p,
.gn-section-body p + ul,
.gn-section-body ul + p,
.gn-section-body ol + p,
.gn-section-body p + ol {
  margin-top: 14px;
}

.gn-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 48vw, 620px);
  border-radius: var(--gn-radius-xl);
  border: 1px solid var(--gn-border);
  box-shadow: var(--gn-shadow-soft);
}

.gn-hero-picture,
.gn-hero-picture img {
  width: 100%;
  height: 100%;
  display: block;
}

.gn-hero-picture {
  position: absolute;
  inset: 0;
}

.gn-hero-picture img {
  object-fit: cover;
}

.gn-hero-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 18px;
  background: rgba(4, 25, 55, 0.78);
  border: 1px solid rgba(149, 183, 238, 0.34);
  text-align: center;
}

.gn-eyebrow {
  margin: 0;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9fc3ff;
}

.gn-hero h1 {
  margin: 10px 0 10px;
  font-family: "YabbyDisplay", "Trebuchet MS", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.16;
  color: #ffffff;
}

.gn-hero p {
  margin: 0;
  color: #d9e8ff;
  line-height: 1.55;
}

.gn-hero .entry-claim-link {
  margin-top: 14px;
  background: linear-gradient(180deg, #ffd849 0%, #f4c800 100%);
  color: #032054;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.gn-nav-accordion {
  border-radius: var(--gn-radius-lg);
  border: 1px solid var(--gn-border);
  background: rgba(5, 37, 83, 0.82);
}

.gn-accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f2f7ff;
  text-align: left;
  padding: 15px 18px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gn-accordion-trigger::after {
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
  color: #ffd33b;
}

.gn-nav-accordion[data-open="true"] .gn-accordion-trigger::after {
  content: "−";
}

.gn-accordion-links {
  list-style: none;
  margin: 0;
  padding: 0 18px 16px;
  display: grid;
  gap: 8px;
}

.gn-accordion-links[hidden] {
  display: none;
}

.gn-accordion-links a {
  display: block;
  text-decoration: none;
  color: #d7e8ff;
  border-radius: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(131, 166, 225, 0.22);
  background: rgba(1, 19, 45, 0.45);
}

.gn-slots-head {
  padding: clamp(18px, 2.3vw, 24px);
  display: grid;
  gap: 12px;
}

.gn-slots-head h2 {
  margin: 0;
}

.gn-slots-search {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(130, 167, 227, 0.34);
  background: rgba(10, 70, 146, 0.82);
  color: #edf3ff;
  font-size: 1rem;
  padding: 12px 14px;
}

.gn-slot-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gn-slot-category {
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  border: 1px solid rgba(145, 175, 232, 0.32);
  background: linear-gradient(180deg, rgba(11, 67, 137, 0.94), rgba(8, 47, 96, 0.94));
  font-weight: 700;
  color: #eaf3ff;
}

.gn-slot-grid-wrap {
  padding: clamp(12px, 1.6vw, 18px);
}

.gn-slot-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.gn-slot-card {
  position: relative;
  min-height: 225px;
  border-radius: 14px;
  overflow: hidden;
  border: 0;
  box-shadow: var(--gn-shadow-card);
  background: radial-gradient(circle at 20% 20%, rgba(42, 92, 165, 0.5), rgba(5, 24, 56, 0.95));
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gn-slot-card:hover,
.gn-slot-card.gn-slot-card--active {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.55);
}

.gn-slot-image-wrap {
  width: 100%;
  height: 100%;
}

.gn-slot-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.gn-slot-reveal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(206, 227, 255, 0.7);
  background: rgba(4, 16, 36, 0.56);
  color: #fff;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.gn-slot-actions {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform: translateY(8px);
}

.gn-slot-action {
  border: 0;
  border-radius: 10px;
  min-height: 42px;
  min-width: 0;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
}

.gn-slot-action--play {
  color: #042056;
  background: linear-gradient(180deg, #ffd849 0%, #f4c800 100%);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.28);
}

.gn-slot-action--demo {
  color: #dcecff;
  background: linear-gradient(180deg, #1b5aa6 0%, #103f7c 100%);
  border: 1px solid rgba(150, 185, 241, 0.38);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.28);
}

.gn-slot-grid--hover .gn-slot-card:hover [data-slot-actions],
.gn-slot-card.gn-slot-card--active [data-slot-actions] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.gn-slot-grid--hover .gn-slot-card:hover [data-slot-reveal],
.gn-slot-card.gn-slot-card--active [data-slot-reveal] {
  opacity: 0;
  pointer-events: none;
}

.gn-overview-table,
.gn-deposit-table,
.gn-withdraw-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
}

.gn-overview-table th,
.gn-overview-table td,
.gn-deposit-table th,
.gn-deposit-table td,
.gn-withdraw-table th,
.gn-withdraw-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(133, 166, 226, 0.24);
  color: #e8f1ff;
}

.gn-overview-table th,
.gn-deposit-table th,
.gn-withdraw-table th {
  width: 42%;
  color: #b9cdf0;
  font-weight: 700;
}

.gn-overview-table a {
  color: #ffd33b;
}

.gn-feature-list,
.gn-check-list,
.gn-ordered-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #dce9ff;
  line-height: 1.68;
}

.gn-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gn-pros,
.gn-cons {
  border-radius: 14px;
  border: 1px solid rgba(131, 164, 223, 0.3);
  background: rgba(4, 24, 54, 0.56);
  padding: 14px 15px;
}

.gn-pros h3,
.gn-cons h3 {
  margin: 0 0 10px;
}

.gn-pros h3 {
  color: #86ffbf;
}

.gn-cons h3 {
  color: #ffb3ba;
}

.gn-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gn-cta-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(240px, 30vw, 330px);
  border-radius: var(--gn-radius-xl);
  border: 1px solid var(--gn-border);
  box-shadow: var(--gn-shadow-soft);
}

.gn-cta-banner picture,
.gn-cta-banner img {
  display: block;
  width: 100%;
  height: 100%;
}

.gn-cta-banner img {
  object-fit: cover;
}

.gn-cta-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 28px));
  padding: clamp(16px, 2vw, 24px);
  border-radius: 16px;
  border: 1px solid rgba(137, 171, 230, 0.38);
  background: rgba(4, 24, 52, 0.72);
  text-align: center;
}

.gn-cta-overlay h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
}

.gn-cta-overlay p {
  margin: 12px 0 14px;
  line-height: 1.56;
}

.gn-cta-overlay .entry-claim-link {
  background: linear-gradient(180deg, #ffd849 0%, #f4c800 100%);
  color: #052252;
}

.gn-calc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gn-calc-field label {
  display: block;
  margin-bottom: 6px;
  color: #bfd2f4;
  font-weight: 600;
}

.gn-calc-field input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(144, 178, 235, 0.38);
  background: rgba(4, 26, 56, 0.78);
  color: #f3f8ff;
  font-size: 1rem;
  padding: 11px 12px;
}

.gn-calc-result {
  margin-top: clamp(16px, 2vw, 24px);
  border-radius: 14px;
  border: 1px solid rgba(138, 170, 228, 0.38);
  background: rgba(5, 28, 62, 0.72);
  padding: 14px;
}

.gn-calc-result p {
  margin: 0;
}

.gn-calc-result-output {
  margin-top: 8px;
  font-size: clamp(1.22rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #ffd33b;
}

.gn-login-stack {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.gn-login-shot {
  width: min(100%, 680px);
  border-radius: 16px;
  border: 1px solid rgba(142, 173, 229, 0.32);
  box-shadow: var(--gn-shadow-soft);
  background: rgba(7, 31, 65, 0.56);
  overflow: hidden;
}

.gn-login-shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.gn-faq-list {
  display: grid;
  gap: 10px;
}

.gn-faq-item {
  border-radius: 12px;
  border: 1px solid rgba(133, 164, 223, 0.3);
  background: rgba(4, 25, 55, 0.66);
}

.gn-faq-item summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
}

.gn-faq-item p {
  margin: 0;
  padding: 0 14px 13px;
}

.gn-footer {
  margin-left: var(--gn-sidebar-width);
  border-top: 1px solid rgba(122, 160, 228, 0.24);
  background: rgba(2, 15, 38, 0.94);
  padding: var(--gn-main-pad);
}

.gn-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
}

.gn-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.gn-footer a {
  color: #cfe2ff;
  text-decoration: none;
}

.gn-footer a:hover {
  color: #ffd33b;
}

.gn-footer-copy {
  margin: 0;
  color: #a6badc;
  font-size: 0.88rem;
}

.gn-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(1, 10, 27, 0.78);
  display: grid;
  place-items: center;
  padding: 14px;
}

.gn-demo-modal[hidden] {
  display: none;
}

.gn-demo-dialog {
  position: relative;
  width: min(980px, 95vw);
  height: min(78vh, 740px);
  border-radius: 16px;
  border: 1px solid rgba(137, 170, 229, 0.44);
  background: linear-gradient(180deg, rgba(7, 37, 79, 0.98), rgba(3, 20, 49, 0.98));
  box-shadow: var(--gn-shadow-soft);
  padding: 50px 14px 72px;
}

.gn-demo-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(9, 47, 99, 0.88);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.gn-demo-frame {
  width: 100%;
  height: calc(100% - 8px);
  border: 0;
  border-radius: 12px;
  background: #001631;
}

.gn-demo-play-money {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffd849 0%, #f4c800 100%);
  color: #052252;
  min-width: 250px;
}

.gn-floating-banner {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, calc(100% + 24px));
  width: min(980px, calc(100vw - 20px));
  border-radius: 14px;
  border: 1px solid rgba(143, 176, 233, 0.38);
  background: linear-gradient(90deg, rgba(8, 45, 94, 0.96), rgba(6, 29, 65, 0.96));
  box-shadow: var(--gn-shadow-soft);
  padding: 12px 14px;
  z-index: 75;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gn-floating-banner[hidden] {
  display: none;
}

.gn-floating-banner--visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.gn-floating-banner p {
  margin: 0;
  flex: 1;
  line-height: 1.45;
  color: #eef4ff;
}

.gn-floating-banner .entry-claim-link {
  min-width: 210px;
  background: linear-gradient(180deg, #ffd849 0%, #f4c800 100%);
  color: #042253;
}

.gn-floating-close {
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16, 69, 139, 0.82);
  color: #f2f7ff;
  font-size: 1.1rem;
  cursor: pointer;
}

.gn-service-main {
  margin-left: var(--gn-sidebar-width);
  min-height: 100vh;
  padding: var(--gn-main-pad);
  display: flex;
  flex-direction: column;
  gap: var(--gn-block-gap);
}

.gn-service-main section {
  margin: 0;
}

.gn-service-main h1,
.gn-service-main h2 {
  margin: 0 0 10px;
}

.gn-service-main p,
.gn-service-main li {
  color: #dce9ff;
  line-height: 1.72;
}

:where(main, [data-main-content], [role="main"], .cp-main, .rb-main)
  :is(table, [class*="table"], [class*="grid"], [class*="review"], [class*="banner"], [data-review-slider], [data-cta-banner], [class*="slot"]:not([data-slot-card]):not([class*="slot-card"]):not([class*="slot__card"]))
  + :is(p, ul, ol, div, section, article) {
  margin-top: clamp(16px, 2vw, 24px);
}

@media (max-width: 1240px) {
  .gn-slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .gn-table-grid {
    grid-template-columns: 1fr;
  }

  .gn-calc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) {
  .gn-sidebar {
    position: static;
    width: 100%;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(139, 171, 232, 0.24);
    padding: 14px;
    gap: 8px;
  }

  .gn-sidebar-nav,
  .de-sidebar-nav,
  .gn-sidebar-disclaimer {
    display: none;
  }

  .gn-main,
  .gn-service-main,
  .gn-footer {
    margin-left: 0;
  }

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

  .gn-hero {
    min-height: 440px;
  }

  .gn-cta-banner {
    min-height: 360px;
  }

  .gn-hero-card {
    width: min(540px, calc(100% - 24px));
  }

  .gn-cta-overlay {
    width: min(540px, calc(100% - 16px));
  }

  .gn-cta-overlay p {
    margin: 10px 0 12px;
    font-size: 0.94rem;
  }

  .gn-pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .gn-floating-banner {
    width: calc(100vw - 16px);
    left: 8px;
    bottom: 8px;
    transform: translateY(calc(100% + 20px));
    flex-wrap: wrap;
    justify-content: center;
  }

  .gn-floating-banner--visible {
    transform: translateY(0);
  }

  .gn-floating-banner .entry-claim-link {
    width: 100%;
    min-width: 0;
  }

  .gn-floating-close {
    position: absolute;
    right: 8px;
    top: 8px;
  }

  .gn-demo-dialog {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    padding: 52px 8px 72px;
  }

  .gn-demo-play-money {
    width: calc(100% - 18px);
    min-width: 0;
  }

  .gn-overview-table th,
  .gn-overview-table td,
  .gn-deposit-table th,
  .gn-deposit-table td,
  .gn-withdraw-table th,
  .gn-withdraw-table td {
    padding: 8px 9px;
    font-size: 0.86rem;
    word-break: break-word;
  }

  .gn-overview-table,
  .gn-deposit-table,
  .gn-withdraw-table {
    font-size: 0.88rem;
  }
}

@media (max-width: 640px) {
  .gn-btn,
  .entry-claim-link {
    min-height: 48px;
    min-width: 0;
    width: 100%;
  }

  .gn-slot-card {
    min-height: 206px;
  }

  .gn-cta-banner {
    min-height: 410px;
  }

  .gn-cta-overlay {
    width: calc(100% - 18px);
    padding: 16px;
  }
}
