:root {
  --header-bg: #101010;
  --content-bg: #101010;
  --footer-bg: #1a1c21;
  --footer-bottom-bg: #1c1c1c;
  --surface: #171717;
  --surface-soft: #202020;
  --border: #2a2a2a;
  --text: #9293a3;
  --text-strong: #f7f7f8;
  --accent: #009fe3;
  --accent-hover: #17baff;
  --radius: 8px;
  --container: 1160px;
  --header-container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  background: var(--content-bg);
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  padding: 0 0 92px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--content-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent-hover);
}

button,
input {
  font: inherit;
}

.site-shell,
.site-main,
.entry-content,
.short-article,
.article {
  min-width: 0;
  max-width: 100%;
}

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  min-height: 78px;
  border-bottom: 1px solid #202020;
  background: var(--header-bg);
}

.header-inner {
  width: min(100% - 40px, var(--header-container));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
}

.content-container,
.footer-inner {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.brand-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  line-height: 0;
}

.brand-logo img {
  display: block;
  width: 170px;
  height: auto;
}

.header-panel {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.main-nav,
.header-side {
  display: flex;
  align-items: center;
}

.main-nav {
  min-width: 0;
  gap: 26px;
}

.header-side {
  flex: 0 0 auto;
  gap: 20px;
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
}

.nav-link-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  position: relative;
  min-height: 78px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.nav-item.is-current > .nav-link,
.nav-item.is-current .nav-link-row > .nav-link {
  color: var(--accent);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--accent);
  content: "";
  transition: transform .18s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.submenu-toggle {
  width: 24px;
  height: 38px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.submenu-toggle svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
  transition: transform .18s ease;
}

.submenu {
  position: absolute;
  z-index: 70;
  top: calc(100% - 12px);
  left: -16px;
  width: max-content;
  min-width: 190px;
  padding: 8px 0;
  border: 1px solid #2b2b2b;
  border-radius: 4px;
  background: #141414;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.submenu-right {
  right: 0;
  left: auto;
  min-width: 165px;
}

.submenu a {
  min-height: 42px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--accent);
  background: #1d1d1d;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.has-submenu.is-open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-submenu.is-open .submenu-toggle svg {
  transform: rotate(180deg);
}

.language-link {
  gap: 6px;
}

.flag-image {
  width: 16px;
  height: 11px;
  display: block;
  flex: 0 0 16px;
  max-width: none;
  border-radius: 0;
  object-fit: cover;
}

@media (min-width: 922px) {
  .language-menu > .nav-link-row {
    min-width: 128px;
    border-bottom: 1px solid #68f47e;
  }

  .language-menu .language-link,
  .language-menu .submenu-toggle {
    color: #5ff67f;
  }

  .language-menu .nav-link::after {
    display: none;
  }

  .language-menu > .submenu-right {
    top: 100%;
    right: auto;
    left: -10px;
    min-width: 160px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #121212;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .42);
  }

  .language-menu > .submenu a {
    min-height: 57px;
    padding: 12px 32px;
    border-bottom: 1px solid #282828;
    color: #fff;
    font-size: 16px;
    gap: 7px;
  }

  .language-menu > .submenu a:last-child {
    border-bottom: 0;
  }

  .language-menu > .submenu a:hover,
  .language-menu > .submenu a:focus-visible {
    color: #fff;
    background: #1b1b1b;
  }
}

