
.landing-page {
  margin: 0;
  background: #d9d9d9; /* #f4f6f8; original color */
  color: #0f172a;
  font-family: Arial, sans-serif;
}

.landing-page * {
  box-sizing: border-box;
}

.hub-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.92) 32%,
    rgba(255,255,255,0.45) 58%,
    rgba(255,255,255,0) 100%
  );

  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hub-header-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 4px 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.hub-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hub-wordmark-img {
  height: 50px;
  width: auto;
  display: block;
}

.hub-header-actions {
  position: relative;
  z-index: 60;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hub-header-actions .runxera-menu-button {
  flex: 0 0 auto;
  margin-left: 0;
}

.hub-search {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.hub-search-toggle {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hub-search-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.hub-search-toggle:active {
  transform: scale(0.96);
}

.hub-search.is-open .hub-search-toggle {
  background: rgba(255, 255, 255, 0.18);
}

.hub-search.is-open .hub-search-toggle {
  display: none;
}

.hub-search-panel {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 70;
  width: min(340px, calc(100vw - 86px));
  padding: 0;
  transform: translateY(-50%);
}


.hub-search-panel[hidden],
.hub-search-results[hidden] {
  display: none !important;
}

.hub-search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hub-search-field svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: #64748b;
}

.hub-search-field input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
}

.hub-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 6px;
  max-height: min(380px, 58vh);
  padding: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hub-search-result-btn,
.hub-search-empty {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #0f172a;
  text-align: left;
}

.hub-search-result-btn {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.hub-search-result-btn:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(255, 255, 255, 0.94);
}

.hub-search-result-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e2e8f0 center/cover no-repeat;
}

.hub-search-result-main {
  min-width: 0;
}