.header-button {
  min-width: 106px;
  min-height: 40px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-button-login {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.header-button-login:hover,
.header-button-login:focus-visible {
  color: #fff;
  background: #292929;
}

.header-button-register {
  min-width: 112px;
  border: 2px solid var(--accent);
  color: #fff;
  background: var(--accent);
}

.header-button-register:hover,
.header-button-register:focus-visible {
  border-color: var(--accent-hover);
  color: #fff;
  background: var(--accent-hover);
}

.menu-checkbox,
.menu-toggle {
  display: none;
}

/* Hero and content */
.hero-link {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #080808;
  line-height: 0;
}

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

.hero-link img {
  height: auto;
}

.entry-content {
  padding: 46px 0 70px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--text-strong);
  overflow-wrap: anywhere;
}

.entry-content h1 {
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.28;
  font-weight: 700;
}

.entry-content h2 {
  margin: 38px 0 16px;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.3;
}

.entry-content h3 {
  margin: 28px 0 12px;
  font-size: clamp(21px, 2.4vw, 25px);
  line-height: 1.35;
}

.entry-content h4 {
  margin: 24px 0 10px;
  font-size: 20px;
}

.entry-content p {
  margin: 0 0 18px;
  overflow-wrap: anywhere;
}

.entry-content strong,
.entry-content b {
  color: #fcfcfc;
}

.entry-content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #c8c9d1;
  background: var(--surface);
}

.entry-content img {
  display: block;
  height: auto;
  border-radius: var(--radius);
}

.short-article,
.article {
  min-width: 0;
}

.short-article::after,
.article::after {
  display: table;
  clear: both;
  content: "";
}

.bonus-buttons {
  display: flex;
  justify-content: center;
  margin: 30px 0 42px;
}

.content-button {
  min-height: 52px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid #fff;
  border-radius: var(--radius);
  color: #fff;
  background: #101010;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.content-button:hover,
.content-button:focus-visible {
  border-color: #fff;
  color: #fff;
  background: #292929;
}

.bonus-icon {
  flex: 0 0 auto;
}

.short-article .table-scroll,
.article-card .table-scroll,
.article .table-scroll,
.content .table-scroll,
.entry-content .table-scroll {
  width: 100%;
  max-width: 100%;
  margin: 18px 0 24px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #222b49;
  border-radius: var(--radius);
  background: #111;
  -webkit-overflow-scrolling: touch;
}

.short-article .table-scroll table,
.article-card .table-scroll table,
.article .table-scroll table,
.content .table-scroll table,
.entry-content .table-scroll table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  table-layout: auto;
}

.short-article .table-scroll th,
.short-article .table-scroll td,
.article-card .table-scroll th,
.article-card .table-scroll td,
.article .table-scroll th,
.article .table-scroll td,
.content .table-scroll th,
.content .table-scroll td,
.entry-content .table-scroll th,
.entry-content .table-scroll td {
  padding: 12px 14px;
  border: 1px solid #222b49;
  color: #d2d2d8;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.entry-content .table-scroll th {
  color: #fff;
  background: #202020;
  font-weight: 700;
}

.entry-content .table-scroll tbody tr:nth-child(even) {
  background: #1c1c1c;
}

.entry-content ul,
.entry-content ol {
  max-width: 100%;
  margin: 18px 0 24px;
  padding-left: 26px;
}

.entry-content li {
  margin: 0 0 9px;
  padding-left: 3px;
  overflow-wrap: anywhere;
}

.entry-content li::marker {
  color: var(--accent);
  font-weight: 700;
}

/* FAQ and reviews */
.faq {
  margin: 48px 0 0;
}

.faq > h2 {
  margin: 0 0 20px;
  text-align: center;
}

.faq-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(0, 0, 0, .34);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .28);
}

.faq-item {
  border-bottom: 1px solid #404040;
}

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

.faq-item-header-wrapper {
  position: relative;
  min-height: 68px;
  padding: 20px 64px 20px 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color .2s ease;
}

.faq-item-header-wrapper::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #ccc;
  content: "+";
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
}

.faq-item-header-wrapper:hover,
.faq-item-header-wrapper:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, .035);
}

.faq-item-title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-item-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  background: rgba(0, 0, 0, .28);
  transition: grid-template-rows .25s ease;
}

.faq-item-content > div {
  min-height: 0;
}

.faq-item-content-visible {
  padding: 0 24px;
  color: var(--text);
  overflow-wrap: anywhere;
  transition: padding .25s ease;
}

.faq-item.is-open .faq-item-content {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item-content-visible {
  padding-top: 16px;
  padding-bottom: 22px;
}

.faq-item.is-open .faq-item-header-wrapper::after {
  transform: translateY(-50%) rotate(45deg);
  color: #fff;
}

.entry-content > section {
  margin-top: 48px;
}

.entry-content > section > h2 {
  text-align: center;
}

.entry-content [itemtype="https://schema.org/Review"] {
  margin: 16px 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.entry-content [itemtype="https://schema.org/Review"] h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

/* Footer — restored to the original Mundo layout */
.site-footer {
  position: relative;
  border-top: 1px solid #272727;
  background: linear-gradient(to bottom, var(--footer-bg) 0, var(--footer-bg) 64px, var(--footer-bottom-bg) 64px, var(--footer-bottom-bg) 100%);
}

.footer-inner {
  min-height: 220px;
  padding: 24px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-menu {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-menu a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.footer-menu a.is-current,
.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: var(--accent);
}

.footer-languages {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-size: 16px;
}

.footer-languages a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.footer-languages a.is-current,
.footer-languages a:hover,
.footer-languages a:focus-visible {
  color: var(--accent);
}

.footer-separator {
  color: #fff;
}

.footer-copyright {
  margin-top: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.footer-copyright a,
.footer-policy a {
  color: var(--accent);
}

.footer-policy {
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.responsible-assets {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.responsible-assets a {
  display: inline-flex;
  line-height: 0;
}

.responsible-assets img {
  display: block;
  height: auto;
  object-fit: contain;
}

.gambleaware-logo {
  width: 140px;
}

.dmca-logo {
  width: 100px;
}

.bottom-banner {
  position: fixed;
  z-index: 1000;
  left: 40px;
  bottom: 20px;
  width: min(602px, calc(100% - 80px));
  min-height: 64px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #0b8cc3;
  border-radius: 10px;
  color: #e9eaf4;
  background: #000;
  box-shadow: 0 0 8px var(--accent), 0 8px 22px rgba(0, 0, 0, .5);
}

.banner-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.banner-text {
  min-width: 0;
  flex: 1 1 auto;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.banner-button {
  min-width: 196px;
  min-height: 40px;
  padding: 10px 16px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #fff;
  background: var(--accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.banner-button:hover,
.banner-button:focus-visible {
  color: #fff;
  background: var(--accent-hover);
}

.scroll-top {
  position: fixed;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  width: 32px;
  height: 32px;
  padding: 6px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 2px;
  color: #272727;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 14px;
  }

  .header-panel {
    gap: 10px;
  }

  .main-nav {
    gap: 12px;
  }

  .header-side {
    gap: 6px;
  }

  .nav-link {
    font-size: 14px;
  }

  .header-button {
    min-width: 90px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  .header-button-register {
    min-width: 100px;
  }
}

@media (max-width: 921px) {
  .site-header,
  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #343434;
    border-radius: var(--radius);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: #fff;
  }

  .header-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 0;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid #292929;
    background: #101010;
    opacity: 0;
    visibility: hidden;
    transition: max-height .25s ease, opacity .2s ease, visibility .2s ease;
  }

  .menu-checkbox:checked ~ .header-panel {
    max-height: 760px;
    padding: 12px max(20px, calc((100% - var(--header-container)) / 2));
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
  }

  .main-nav,
  .header-side {
    align-items: stretch;
    flex-direction: column;
  }

  .main-nav {
    gap: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link-row {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #282828;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .nav-link::after {
    display: none;
  }

  .main-nav > .nav-item:not(.has-submenu) > .nav-link {
    border-bottom: 1px solid #282828;
  }

  .submenu-toggle {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
  }

  .submenu {
    position: static;
    width: 100%;
    max-height: 0;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #161616;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .2s ease;
  }

  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu {
    max-height: 0;
  }

  .has-submenu.is-open > .submenu {
    max-height: 180px;
  }

  .submenu a {
    min-height: 42px;
    padding-left: 18px;
    border-bottom: 1px solid #242424;
  }

  .header-side {
    margin-top: 14px;
    gap: 10px;
  }

  .language-menu {
    margin-bottom: 4px;
  }

  .header-button {
    width: 100%;
    min-height: 42px;
    font-family: inherit;
  }
}

@media (max-width: 800px) {
  .header-inner,
  .content-container,
  .footer-inner {
    width: min(100% - 28px, var(--container));
  }

  .entry-content {
    padding-top: 32px;
  }

  .short-article .table-scroll table,
  .article-card .table-scroll table,
  .article .table-scroll table,
  .content .table-scroll table,
  .entry-content .table-scroll table {
    width: max-content;
    min-width: 720px;
    max-width: none;
  }

  .footer-inner {
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 104px;
  }

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

  .brand-logo img {
    width: 150px;
  }

  .entry-content h1 {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .entry-content h2 {
    font-size: 24px;
  }

  .entry-content h3 {
    font-size: 20px;
  }

  .entry-content ul,
  .entry-content ol {
    padding-left: 20px;
  }

  .content-button {
    width: 100%;
    min-height: 54px;
    padding: 12px 14px;
  }

  .faq-item-header-wrapper {
    min-height: 64px;
    padding: 18px 52px 18px 18px;
  }

  .faq-item-header-wrapper::after {
    right: 17px;
  }

  .faq-item-title {
    font-size: 16px;
  }

  .faq-item-content-visible {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-inner {
    min-height: 280px;
    padding: 24px 0 38px;
  }

  .footer-menu {
    gap: 9px 16px;
  }

  .footer-menu a,
  .footer-languages,
  .footer-copyright,
  .footer-policy {
    font-size: 14px;
  }

  .footer-copyright {
    max-width: 360px;
  }

  .footer-policy {
    flex-wrap: wrap;
  }

  .bottom-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    min-height: 78px;
    gap: 8px;
    padding: 10px 12px;
  }

  .banner-icon {
    width: 34px;
    height: 34px;
  }

  .banner-text {
    display: none;
  }

  .banner-button {
    min-width: 0;
    min-height: 46px;
    flex: 1 1 auto;
    white-space: normal;
  }

  .scroll-top {
    right: 14px;
    bottom: 102px;
  }
}

@media (max-width: 420px) {
  .brand-logo img {
    width: clamp(104px, 38vw, 135px);
  }
}

/* Desktop navigation hover: green text, arrow and underline. */
@media (min-width: 922px) {
  .main-nav .nav-item::after,
  .header-side .language-menu::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: #68f47e;
    content: "";
    pointer-events: none;
    transition: transform .18s ease;
  }

  .main-nav .nav-item:hover::after,
  .main-nav .nav-item:focus-within::after,
  .header-side .language-menu:hover::after,
  .header-side .language-menu:focus-within::after {
    transform: scaleX(1);
  }

  .main-nav .nav-item:hover > .nav-link,
  .main-nav .nav-item:focus-within > .nav-link,
  .main-nav .nav-item:hover > .nav-link-row > .nav-link,
  .main-nav .nav-item:focus-within > .nav-link-row > .nav-link,
  .main-nav .nav-item:hover > .nav-link-row > .submenu-toggle,
  .main-nav .nav-item:focus-within > .nav-link-row > .submenu-toggle,
  .header-side .language-menu:hover > .nav-link-row > .language-link,
  .header-side .language-menu:focus-within > .nav-link-row > .language-link,
  .header-side .language-menu:hover > .nav-link-row > .submenu-toggle,
  .header-side .language-menu:focus-within > .nav-link-row > .submenu-toggle {
    color: #68f47e;
  }

  .language-menu .language-link,
  .language-menu .submenu-toggle {
    color: #fff;
  }

  .language-menu > .nav-link-row {
    border-bottom: 0;
  }

  .nav-link::after,
  .language-menu .nav-link::after {
    display: none;
  }
}

/* Internal pages reuse the main article system without the home-only sticky promo space. */
body.internal-page {
  padding-bottom: 0;
}

.internal-article {
  min-height: 52vh;
}