.hub-search-result-main strong {
  display: block;
  overflow: hidden;
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hub-search-result-main span {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hub-search-empty {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

html[data-theme="dark"] .hub-search-toggle {
  color: #f7d36b;
}

html[data-theme="dark"] .hub-search.is-open .hub-search-toggle {
  background: rgba(247, 211, 107, 0.12);
}

html[data-theme="dark"] .hub-search-results {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .hub-search-field {
  border-color: rgba(15, 23, 42, 0.46);
  background: rgba(15, 23, 42, 0.46);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .hub-search-field input {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
}

html[data-theme="dark"] .hub-search-result-btn,
html[data-theme="dark"] .hub-search-empty {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .hub-search-field svg {
  fill: #cbd5e1;
}

html[data-theme="dark"] .hub-search-field input,
html[data-theme="dark"] .hub-search-result-main strong {
  color: #f9fafb;
}

html[data-theme="dark"] .hub-search-result-main span,
html[data-theme="dark"] .hub-search-empty {
  color: #cbd5e1;
}

html[data-theme="dark"] .hub-search-result-btn:hover {
  border-color: rgba(247, 211, 107, 0.34);
  background: rgba(15, 23, 42, 0.72);
}

/* Hero */
.hub-hero {
  background:
    linear-gradient(180deg, rgba(7,13,25,0.38), rgba(7,13,25,0.92)),
    url("../assets/RX-field.webp") center/cover no-repeat;
  color: #fff;
  padding-bottom: 110px;
}

.hub-hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 14px 30px;
}


.hub-hero h1 {
  margin: 0;
  font-size: 30px;
  line-height: 0.96;
  letter-spacing: -1.8px;
  max-width: 620px;
}

.hub-hero p {
  margin: 16px 0 0;
  max-width: 430px;
  color: rgba(255,255,255,0.84);
  line-height: 1.55;
  font-size: 13px;
}


/* Featured Carousel */
.featured-carousel-section {
  position: relative;
  z-index: 3;
  margin-top: -100px;
  padding: 0 14px 8px;
}

.featured-carousel-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.featured-carousel {
  --featured-card-width: min(86vw, 860px);
  display: flex;
  gap: 14px;
  min-height: 300px;
  min-height: calc((var(--featured-card-width) * 0.6667) + 16px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px max(14px, calc((100% - var(--featured-card-width)) / 2)) 14px;
  scroll-padding-inline: max(14px, calc((100% - var(--featured-card-width)) / 2));
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.featured-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-event-card {
  flex: 0 0 var(--featured-card-width);
  scroll-snap-align: center;
  display: block;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e6edf6;
  box-shadow: 0 14px 30px rgba(15,23,42,0.16);
  color: #0f172a;
  text-decoration: none;
}

.carousel-event-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e2e8f0;
}

.carousel-event-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.carousel-event-card strong {
  display: block;
  padding: 9px 10px 10px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.carousel-loading {
  flex: 0 0 var(--featured-card-width);
  min-height: 300px;
  min-height: calc(var(--featured-card-width) * 0.6667);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: #64748b;
  font-size: 13px;
}

/* Events */
.events-section {
  padding: 34px 14px 44px;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.events-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.section-head-left {
  margin-bottom: 14px;
  padding: 0 2px;
}

.section-head-left p {
  margin: 0 0 6px;
  color: #1e40af;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.section-head-left h2 {
  margin: 0;
  font-size: 26px;
  color: #0f172a;
  letter-spacing: -0.6px;
}

.event-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-height: 980px;
  align-items: start;
}

.event-list-grid .event-loading {
  grid-column: 1 / -1;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .events-section {
    min-height: 1240px;
  }

  .event-list-grid {
    min-height: 1060px;
  }

  .event-list-grid .event-loading {
    min-height: 420px;
  }
}

.event-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6edf6;
  box-shadow: 0 14px 34px rgba(15,23,42,0.12);
}

.event-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.08), rgba(15,23,42,0.1)),
    #e2e8f0;
}

.event-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.event-status {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 2;
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(217, 164, 65, 0.32);
  border-radius: 0 16px 16px 0;
  background: rgba(15, 23, 42, 0.40);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(8px);
}

.event-content {
  padding: 8px 18px;
}

.event-type {
  margin: 0 0 7px;
  color: #2563eb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.6px;
}

.event-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0 14px;
}

.event-info-grid div {
  padding: 12px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.event-info-grid small {
  display: block;
  margin-bottom: 4px;
  color: #475569;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.event-info-grid strong {
  display: block;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.25;
}


.title-url {
  text-decoration: none;
}

/* Footer */
.hub-footer {
  padding: 28px 18px 36px;
  text-align: center;
  color: #64748b;
}

.hub-footer strong {
  display: block;
  color: #000000;
  letter-spacing: 2px;
  font-weight: 900;
}

.hub-footer span {
  display: block;
  margin-top: 6px;
  color: #334155;
  font-size: 13px;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.footer-social > span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.footer-facebook-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 6px 8px;
  border-radius: 5px;
  background: #0a58ca;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.footer-facebook-btn:hover {
  background: #084298;
  color: #ffffff !important;
}

.footer-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #334155;
  font-size: 13px;
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: #000;
}

.footer-bottom-bar {
  margin: 24px -18px -36px;
  padding: 14px 18px;
  background: #0f172a;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

.footer-bottom-bar .footer-year {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
}

/* Tablet */
@media (min-width: 700px) {
  .hub-header-inner {
    padding: 4px 22px;
  }

  .hub-brand {
    font-size: 17px;
  }

  .hub-hero-inner {
  padding: 80px 20px 42px;
}

  .hub-hero h1 {
    font-size: 56px;
  }

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

.events-section {
  padding: 44px 22px 60px;
  margin-top: 0;
}

  .section-head-left h2 {
    font-size: 34px;
  }

  .event-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-carousel-section {
  margin-top: -100px;
  padding: 0 22px 10px;
}

.featured-carousel {
  --featured-card-width: min(82vw, 760px);
}

.carousel-event-card strong {
  font-size: 13px;
}
}

/* Small Desktop / Laptop */
@media (min-width: 900px) {
  .event-list-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

/* Desktop */
@media (min-width: 1100px) {
  .hub-hero-inner {
  padding: 110px 20px 52px;
}

  .hub-hero h1 {
    font-size: 60px;
  }

  .events-section {
  padding: 54px 24px 76px;
  margin-top: 0;
}

  .event-list-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

  .event-card.featured-event {
    transform: translateY(-8px);
  }

  .event-card:hover {
    transform: translateY(-4px);
    transition: 0.2s ease;
  }
  
  .featured-carousel-section {
  margin-top: -100px;
  padding: 0 24px 12px;
}

.featured-carousel {
  --featured-card-width: min(78vw, 860px);
  gap: 16px;
}

.carousel-event-card:hover {
  transform: translateY(-3px);
  transition: 0.2s ease;
}
}

/* Large Desktop */
@media (min-width: 1400px) {
  .events-wrap {
    max-width: 1320px;
  }

  .event-list-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .featured-carousel-wrap {
  max-width: 1320px;
}

.featured-carousel {
  --featured-card-width: min(70vw, 920px);
}
}


/*---------------
     ABOUT HTML
-----------------*/
.about-hero {
  background:
    linear-gradient(180deg, rgba(7,13,25,0.42), rgba(7,13,25,0.92)),
    url("../assets/RXgirls.jpg") center/cover no-repeat;
  color: #fff;
}

.about-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 14px 34px;
}

.about-hero h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1.5px;
}

.about-hero p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.84);
  font-size: 14px;
  line-height: 1.6;
}

.about-section {
  padding: 28px 14px 46px;
  background: #d9d9d9;
}

.about-section .about-wrap {
  padding: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-card {
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,0.10);
}

.about-card h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.about-card p {
  margin: 0 0 12px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.contact-row {
  padding: 13px 0;
  border-bottom: 1px solid #edf2f7;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row small {
  display: block;
  margin-bottom: 4px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-row a,
.contact-row span {
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.contact-row .contact-address {
  display: inline-block;
  margin-top: 6px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.contact-row a:hover {
  color: #dc2626;
}

@media (min-width: 700px) {
  .about-wrap {
    padding: 104px 22px 46px;
  }

  .about-hero h1 {
    font-size: 58px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-section {
    padding: 42px 22px 64px;
  }

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

  .contact-card {
    grid-column: span 2;
  }
}

@media (min-width: 1100px) {
  .about-wrap {
    padding: 112px 24px 56px;
  }

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

  .contact-card {
    grid-column: auto;
  }
}


.terms-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.terms-card h2 {
  font-size: 20px;
}

.terms-card p {
  margin: 0 0 10px;
}

.terms-card p:last-child {
  margin-bottom: 0;
}


@media (min-width: 900px) {
  .terms-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.registration-divider {
  width: min(82%, 620px);
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    #000,
    transparent
  );
}

.event-info-grid.landing-main-info {
  grid-template-columns: 1fr;
}

.event-info-grid.landing-main-info div,
.event-info-grid.landing-main-info small,
.event-info-grid.landing-main-info strong,
.event-info-grid.landing-main-info span {
  display: block;
}

.event-info-grid.landing-main-info strong {
  margin-bottom: 4px;
}

.event-info-grid.landing-main-info span {
  color: #475569;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.event-info-grid.landing-main-info .landing-info-label {
  margin-top: 10px;
}

/* Event list Load More */
.event-load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.event-load-more-wrap[hidden] {
  display: none;
}

.event-load-more-btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 26px;
  background: #0f172a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  cursor: pointer;
}

.event-load-more-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

.event-load-more-btn[hidden] {
  display: none;
}

.event-load-more-text {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

html[data-theme="dark"] .event-load-more-btn {
  background: #f8fafc;
  color: #0f172a;
}

html[data-theme="dark"] .event-load-more-text {
  color: #94a3b8;
}

/* ================================
   SINGLE EVENT GLOBAL POLISH
   Footer / header / legal pages
================================ */

body,
.landing-page {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hub-header {
  background: rgba(255, 255, 255, 0.90) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hub-header .runxera-menu-button {
  color: #0f172a !important;
}

.hub-footer {
  margin-top: 0;
  padding: 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 164, 65, 0.18), transparent 32%),
    linear-gradient(135deg, #0f172a 0%, #111827 56%, #1f2937 100%);
  color: #cbd5e1 !important;
  text-align: left !important;
}

.hub-footer[data-runxera-footer] {
  min-height: 0 !important;
  contain-intrinsic-size: auto 0 !important;
}

.footer-inner {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
  padding: 34px 0 30px;
}

.footer-brand-block {
  min-width: 0;
}

.hub-footer strong,
.footer-brand-block strong {
  display: block;
  color: #ffffff !important;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.12em;
}

.hub-footer span,
.footer-brand-block span {
  display: block;
  margin-top: 9px;
  color: #f7d36b !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-brand-block p {
  max-width: 460px;
  margin: 14px 0 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  margin-top: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px !important;
  justify-content: stretch !important;
}

.footer-links a {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0 !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1.25;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  border-color: rgba(247, 211, 107, 0.42);
  background: rgba(247, 211, 107, 0.10);
  color: #f7d36b !important;
}

.footer-bottom-bar {
  margin: 0 !important;
  padding: 15px 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(2, 6, 23, 0.55) !important;
  color: #94a3b8 !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: normal !important;
}

.footer-bottom-bar span,
.footer-bottom-bar [data-current-year] {
  display: inline !important;
  margin: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
}

.about-hero {
  min-height: 290px;
  display: flex;
  align-items: end;
}

.about-card,
.terms-card {
  overflow: hidden;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .footer-inner {
    width: min(100% - 24px, 1180px);
    grid-template-columns: 1fr;
    padding: 28px 0 24px;
  }

  .footer-links {
    grid-template-columns: 1fr !important;
  }

  .hub-footer strong,
  .footer-brand-block strong {
    font-size: 20px;
  }
}

html[data-theme="dark"] .hub-header {
  background: rgba(15, 23, 42, 0.90) !important;
  border-bottom-color: rgba(255, 255, 255, 0.10) !important;
}

html[data-theme="dark"] .hub-header .runxera-menu-button {
  color: #f7d36b !important;
}
