/**
 * Critical layout CSS — loaded before Tailwind runtime.
 * Plain CSS only (no @import) so max-width/containers always apply.
 */

/* ===== SITE123 Design System — tokens (critical path) ===== */
:root {
  --s123-primary: #0583F2;
  --s123-secondary: #f26a1b;
  --s123-accent: #FF9B05;
  --s123-navy: #010B40;
  --s123-muted: #5F6373;
  --s123-border: #e2e8f0;
  --s123-radius: 0.5rem;
  --s123-radius-btn: 0.375rem;
  --s123-hero-top: #0A8CF4;
  --s123-shadow-card: 0 0.25rem 1rem rgba(15, 23, 42, 0.08);
  --s123-shadow-card-hover: 0 0.75rem 2rem rgba(5, 131, 242, 0.14);
  --color-primary: #0583F2;
  --color-secondary: #f26a1b;
  --color-accent: #FF9B05;
  --color-navy: #010B40;
  --radius-btn: 0.375rem;
  --font-sans: 'Inter', 'Rubik', ui-sans-serif, system-ui, sans-serif;
  --font-arabic: 'Cairo', ui-sans-serif, system-ui, sans-serif;
}

/* ===== Root type scale — 1rem = 1rem; gentle upscale on very wide screens only ===== */
html {
  font-size: 100%;
  scroll-padding-top: 6.5rem;
}
@media (min-width: 100rem) {
  html {
    font-size: 106.25%;
  }
}
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--s123-muted);
  background-color: #F4F8FF;
}
body.language_he {
  font-family: 'Rubik', ui-sans-serif, system-ui, sans-serif;
}
body.language_ar {
  font-family: var(--font-arabic);
}

/* ===== Typography tokens (single source of truth — wins over @layer components) ===== */
.s123-heading-xl {
  color: var(--s123-navy);
  font-weight: 500;
  line-height: 1.1;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
}
.s123-heading-lg {
  color: var(--s123-navy);
  font-weight: 500;
  letter-spacing: -0.05rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 0.625rem;
}
.s123-heading-md {
  color: var(--s123-navy);
  font-weight: 600;
  font-size: clamp(1.375rem, 1.6vw, 1.75rem);
  line-height: 1.25;
  margin-bottom: 0.625rem;
}
.s123-heading-sm {
  color: var(--s123-navy);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.s123-label {
  color: var(--s123-navy);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}
.s123-body {
  color: var(--s123-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.s123-body-lg {
  color: var(--s123-muted);
  font-size: 1.125rem;
  line-height: 1.6;
}
.s123-section-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 48rem) {
  .s123-section-header {
    margin-bottom: 3.5rem;
  }
}
.s123-section-header h3,
.s123-section-header .s123-heading-lg {
  color: var(--s123-navy);
  letter-spacing: -0.05rem;
  margin-bottom: 0.625rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
}

/* ===== Scroll reveal (IntersectionObserver adds .is-visible in js.js) ===== */
@media (prefers-reduced-motion: no-preference) {
  .s123-reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--s123-reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  .s123-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .s123-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== Keyboard focus — visible ring site-wide ===== */
:where(a, button, input, select, textarea, summary, [tabindex]):focus {
  outline: none;
}
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 0.125rem solid var(--s123-primary);
  outline-offset: 0.125rem;
  border-radius: var(--s123-radius-btn);
}
.landing_bigTempImage.clean :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible,
.insidePage .menuHeader :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline-color: #fff;
}
.btn:focus {
  outline: none;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem rgba(5, 131, 242, 0.45);
}
.btn-ghost:focus-visible,
.btn.btn-link:focus-visible {
  box-shadow: 0 0 0 0.125rem rgba(5, 131, 242, 0.35);
}
.s123-input:focus-visible {
  outline: none;
  border-color: var(--s123-primary);
  box-shadow: 0 0 0 0.1875rem rgba(5, 131, 242, 0.15);
}
.hash-anchor-target-fix:focus {
  outline: none;
}

/* ===== SITE123 Design System — buttons (must load before Tailwind preflight) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--s123-radius-btn);
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s linear, box-shadow 0.2s linear, border-color 0.2s linear;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 1.125rem 2.75rem;
  box-sizing: border-box;
}
.btn-sm,
.btn.btn-mini {
  font-size: 0.75rem;
  padding: 0.625rem 1.125rem;
}
.btn-md,
.btn.btn-small {
  font-size: 0.8rem;
  padding: 0.875rem 1.75rem;
}
.btn-lg {
  font-size: 0.95rem;
  padding: 1rem 2.25rem;
}
.btn-xl {
  font-size: 1rem;
  padding: 1.25rem 3rem;
}
.btn-block {
  width: 100%;
}
.btn-primary,
.btn.btn-blue {
  background-color: var(--s123-primary) !important;
  border-color: var(--s123-primary) !important;
  color: #fff !important;
}
.btn-primary:hover,
.btn.btn-blue:hover {
  background-color: #0470d0 !important;
  box-shadow: 0 0.25rem 0.75rem rgba(5, 131, 242, 0.35);
}
.btn-secondary,
.btn.btn-orange {
  background-color: var(--s123-secondary) !important;
  border-color: var(--s123-secondary) !important;
  color: #fff !important;
}
.btn-secondary:hover,
.btn.btn-orange:hover {
  background-color: #e05a10 !important;
  box-shadow: 0 0.25rem 0.75rem rgba(242, 106, 27, 0.35);
}
.btn-accent {
  background-color: var(--s123-accent) !important;
  border-color: var(--s123-accent) !important;
  color: #fff !important;
}
.btn-accent:hover {
  background-color: #e88a04 !important;
  box-shadow: 0 0.875rem 1.625rem -0.75rem rgba(255, 155, 5, 0.42);
}
.btn-outline,
.btn.btn-transparent {
  background-color: transparent !important;
  border: 1px solid var(--s123-secondary) !important;
  color: var(--s123-secondary) !important;
}
.btn-outline:hover,
.btn.btn-transparent:hover {
  background-color: rgba(242, 106, 27, 0.08) !important;
}
.btn-ghost,
.btn.btn-link {
  background-color: transparent !important;
  border-color: transparent !important;
  color: var(--s123-primary) !important;
  box-shadow: none;
  padding: 0.5rem 0.75rem;
}
.menuHeader .site123_nav li a.btn {
  color: #fff !important;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
}
.menuHeader .site123_nav li.loginMenu a.menuItem {
  font-weight: 600;
  color: var(--s123-navy) !important;
}
.menuHeader.homepageMenuTransparent .site123_nav li.loginMenu a.menuItem {
  color: var(--s123-navy) !important;
}
.menuHeader .site123_nav li a.btn.btn-secondary {
  min-width: 8.5rem;
  justify-content: center;
}
.menuHeader.homepageMenuTransparent .btn.btn-secondary {
  background-color: var(--s123-secondary) !important;
  border-color: var(--s123-secondary) !important;
  color: #fff !important;
}
.insidePage:not(.homepage) .menuHeader .btn.btn-secondary {
  background-color: #fff !important;
  border: 1px solid var(--s123-border) !important;
  color: var(--s123-navy) !important;
}
.start-section .start-content .btn-secondary,
.start-section .start-content .btn.btn-orange {
  background-color: var(--s123-secondary) !important;
  border-color: var(--s123-secondary) !important;
  color: #fff !important;
}

.site123-container,
.container {
  width: 100%;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* .hidden lives in site123_tailwind.compiled.css only — do not duplicate here.
   An unlayered .hidden beats Tailwind responsive utilities (hidden md:inline). */
/* Font Awesome .fa loads after Tailwind and sets display:inline-block, which overrides .hidden on the search button spinner */
#searchDomainLoading.hidden,
#searchDomainText.hidden {
  display: none !important;
}

/* Fixed header is 6.25rem — sections need enough top padding so titles clear it when scrolled to top */
.s123-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 48rem) {
  .s123-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
/* A section that is the first content block on the page has to clear the fixed header itself */
.mobileMenuFromSide + section.s123-section,
.homepage .menuHeader + section.s123-section {
  padding-top: 8rem;
}
/* Inside pages already offset the fixed header via body.landingPage margin-top */
.insidePage.landingPage .menuHeader + section.s123-section {
  padding-top: 2.5rem;
}
@media (min-width: 48rem) {
  .insidePage.landingPage .menuHeader + section.s123-section {
    padding-top: 3rem;
  }
}
/* No hero: first section follows mobileMenuFromSide — avoid doubling the 8rem header offset */
.insidePage.landingPage .mobileMenuFromSide + section.s123-section {
  padding-top: 2.5rem;
}
@media (min-width: 48rem) {
  .insidePage.landingPage .mobileMenuFromSide + section.s123-section {
    padding-top: 3rem;
  }
}
.s123-section--compact {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
@media (min-width: 48rem) {
  .s123-section--compact {
    padding-top: 2.5rem;
    padding-bottom: 1.25rem;
  }
}
/* Alternating section bands — white cards need a muted surface behind them */
.landingPage > section.s123-section:nth-of-type(odd),
.insidePage > section.s123-section:nth-of-type(odd) {
  background-color: #fff;
}
.landingPage > section.s123-section:nth-of-type(even),
.insidePage > section.s123-section:nth-of-type(even) {
  background-color: #F4F8FF;
}
.s123-section--cards {
  background-color: #F4F8FF !important;
}
.s123-section--compact:has(+ .s123-section--cards) {
  background-color: #F4F8FF !important;
}

/* ===== Inner page hero =====
   A flat fill reads as a printing error at this size, so the surface is built from a
   vertical brand gradient, two soft colour pools and a faint dot grid. Every pool is
   centred below the box so the top edge stays a single flat colour — that lets the
   fixed header (--s123-hero-top) sit on top of it with no visible seam. */
.landing_bigTempImage.clean,
.s123-page-hero.clean {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: auto !important;
  min-height: 21rem;
  padding-top: 9rem !important;
  padding-bottom: 4.5rem !important;
  background-color: var(--s123-hero-top);
  background-image:
    radial-gradient(60% 85% at 80% 125%, rgba(1, 11, 64, 0.5) 0%, rgba(1, 11, 64, 0) 70%),
    radial-gradient(55% 80% at 16% 120%, rgba(150, 215, 255, 0.35) 0%, rgba(150, 215, 255, 0) 70%),
    linear-gradient(180deg, var(--s123-hero-top) 0%, #0874E0 45%, #0A56BD 100%);
  box-shadow: 0 1.25rem 2.5rem -1.25rem rgba(1, 11, 64, 0.45);
}
/* The header is a separate fixed element, so it has to repeat the hero's top colour */
.insidePage:not(.homepage) .menuHeader {
  background-color: var(--s123-hero-top) !important;
  border-bottom: 0;
}
.landing_bigTempImage.clean.cleanBig,
.s123-page-hero.clean.cleanBig {
  min-height: 30rem;
}
/* Dot grid — adds texture close up, invisible from a distance */
.landing_bigTempImage.clean::before,
.s123-page-hero.clean::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 1.5rem 1.5rem;
  -webkit-mask-image: radial-gradient(75% 80% at 50% 70%, #000 0%, transparent 78%);
  mask-image: radial-gradient(75% 80% at 50% 70%, #000 0%, transparent 78%);
}
/* Soft light sweep across the lower edge so the hero fades into the page instead of cutting off */
.landing_bigTempImage.clean::after,
.s123-page-hero.clean::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: -1;
  height: 45%;
  background: linear-gradient(to bottom, rgba(1, 11, 64, 0) 0%, rgba(1, 11, 64, 0.22) 100%);
  pointer-events: none;
}
.landing_bigTempImage.clean .landing_rowMainImage,
.s123-page-hero.clean .landing_rowMainImage {
  position: relative;
  z-index: 1;
}
.landing_bigTempImage.clean .tempText h1,
.s123-page-hero.clean .tempText h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.05rem;
  font-weight: 500;
  line-height: 1.1;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  text-shadow: 0 0.125rem 1.5rem rgba(1, 11, 64, 0.25);
}
.landing_bigTempImage.clean .tempText h2,
.s123-page-hero.clean .tempText h2 {
  max-width: 46rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media (max-width: 47.9375rem) {
  .landing_bigTempImage.clean,
  .s123-page-hero.clean {
    min-height: 0;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .landing_bigTempImage.clean.cleanBig,
  .s123-page-hero.clean.cleanBig {
    min-height: 0;
  }
}

.row,
.flex.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.row > *,
.flex.flex-wrap > * {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  box-sizing: border-box;
}
/* Rows that space their columns with a gap utility must not keep the legacy negative gutters,
   otherwise their content sits 0.75rem outside the container padding */
.row[class*="gap-"],
.flex.flex-wrap[class*="gap-"] {
  margin-left: 0;
  margin-right: 0;
}
.row[class*="gap-"] > *,
.flex.flex-wrap[class*="gap-"] > * {
  padding-left: 0;
  padding-right: 0;
}
/* A fractional width utility plus a gap adds up to more than 100% of the row, and flex line
   breaking happens before shrinking, so the last column wraps. Turn the fraction into a
   proportional flex basis (twelfths) so the columns divide whatever space the gap leaves.
   The :not([class*=":w-…"]) guard keeps responsive variants stacked below their breakpoint. */
.flex.flex-wrap[class*="gap-"] > [class*="w-1/4"]:not([class*=":w-1/4"]) { flex: 3 1 0%; }
.flex.flex-wrap[class*="gap-"] > [class*="w-1/3"]:not([class*=":w-1/3"]) { flex: 4 1 0%; }
.flex.flex-wrap[class*="gap-"] > [class*="w-5/12"]:not([class*=":w-5/12"]) { flex: 5 1 0%; }
.flex.flex-wrap[class*="gap-"] > [class*="w-1/2"]:not([class*=":w-1/2"]) { flex: 6 1 0%; }
.flex.flex-wrap[class*="gap-"] > [class*="w-7/12"]:not([class*=":w-7/12"]) { flex: 7 1 0%; }
.flex.flex-wrap[class*="gap-"] > [class*="w-2/3"]:not([class*=":w-2/3"]) { flex: 8 1 0%; }
.flex.flex-wrap[class*="gap-"] > [class*="w-3/4"]:not([class*=":w-3/4"]) { flex: 9 1 0%; }
@media (min-width: 40rem) {
  .flex.flex-wrap[class*="gap-"] > [class*="sm:w-1/4"] { flex: 3 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="sm:w-1/3"] { flex: 4 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="sm:w-5/12"] { flex: 5 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="sm:w-1/2"] { flex: 6 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="sm:w-7/12"] { flex: 7 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="sm:w-2/3"] { flex: 8 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="sm:w-3/4"] { flex: 9 1 0%; }
}
@media (min-width: 48rem) {
  .flex.flex-wrap[class*="gap-"] > [class*="md:w-1/4"] { flex: 3 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="md:w-1/3"] { flex: 4 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="md:w-5/12"] { flex: 5 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="md:w-1/2"] { flex: 6 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="md:w-7/12"] { flex: 7 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="md:w-2/3"] { flex: 8 1 0%; }
  .flex.flex-wrap[class*="gap-"] > [class*="md:w-3/4"] { flex: 9 1 0%; }
}
.flex.flex-wrap[class*="gap-"] > [class*="w-1/4"],
.flex.flex-wrap[class*="gap-"] > [class*="w-1/3"],
.flex.flex-wrap[class*="gap-"] > [class*="w-5/12"],
.flex.flex-wrap[class*="gap-"] > [class*="w-1/2"],
.flex.flex-wrap[class*="gap-"] > [class*="w-7/12"],
.flex.flex-wrap[class*="gap-"] > [class*="w-2/3"],
.flex.flex-wrap[class*="gap-"] > [class*="w-3/4"] {
  min-width: 0;
}

.row.items-center,
.flex.items-center {
  align-items: center;
}
.row.items-start,
.flex.items-start {
  align-items: flex-start;
}

/* Header */
.menuHeader .menuHeader-row {
  align-items: center;
  width: 100%;
}
.menuHeader .menuHeader-logo {
  width: auto;
  flex: 0 0 auto;
}
.menuHeader .menuHeader-nav {
  flex: 1 1 auto;
  justify-content: flex-end;
}
.menuHeader .menuHeader-nav .site123_nav {
  justify-content: flex-end;
}
.menuHeader.landingMode .menuHeader-actions {
  flex: 1 1 auto;
  margin-inline-start: auto;
}
@media (min-width: 48rem) {
  .menuHeader .menuHeader-logo {
    width: 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .menuHeader .menuHeader-nav {
    display: flex !important;
  }
  .menuHeader .menuHeader-mobile {
    display: none !important;
  }
}
@media (max-width: 47.9375rem) {
  .menuHeader .menuHeader-logo {
    flex: 1 1 auto;
  }
  .menuHeader .menuHeader-nav {
    display: none !important;
  }
  .menuHeader .menuHeader-mobile {
    display: block !important;
    flex: 0 0 auto;
    margin-inline-start: auto;
  }
}

/* Footer */
.menuFooter .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 40rem) {
  .menuFooter .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .menuFooter .footer-grid {
    grid-template-columns: 1.2fr 1fr 1.7fr 1fr;
  }
  .menuFooter .footer-grid > div:nth-child(3) ul {
    columns: 2;
    column-gap: 1.5rem;
  }
}
.menuFooter .footer-grid > div:nth-child(3) ul li {
  break-inside: avoid;
}
.menuFooter .s123-label,
.menuFooter .col_header {
  color: var(--s123-navy);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.menuFooter .site123-container > .row > div {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 40rem) {
  .menuFooter .site123-container > .row.py-12 > div {
    width: 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.menuFooter .copyrightSection {
  text-align: center;
}
.menuFooter .copyrightSection svg {
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 1rem;
  fill: #ef4444;
}

/* Homepage hero — align columns to top so text stays below fixed header */
.start-section .site123-container > .flex,
.start-section .site123-container > .row,
#homepageGeneratorLandingPage .site123-container > .flex,
#homepageGeneratorLandingPage .site123-container > .row {
  align-items: flex-start;
}
.start-section .site123-container > .flex > div,
.start-section .site123-container > .row > div,
#homepageGeneratorLandingPage .site123-container > .flex > div,
#homepageGeneratorLandingPage .site123-container > .row > div {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 48rem) {
  .start-section .site123-container > .flex,
  .start-section .site123-container > .row,
  #homepageGeneratorLandingPage .site123-container > .flex,
  #homepageGeneratorLandingPage .site123-container > .row {
    flex-wrap: nowrap;
    align-items: center;
  }
  .start-section .site123-container > .flex > div:first-child,
  .start-section .site123-container > .row > div:first-child,
  #homepageGeneratorLandingPage .site123-container > .flex > div:first-child,
  #homepageGeneratorLandingPage .site123-container > .row > div:first-child,
  .oneFeature .site123-container > .flex > div:first-child {
    flex: 5 1 0%;
    width: auto !important;
    max-width: none;
    min-width: 0;
  }
  .start-section .site123-container > .flex > div:last-child,
  .start-section .site123-container > .row > div:last-child,
  #homepageGeneratorLandingPage .site123-container > .flex > div:last-child,
  #homepageGeneratorLandingPage .site123-container > .row > div:last-child,
  .oneFeature .site123-container > .flex > div:last-child {
    flex: 7 1 0%;
    width: auto !important;
    max-width: none;
    min-width: 0;
  }
  .oneFeature.flop .site123-container > .flex {
    flex-direction: row-reverse;
  }
}

/* Feature rows (homePer, homeSupport, etc.) — side by side from tablet up */
.oneFeature .site123-container > .flex > div {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 40rem) {
  .oneFeature .site123-container > .flex {
    flex-wrap: nowrap;
    align-items: center;
  }
  .oneFeature .site123-container > .flex > div:first-child {
    flex: 5 1 0%;
    width: auto !important;
    max-width: none;
  }
  .oneFeature .site123-container > .flex > div:last-child {
    flex: 7 1 0%;
    width: auto !important;
    max-width: none;
  }
  .oneFeature.flop .site123-container > .flex {
    flex-direction: row-reverse;
  }
}

/* Legacy row-based feature blocks */
.oneFeature .site123-container > .flex > div:first-child,
.oneFeature .site123-container > .row > div:first-child {
  width: 100%;
}
@media (min-width: 40rem) {
  .oneFeature .site123-container > .row {
    flex-wrap: nowrap;
  }
  .oneFeature .site123-container > .row > div:first-child {
    width: 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .oneFeature .site123-container > .row > div:last-child {
    width: 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
}

/* 3-column grids */
@media (min-width: 48rem) {
  .reviews .allReviews > div,
  .tipsBox .allTips > div,
  .smallFeatures .flex > .item,
  .smallFeatures .row > .item,
  .homeTemplates .row > div,
  .homeTemplates .grid > div,
  .templatesPage .allCats,
  .sixTemplates .row > div {
    width: 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  #pluginsList .filtered-item,
  .supportPage #pluginsList .filtered-item {
    width: 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .s123-examples-grid > .filtered-item,
  .s123-examples-grid > div,
  .websiteExamplePage .s123-examples-grid > .filtered-item {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }
}
@media (min-width: 40rem) and (max-width: 47.9375rem) {
  .reviews .allReviews > div,
  .tipsBox .allTips > div,
  .smallFeatures .flex > .item,
  .smallFeatures .row > .item,
  .homeTemplates .row > div,
  .homeTemplates .grid > div,
  .templatesPage .allCats,
  #pluginsList .filtered-item {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 39.9375rem) {
  .reviews .allReviews > div,
  .tipsBox .allTips > div,
  .smallFeatures .flex > .item,
  .smallFeatures .row > .item,
  .homeTemplates .row > div,
  .homeTemplates .grid > div,
  .templatesPage .allCats,
  .pricing .pricing-m > div,
  #pluginsList .filtered-item {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Pricing — centered cards */
.pricing .pricing-m {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.pricing .pricing-m > div {
  width: 100%;
  max-width: 22rem;
  flex: 0 0 auto;
  margin-inline-start: 0 !important;
}
@media (min-width: 48rem) {
  .pricing .pricing-m > div {
    width: calc(33.333333% - 1rem);
    max-width: 20rem;
    flex: 0 0 calc(33.333333% - 1rem);
  }
}

.landing_rowMainImage .category-filter-row > div {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.stars > img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ===== 404 error page ===== */
.s123-error-404 {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 10rem);
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.s123-error-404__inner {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.s123-error-404__code {
  margin: 0 0 0.5rem;
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(5, 131, 242, 0.14);
  user-select: none;
}
.s123-error-404__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--s123-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.s123-error-404__title {
  margin: 0 0 1rem;
  color: var(--s123-navy);
}
.s123-error-404__lead {
  margin: 0 auto 2rem;
  max-width: 32rem;
  color: var(--s123-muted);
}
.s123-error-404__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.menuFooter .socialIcons ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}
.menuFooter .socialIcons ul li {
  float: none;
  display: block;
}
.menuFooter .socialIcons ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.menuFooter .socialIcons svg {
  display: block;
  flex-shrink: 0;
}

/* Homepage hero — spacing between text and CTA */
.start-section .start-content p {
  margin-bottom: 1.25rem;
}
.start-section .start-content .s123-body,
.start-section .start-content p {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.35;
}
.start-section .start-content .btn {
  display: inline-block;
  margin-top: 2rem;
}

/* Centered landing hero box (meta landing pages) */
.homepageHeaderCenter .center .box {
  padding: 2.5rem 3rem 5rem;
}
.homepageHeaderCenter .center .box h1,
.homepageHeaderCenter .center .box h2 {
  padding-inline: 1rem;
}
.homepageHeaderCenter .center .box .actionButton {
  display: inline-block;
  margin: 1.5rem 0 0;
  position: relative;
}

/* Category filter bar — center in hero */
.landing_rowMainImage > div {
  display: block;
  width: 100%;
  max-width: 100%;
}
.landing_rowMainImage > div > div,
.landing_rowMainImage .tempText {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.category-filter-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.landing_rowMainImage .s123-categories-navbar.horizontal {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.landing_rowMainImage .s123-categories-navbar.horizontal li {
  display: inline-block;
  float: none;
}

/* Hero category filter — mobile select / desktop navbar (critical path: no FOUC before footer CSS) */
.category-filter-wrap .s123-categories-navbar.horizontal,
.category-filter-wrap .s123-categories-navbar--desktop {
  display: none;
}
.category-filter-wrap .s123-hero-category-select {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .category-filter-wrap .s123-categories-navbar.horizontal,
  .category-filter-wrap .s123-categories-navbar--desktop {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .category-filter-wrap .s123-hero-category-select {
    display: none !important;
  }
}

/* S123 modal — plain CSS fallback for language picker (no Bootstrap) */
.s123-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
}
.s123-modal-overlay.is-open {
  display: flex;
}
.s123-modal-panel {
  position: relative;
  width: 100%;
  max-width: 56rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1.5625rem 3.125rem -12px rgba(0, 0, 0, 0.25);
}
/* Modal parts — plain CSS (single class) so page-level widgets can still override them */
.s123-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--s123-accent);
  color: #fff;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.s123-modal-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: inherit;
}
.s123-modal-close {
  cursor: pointer;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  opacity: 0.8;
}
.s123-modal-close:hover {
  opacity: 1;
}
.s123-modal-body {
  padding: 1rem;
}
.s123-modal-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--s123-border);
  text-align: center;
}
body.overflow-hidden {
  overflow: hidden;
}

/* Updates list — restore heading size lost to preflight reset */
.updateItem h2,
.updateItem h2 a {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: inherit;
  text-decoration: none;
}
.updateItem h2 a:hover {
  text-decoration: underline;
}

/* Tailwind utility fallbacks for CDN-scanned markup */
.text-primary { color: var(--color-primary, #0583F2); }
.shadow-md { box-shadow: 0 0.125rem 0.5rem rgba(99, 99, 99, 0.2); }
.rounded { border-radius: 0.375rem; }
.p-6 { padding: 1.5rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.w-full { width: 100%; }
.h-auto { height: auto; }
.h-\[1em\] { height: 1em; }
.h-\[3\.75rem\] { height: 3.75rem; }
.w-auto { width: auto; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 40rem) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:w-1\/2 { width: 50%; }
  .sm\:w-1\/3 { width: 33.333333%; }
  .sm\:w-5\/12 { width: 41.666667%; }
  .sm\:w-7\/12 { width: 58.333333%; }
  .sm\:mx-auto { margin-left: auto; margin-right: auto; }
}
@media (min-width: 48rem) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:w-5\/12 { width: 41.666667%; }
  .md\:w-7\/12 { width: 58.333333%; }
}
@media (min-width: 64rem) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.max-h-\[37\.5rem\] { max-height: 37.5rem; }
.float-end { float: inline-end; }
.mt-5 { margin-top: 1.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.templates .grid.screenshot,
.templates .grid.grid-cols-1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 40rem) {
  .templates .grid.screenshot,
  .templates .grid.grid-cols-1 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.templates .grid.screenshot > div,
.templates .grid.grid-cols-1 > div {
  width: 100% !important;
  max-width: 100%;
  flex: none;
  padding-left: 0;
  padding-right: 0;
}
.templates .screenshot img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.oneFeature.feature_promo .flex {
  align-items: center;
  justify-content: flex-start;
  text-align: start;
}
.oneFeature.feature_promo h4,
.oneFeature.feature_promo .s123-heading-md {
  color: #fff;
}
.oneFeature.feature_promo .leftSide {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.oneFeature.feature_promo .rightSide {
  justify-content: center;
}
.oneFeature.feature_promo .rightSide img,
.oneFeature.feature_promo .rightSide svg.support-chat-hero {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.support-chat-hero-wrap {
  width: 100%;
  max-width: 38rem;
  margin-inline: auto;
}
.oneFeature.feature_promo .support-chat-hero {
  display: block;
  cursor: pointer;
  overflow: visible;
}
.landing_rowMainImage > div > div,
.s123-page-hero-inner {
  display: inline-block;
  max-width: 100%;
}

/* Post-migration layout fixes */
.smallFeatures .s123-feature-grid {
  gap: 1.5rem;
}
.pricing .pricing-m-action .btn-secondary,
.pricing .pricing-m-action .btn-accent {
  background-color: var(--s123-secondary) !important;
  border-color: var(--s123-secondary) !important;
  color: #fff !important;
}
.homepageHeaderCenter .center {
  text-align: center;
}
.homepageHeaderCenter .center .box {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.supportSearchBox .bigSearch .s123-input-group {
  max-width: 36rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* Hero search — the submit button lost its framework styling in the migration,
   so it is rebuilt here as a solid button welded to the end of the field */
.bigSearch .s123-input-group {
  display: flex;
  align-items: stretch;
}
.bigSearch .s123-input-group .search-query {
  flex: 1;
  min-width: 0;
  border-start-end-radius: 0;
  border-end-end-radius: 0;
  border-inline-end: 0;
}
.bigSearch .s123-input-group .s123-input-addon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  flex: 0 0 3.5rem;
  padding: 0;
  border: 0;
  border-start-start-radius: 0;
  border-end-start-radius: 0;
  border-start-end-radius: var(--s123-radius-btn);
  border-end-end-radius: var(--s123-radius-btn);
  background-color: var(--s123-secondary);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s linear;
}
.bigSearch .s123-input-group .s123-input-addon:hover {
  background-color: #e05a10;
}

/* ===== Feature cards — equal height grid ===== */
.s123-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 40rem) {
  .s123-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62rem) {
  .s123-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.s123-feature-grid > .s123-feature-card,
.smallFeatures .s123-feature-grid > .item {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  min-width: 0;
}
.s123-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.2s linear, border-color 0.2s linear, transform 0.2s linear;
  box-sizing: border-box;
}
.s123-feature-card:hover {
  border-color: rgba(5, 131, 242, 0.35);
  box-shadow: var(--s123-shadow-card-hover);
  transform: translateY(-0.125rem);
}
.s123-feature-card .div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  flex: 1;
  min-width: 0;
}
.s123-feature-card .title {
  color: var(--s123-navy);
  font-weight: 600;
  font-size: 1.0625rem;
  margin: 1rem 0 0.5rem;
  width: 100%;
}
.s123-feature-card .text {
  color: var(--s123-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  width: 100%;
  margin: 0;
  flex: 1;
}
a.s123-feature-card {
  text-decoration: none;
  color: inherit;
}
.s123-feature-card .readMore {
  margin-top: auto;
  padding-top: 0.75rem;
  width: 100%;
}
.s123-feature-card .readMore a {
  color: var(--s123-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}
.s123-feature-card .readMore a:hover {
  text-decoration: underline;
}
.s123-feature-card .icon,
.s123-feature-card i[class*="fa-"],
.s123-feature-card__icon {
  color: var(--s123-primary);
  font-size: 2rem;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

/* ===== Pricing cards ===== */
.s123-pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}
.s123-pricing-grid > div {
  width: 100%;
  max-width: 22rem;
  flex: 1 1 18rem;
  display: flex;
}
.s123-pricing-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: 0 0.25rem 1rem rgba(15, 23, 42, 0.06);
  text-align: center;
  overflow: hidden;
}
.s123-pricing-card--popular {
  border-color: var(--s123-primary);
  box-shadow: 0 0.5rem 2rem rgba(5, 131, 242, 0.15);
}
@media (min-width: 48rem) {
  .s123-pricing-card--popular {
    transform: scale(1.02);
  }
}
.s123-pricing-card__head {
  padding: 1.75rem 1.5rem 1rem;
  border-bottom: 1px solid var(--s123-border);
}
.s123-pricing-card__head h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--s123-navy);
}
.s123-pricing-card__badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 62.4375rem;
  background: rgba(5, 131, 242, 0.1);
  color: var(--s123-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.s123-pricing-card__price {
  padding: 1.5rem 1rem;
  color: var(--s123-navy);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
}
.s123-pricing-card--popular .s123-pricing-card__price {
  color: var(--s123-secondary);
}
.s123-pricing-card__features {
  flex: 1;
  padding: 0 1.5rem;
}
.s123-pricing-card__features ul {
  list-style: none;
  margin: 0;
  padding: 0 0 1.5rem;
}
.s123-pricing-card__features li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--s123-muted);
  border-bottom: 1px solid #f1f5f9;
}
.s123-pricing-card__features li:last-child {
  border-bottom: 0;
}
.s123-pricing-card__action {
  padding: 0 1.5rem 2rem;
  margin-top: auto;
}

/* ===== Support category cards ===== */
.s123-support-grid,
#pluginsList.s123-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 48rem) {
  .s123-support-grid,
  #pluginsList.s123-support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.s123-support-grid > .filtered-item {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}
.s123-support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 9.5rem;
  padding: 1.75rem 1.25rem;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  text-align: center;
  text-decoration: none;
  color: var(--s123-navy);
  transition: border-color 0.2s linear, box-shadow 0.2s linear, transform 0.2s linear;
  box-sizing: border-box;
}
.s123-support-card:hover,
.s123-support-card:focus {
  border-color: var(--s123-primary);
  box-shadow: var(--s123-shadow-card-hover);
  transform: translateY(-0.125rem);
  color: var(--s123-navy);
  text-decoration: none;
}
.s123-support-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.875rem;
  border-radius: 50%;
  background: rgba(5, 131, 242, 0.08);
  color: var(--s123-primary);
  font-size: 1.375rem;
  flex-shrink: 0;
}
.s123-support-card__icon .supportCatIcon {
  color: inherit;
  font-size: inherit;
}
.s123-support-card__label {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== Support article list cards ===== */
.supportPage .site123_resultList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}
.s123-article-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.375rem;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  text-decoration: none;
  color: var(--s123-navy);
  transition: border-color 0.2s linear, box-shadow 0.2s linear, transform 0.2s linear;
  box-sizing: border-box;
}
.s123-article-card:hover,
.s123-article-card:focus {
  border-color: var(--s123-primary);
  box-shadow: var(--s123-shadow-card-hover);
  transform: translateY(-0.125rem);
  text-decoration: none;
  color: var(--s123-navy);
}
.s123-article-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}
.s123-article-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--s123-navy);
}
.s123-article-card__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--s123-muted);
}
.s123-article-card__arrow {
  flex-shrink: 0;
  color: var(--s123-primary);
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.s123-article-card:hover .s123-article-card__arrow {
  opacity: 1;
}

/* Design-sale floating button — hidden on the public website */
#insideChat_freeDesign {
  display: none !important;
}

/* ===== Landing hero stacked template images ===== */
.start-section .start-img,
#homepageGeneratorLandingPage .start-img {
  position: relative;
  width: 100%;
  min-height: clamp(20rem, 42vw, 34rem);
}
@media (min-width: 75.0625rem) {
  .start-section .start-img,
  #homepageGeneratorLandingPage .start-img {
    min-height: clamp(24rem, 36vw, 38rem);
  }
}
.start-section .start-img-ai-builder {
  min-height: 0;
  overflow: visible;
}
/* Stacked previews — natural screenshot proportions (no aspect-ratio / object-fit) */
.mainSectionTemplateImage {
  position: absolute;
  display: block;
  width: 62%;
  max-width: 100%;
  height: auto;
  border-radius: var(--s123-radius);
  box-shadow: 0 2.25rem 6.75rem rgba(0, 0, 0, 0.12);
}
.mainSectionTemplateImage_0 {
  top: 0;
  inset-inline-end: 0;
  z-index: 1;
}
.mainSectionTemplateImage_1 {
  top: 18%;
  inset-inline-end: 19%;
  z-index: 2;
}
.mainSectionTemplateImage_2 {
  top: 36%;
  inset-inline-end: 38%;
  z-index: 3;
}
@media (max-width: 75rem) {
  .mainSectionTemplateImage {
    width: 70%;
  }
  .mainSectionTemplateImage_1 {
    top: 15%;
    inset-inline-end: 15%;
  }
  .mainSectionTemplateImage_2 {
    top: 30%;
    inset-inline-end: 30%;
  }
}

/* ===== Examples grid — full-width 3-column previews ===== */
.s123-examples-grid,
#pluginsList.s123-examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 40rem) {
  .s123-examples-grid,
  #pluginsList.s123-examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62rem) {
  .s123-examples-grid,
  #pluginsList.s123-examples-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.s123-examples-grid > .filtered-item,
.s123-examples-grid > div,
#pluginsList.s123-examples-grid > .filtered-item {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}
.s123-example-card {
  display: block;
  width: 100%;
  border-radius: var(--s123-radius);
  overflow: hidden;
  box-shadow: var(--s123-shadow-card);
  transition: box-shadow 0.2s linear, transform 0.2s linear;
}
.s123-example-card:hover {
  box-shadow: var(--s123-shadow-card-hover);
  transform: translateY(-0.125rem);
}
.s123-example-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Reviews grid — 3-column testimonial cards ===== */
.s123-reviews-aggregate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
}
.s123-reviews-aggregate__stars.stars {
  gap: 0.125rem;
}
.s123-reviews-aggregate__stars.stars > img {
  width: 1rem;
  height: 1rem;
}
.s123-reviews-aggregate__link {
  color: var(--s123-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}
.s123-reviews-aggregate__link:hover {
  text-decoration: underline;
}
/* Review cards — shared markup via includes/renderReviewCard.php (reviewItem) */

/* ===== Template cards — grid + preview card with actions ===== */
.s123-templates-grid,
#pluginsList.s123-templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 40rem) {
  .s123-templates-grid,
  #pluginsList.s123-templates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62rem) {
  .s123-templates-grid,
  #pluginsList.s123-templates-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.s123-templates-grid > .filtered-item {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}
.s123-template-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  overflow: hidden;
  transition: box-shadow 0.2s linear, transform 0.2s linear;
}
.s123-template-card:hover {
  box-shadow: var(--s123-shadow-card-hover);
  transform: translateY(-0.125rem);
}
.s123-template-card__preview {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #eef2f8;
  cursor: pointer;
}
.s123-template-card__preview img {
  display: block;
  width: 100%;
  height: auto;
}
.s123-template-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
}
.s123-template-card__name {
  color: var(--s123-navy);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.35;
}
.s123-template-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

/* ===== SEO link lists — compact 2-column footer links ===== */
.s123-seo-links,
.s123-seo-links.cloudLinks {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.s123-seo-links li {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}
.s123-seo-links li a {
  color: var(--s123-primary);
  font-size: 0.9375rem;
  text-decoration: none;
}
.s123-seo-links li a:hover {
  text-decoration: underline;
}
.cloudLinks li a {
  color: var(--s123-primary);
  text-decoration: none;
}
.cloudLinks li a:hover {
  text-decoration: underline;
}

/* ===== Page intro — compact slogan under inner-page hero ===== */
.s123-page-intro {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  padding: 1.5rem 2rem;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  text-align: center;
}
.s123-page-intro .s123-body,
.s123-page-intro p {
  margin: 0;
  color: var(--s123-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* ===== Template previews — full screenshot, natural height ===== */
.templatesPage .previewImage,
.templatesPage .previewImageCat {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.templatesPage .previewImageDesktop,
.templatesPage .previewImageCatDesktop {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Image layout — promo / feature sections use natural proportions (no object-fit crop) ===== */
.homepage_image_p,
.oneFeature .rightSide .homepage_image_p,
.oneFeature .rightSide img:not(.support-chat-hero) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.howto_image_p {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--s123-radius);
}
.featurePage .pluginCard .logo img,
.app-market .s123-app-market-card__logo img,
#pluginsList .pluginCard .logo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
}
.supportPage .supportArticleBox .content img,
.supportPage .supportArticleBox .content video {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

/* ===== App Market — sidebar + grid (no Bootstrap col-* ) ===== */
.appMarketPage > .flex.flex-wrap {
  align-items: flex-start;
}
.appMarketPage > .flex.flex-wrap > .s123-app-market-sidebar {
  flex: 0 0 100%;
  max-width: 100%;
}
.appMarketPage > .flex.flex-wrap > #pluginsList,
.appMarketPage > .flex.flex-wrap > .s123-app-market-detail-wrap {
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
}
@media (min-width: 48rem) {
  .appMarketPage > .flex.flex-wrap > .s123-app-market-sidebar {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .appMarketPage > .flex.flex-wrap > #pluginsList,
  .appMarketPage > .flex.flex-wrap > .s123-app-market-detail-wrap {
    flex: 1 1 0%;
    max-width: none;
  }
}

/* ===== App Market — sidebar search + category nav ===== */
.s123-app-market-sidebar {
  position: sticky;
  top: 7rem;
}
.s123-app-market-search {
  margin-bottom: 1rem;
}
.s123-app-market-search .s123-input-addon {
  background: #fff;
  border: 1px solid var(--s123-border);
  border-inline-end: 0;
  color: var(--s123-muted);
  padding: 0 0.875rem;
  display: flex;
  align-items: center;
}
.s123-app-market-search .s123-input {
  border-start-start-radius: 0;
  border-end-start-radius: 0;
}
.s123-app-market-select {
  margin-top: 0.75rem;
}
.s123-app-market-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.s123-app-market-nav__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-radius: var(--s123-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--s123-navy);
  text-decoration: none;
  transition: background-color 0.15s linear, color 0.15s linear;
}
.s123-app-market-nav__item:hover,
.s123-app-market-nav__item:focus {
  background: rgba(5, 131, 242, 0.08);
  color: var(--s123-primary);
  text-decoration: none;
}
.s123-app-market-nav__item.is-active {
  background: var(--s123-primary);
  color: #fff;
}
.s123-app-market-nav__item.is-active .s123-app-market-nav__icon {
  color: #fff;
}
.s123-app-market-nav__icon {
  width: 1.125rem;
  text-align: center;
  color: var(--s123-primary);
  flex-shrink: 0;
}

/* ===== App Market — app cards grid ===== */
.s123-app-market-grid,
#pluginsList.s123-app-market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 48rem) {
  .s123-app-market-grid,
  #pluginsList.s123-app-market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 75rem) {
  .s123-app-market-grid,
  #pluginsList.s123-app-market-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.s123-app-market-grid > .filtered-item,
#pluginsList.s123-app-market-grid > .filtered-item {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}
.s123-app-market-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 11rem;
  padding: 1.5rem 1.25rem 1.25rem;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  text-decoration: none;
  color: var(--s123-navy);
  position: relative;
  box-sizing: border-box;
  transition: border-color 0.2s linear, box-shadow 0.2s linear, transform 0.2s linear;
}
.s123-app-market-card:hover,
.s123-app-market-card:focus {
  border-color: var(--s123-primary);
  box-shadow: var(--s123-shadow-card-hover);
  transform: translateY(-0.125rem);
  text-decoration: none;
  color: var(--s123-navy);
}
.s123-app-market-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5rem;
  margin-bottom: 0.875rem;
}
.s123-app-market-card__logo img {
  max-height: 4.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.s123-app-market-card__logo-fallback {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.s123-app-market-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  flex: 1;
}
.s123-app-market-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--s123-navy);
}
.s123-app-market-card__category {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--s123-muted);
}
.s123-app-market-card__arrow {
  position: absolute;
  inset-inline-end: 0.75rem;
  inset-block-end: 0.625rem;
  font-size: 0.6875rem;
  color: var(--s123-primary);
}

/* ===== App Market — detail view ===== */
.s123-app-market-breadcrumb {
  margin-bottom: 1.25rem;
  color: var(--s123-muted);
  font-size: 0.875rem;
}
.s123-app-market-breadcrumb a {
  color: var(--s123-primary);
  text-decoration: none;
}
.s123-app-market-breadcrumb a:hover {
  text-decoration: underline;
}
.s123-app-market-detail {
  padding: 1.75rem;
  margin-bottom: 2rem;
}
.s123-app-market-detail__logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: var(--s123-radius);
}
.s123-app-market-detail__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--s123-primary);
  text-decoration: none;
  word-break: break-all;
}
.s123-app-market-detail__link:hover {
  text-decoration: underline;
}
.app-market .articleTagBox {
  padding: 1rem;
  margin-bottom: 1rem;
  background: #F4F8FF;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
}
.app-market .articleTagBoxTitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--s123-navy);
  margin-bottom: 0.5rem;
}
.app-market .articleTagBox a {
  display: block;
  padding: 0.1875rem 0;
  font-size: 0.875rem;
  color: var(--s123-primary);
  text-decoration: none;
}
.app-market .articleTagBox a:hover {
  text-decoration: underline;
}
.s123-app-market-detail__pricing {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--s123-muted);
}
.s123-app-market-detail__pricing strong {
  color: var(--s123-navy);
}
.s123-app-market-detail__content .s123-body {
  margin-bottom: 1.5rem;
}
.s123-app-market-video {
  margin-top: 1.5rem;
}
.s123-app-market-video__embed {
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  padding: 0.3125rem;
  max-width: 53.375rem;
  overflow: hidden;
}
.s123-app-market-related-title {
  margin-bottom: 1.25rem;
}
.s123-app-market-grid--related {
  margin-bottom: 0;
}

/* ===== Domain search field (hero of /domain-search and the TLD landing pages) =====
   The shared tool CSS (manager/domain/suggestedDomains/css/style.css) is linked inside the
   page body, so it loads after this file — every rule below has to out-specify it. */
.landing_bigTempImage.clean .domainInput {
  margin-top: 1.75rem;
}
.s123-domain-search .domain-search-row {
  margin-bottom: 0;
}
.s123-domain-search .search-domain-group {
  width: 100%;
  max-width: 41rem;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: var(--s123-radius);
  box-shadow: 0 1rem 2.25rem -0.75rem rgba(1, 11, 64, 0.5);
  overflow: hidden;
}
.s123-domain-search .search-domain-group .search-query {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  height: 3.75rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--s123-navy);
  font-size: 1.0625rem;
  direction: ltr;
  text-align: start;
}
.s123-domain-search .search-domain-group .search-query:focus,
.s123-domain-search .search-domain-group .search-query:focus-visible {
  border: 0;
  outline: none;
  box-shadow: none;
}
.s123-domain-search .search-domain-group #searchDomain {
  flex: 0 0 auto;
  width: auto;
  min-width: 9.5rem;
  height: 3.75rem;
  padding: 0 1.5rem;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
}
.s123-domain-search .search-domain-group .s123-domain-search-btn-icon {
  display: none;
}
@media (max-width: 47.9375rem) {
  .s123-domain-search .search-domain-group {
    flex-direction: row;
    margin: 0 auto;
  }
  .s123-domain-search .search-domain-group .search-query {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
  .s123-domain-search .search-domain-group #searchDomain {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 3.75rem;
    width: 3.75rem;
    min-width: 3.75rem;
    padding: 0;
  }
  .s123-domain-search .search-domain-group #searchDomainText {
    display: none;
  }
  .s123-domain-search .search-domain-group .s123-domain-search-btn-icon {
    display: inline-flex;
    font-size: 1.125rem;
  }
  .s123-domain-search .search-domain-group #searchDomainLoading:not(.hidden) + .s123-domain-search-btn-icon {
    display: none;
  }
}
/* Trust badges under the hero field */
.s123-domain-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem 1.75rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}
.s123-domain-hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

/* ===== Domain search results — table (SuggestedDomains, no Bootstrap grid) ===== */
.s123-domain-results-section {
  display: none;
}
.s123-domain-results-section.is-visible {
  display: block;
}
.s123-domain-results-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.5rem 0;
  color: var(--s123-muted);
}
.s123-domain-results-loading.hidden {
  display: none !important;
}
/* The domain the visitor searched for — featured above the suggestion tables */
.s123-domain-results-primary {
  margin-bottom: 2rem;
}
.s123-domain-results-primary-title {
  margin: 0 0 0.75rem;
  color: var(--s123-navy);
  font-size: 1.125rem;
  font-weight: 600;
}
.s123-domain-results .main-domain-container {
  display: block;
  margin-bottom: 0;
}
.s123-domain-results #domainContainer {
  width: 100%;
  max-width: none;
}
.s123-domain-results #domainContainer .SearchDomainPreview.well {
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  overflow: hidden;
}
.s123-domain-results #domainContainer .domain-option-view {
  padding: 1rem 1.25rem;
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(5, 131, 242, 0.06) 0%, rgba(255, 255, 255, 0) 42%);
}
/* Suggestion tables — two cards side by side on desktop */
.s123-domain-results #suggestedDomainsContainer .domain-row-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
}
.s123-domain-results #suggestedDomainsContainer .domain-row-mobile > .col-md-6,
.s123-domain-results #suggestedDomainsContainer .domain-row-mobile > .col-xs-12 {
  flex: 1 1 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (min-width: 48rem) {
  .s123-domain-results #suggestedDomainsContainer .domain-row-mobile > .col-md-6 {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}
.s123-domain-results #suggestedDomainsContainer .domain-box {
  height: 100%;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  overflow: hidden;
}
.s123-domain-results #suggestedDomainsContainer .domain-s-result-header {
  padding: 0.875rem 1.25rem;
  background: var(--s123-navy);
}
.s123-domain-results #suggestedDomainsContainer .domain-box .domain-s-result-header h5 {
  margin: 0;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.s123-domain-results #suggestedDomainsContainer .domainSearchResults {
  display: block;
  border: 0;
  background: #fff;
}
/* Column titles + rows share one grid so the availability column lines up */
.s123-domain-results .domain-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 9.5rem 7.5rem;
  gap: 1rem;
  padding: 0.625rem 1.25rem;
  background: #F8FAFF;
  border-bottom: 1px solid var(--s123-border);
  color: var(--s123-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.s123-domain-results .domain-table-col-status,
.s123-domain-results .domain-table-col-actions {
  text-align: end;
}
.s123-domain-results #domainContainer .domain-option-view,
.s123-domain-results #suggestedDomainsContainer .domain-option-view {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 9.5rem 7.5rem;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--s123-border);
  transition: background-color 0.15s linear;
}
.s123-domain-results #domainContainer .domain-status-col,
.s123-domain-results #suggestedDomainsContainer .domain-status-col {
  display: flex;
  justify-content: flex-end;
}
.s123-domain-results #domainContainer .domain-actions-col,
.s123-domain-results #suggestedDomainsContainer .domain-actions-col {
  display: flex;
  justify-content: flex-end;
}
.s123-domain-results #suggestedDomainsContainer .domainSearchResults > .domain-option-view:nth-child(even) {
  background-color: #F8FAFF;
}
.s123-domain-results #suggestedDomainsContainer .domainSearchResults > .domain-option-view:last-child {
  border-bottom: 0;
}
.s123-domain-results #suggestedDomainsContainer .domain-option-view:hover {
  background-color: #EEF5FF;
}
/* A validation error needs the whole row, so the columns stack */
.s123-domain-results #domainContainer .domain-option-view.has-validation-error,
.s123-domain-results #suggestedDomainsContainer .domain-option-view.has-validation-error {
  grid-template-columns: minmax(0, 1fr);
}
.s123-domain-results #domainContainer .domain-validation-error,
.s123-domain-results #suggestedDomainsContainer .domain-validation-error {
  margin-top: 0.5rem;
  border: 1px solid #f0d78c;
  border-radius: var(--s123-radius-btn);
  background: #fff8e6;
  color: #664d03;
  font-size: 0.8125rem;
  font-weight: 500;
}
/* Domain names stay left to right even on RTL pages */
.s123-domain-results .domain-option-name {
  color: var(--s123-navy);
  font-size: 1.0625rem;
  font-weight: 600;
  direction: ltr;
  text-align: start;
  unicode-bidi: isolate;
}
/* Availability column — status pill only */
.s123-domain-results .domain-status.btn-group {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.s123-domain-results .domain-status > .fa-spinner {
  min-width: 6.5rem;
  color: var(--s123-primary);
  text-align: center;
}
.s123-domain-results .domain-status .domain-status-btn {
  min-width: 6.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 6.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  text-align: center;
}
.s123-domain-results .domain-status .btn.btn-success.domain-status-btn {
  background-color: #12855a !important;
  border-color: #12855a !important;
  color: #fff !important;
}
.s123-domain-results .domain-status .btn.btn-success.domain-status-btn:hover {
  background-color: #0e6d4a !important;
  box-shadow: 0 0.25rem 0.75rem rgba(18, 133, 90, 0.3);
}
.s123-domain-results .domain-status .btn.btn-danger.domain-status-btn {
  background-color: #FDECEC !important;
  border-color: #F3C9C9 !important;
  color: #A32830 !important;
  cursor: default;
}
/* Icon actions sit in their own column */
.s123-domain-results #domainContainer .domain-actions,
.s123-domain-results #suggestedDomainsContainer .domain-actions {
  position: static;
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
}
.s123-domain-results #domainContainer .domain-actions > li,
.s123-domain-results #suggestedDomainsContainer .domain-actions > li {
  display: inline-flex;
}
.s123-domain-results #domainContainer .domain-actions .domain-action-btn,
.s123-domain-results #suggestedDomainsContainer .domain-actions .domain-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 2.125rem;
  height: 2.125rem;
  padding: 0;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius-btn);
  background: #fff;
  color: var(--s123-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.15s linear, border-color 0.15s linear, color 0.15s linear;
}
.s123-domain-results #domainContainer .domain-actions .domain-action-btn:hover,
.s123-domain-results #suggestedDomainsContainer .domain-actions .domain-action-btn:hover {
  border-color: var(--s123-primary);
  background: rgba(5, 131, 242, 0.08);
  color: var(--s123-primary);
}
.s123-domain-results .domain-action-label {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}
.s123-domain-results #invalidDomainMsg .alert-warning {
  display: block;
  padding: 1rem 1.25rem;
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-radius: var(--s123-radius);
  color: #664d03;
  text-align: start;
}
@media (max-width: 47.9375rem) {
  .s123-domain-results #domainContainer .domain-option-view,
  .s123-domain-results #suggestedDomainsContainer .domain-option-view {
    grid-template-columns: minmax(0, 1fr);
  }
  .s123-domain-results .domain-table-head {
    display: none;
  }
  .s123-domain-results #domainContainer .domain-status-col,
  .s123-domain-results #suggestedDomainsContainer .domain-status-col,
  .s123-domain-results #domainContainer .domain-actions-col,
  .s123-domain-results #suggestedDomainsContainer .domain-actions-col {
    justify-content: flex-start;
  }
  .s123-domain-results .domain-status.btn-group {
    justify-content: flex-start;
  }
  .s123-domain-results #domainContainer .domain-actions,
  .s123-domain-results #suggestedDomainsContainer .domain-actions {
    justify-content: flex-start;
  }
}

/* ===== FAQ accordion ===== */
/* The 2/3 grid column is still ~57rem on wide screens, which leaves short
   questions stranded next to a long empty row — cap to a reading measure */
.faqAccordion .accordion,
.s123-faq {
  max-width: 46rem;
  margin-inline: auto;
}
.faqAccordion .accordion-section,
.s123-faq .accordion-section {
  margin-bottom: 0.75rem;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--s123-shadow-card);
}
.faqAccordion .accordion-section-title,
.s123-faq .accordion-section-title {
  position: relative;
  width: 100%;
  padding: 1rem 2.75rem 1rem 1.25rem;
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--s123-navy);
  background: #fff;
  text-decoration: none;
  box-sizing: border-box;
}
html[dir="rtl"] .faqAccordion .accordion-section-title,
html[dir="rtl"] .s123-faq .accordion-section-title {
  padding: 1rem 1.25rem 1rem 2.75rem;
}
.faqAccordion .accordion-section-title::after,
.s123-faq .accordion-section-title::after {
  content: "+";
  position: absolute;
  top: 50%;
  inset-inline-end: 1.125rem;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--s123-primary);
  line-height: 1;
}
.faqAccordion .accordion-section-title.active::after,
.s123-faq .accordion-section-title.active::after {
  content: "−";
}
.faqAccordion .accordion-section-title:hover,
.faqAccordion .accordion-section-title.active,
.s123-faq .accordion-section-title:hover,
.s123-faq .accordion-section-title.active {
  color: var(--s123-primary);
  background: #fff;
  text-decoration: none;
}
.faqAccordion .accordion-section-content,
.s123-faq .accordion-section-content {
  padding: 0 1.25rem 1.125rem;
  color: var(--s123-muted);
  line-height: 1.6;
}

/* ===== Support article page (match learn center article shell) ===== */
.supportPage .articleInfo,
.learnPage .articleInfo,
.updatesPage .articleInfo {
  width: 100%;
}
.supportPage .supportArticleBox,
.learnPage .supportArticleBox,
.updatesPage .supportArticleBox {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  width: 100%;
  max-width: 100%;
  padding: 2.5rem;
  margin-bottom: 2rem;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  font-size: 1rem;
  box-sizing: border-box;
}
.supportPage .supportArticleBox > *,
.learnPage .supportArticleBox > *,
.updatesPage .supportArticleBox > * {
  padding-left: 0;
  padding-right: 0;
  min-width: 0;
}
.supportPage .supportArticleBox .s123-article-main,
.learnPage .supportArticleBox .s123-article-main,
.updatesPage .supportArticleBox .s123-article-main {
  flex: 1 1 20rem;
}
.supportPage .supportArticleBox .s123-article-side,
.learnPage .supportArticleBox .s123-article-side,
.updatesPage .supportArticleBox .s123-article-side {
  flex: 0 0 100%;
}
@media (min-width: 48rem) {
  .supportPage .supportArticleBox .s123-article-side,
  .learnPage .supportArticleBox .s123-article-side,
  .updatesPage .supportArticleBox .s123-article-side {
    flex: 0 0 19rem;
  }
}
@media (max-width: 47.9375rem) {
  .supportPage .supportArticleBox,
  .learnPage .supportArticleBox,
  .updatesPage .supportArticleBox {
    padding: 1.25rem;
    gap: 2rem;
  }
}
.supportPage .supportArticleBox h1,
.learnPage .supportArticleBox h1,
.updatesPage .supportArticleBox h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--s123-navy);
}
.supportPage .supportArticleBox .content,
.learnPage .supportArticleBox .content,
.updatesPage .supportArticleBox .content {
  color: #393a3d;
  font-size: 1rem;
  line-height: 1.65;
}
.supportPage .supportArticleBox .content img,
.supportPage .supportArticleBox .content video,
.learnPage .supportArticleBox .content img,
.learnPage .supportArticleBox .content video,
.updatesPage .supportArticleBox .content img,
.updatesPage .supportArticleBox .content video,
.updatesPage .supportArticleBox .s123-update-card__media img,
.updatesPage .supportArticleBox .s123-update-card__media video {
  max-width: 100%;
  height: auto;
  border-radius: var(--s123-radius);
}
.learnPage .supportArticleBox .howto_image_p {
  width: 100%;
  height: auto;
  border-radius: var(--s123-radius);
  margin-bottom: 1.25rem;
}
.learnPage .supportArticleBox .learn-article-section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--s123-border);
}
.learnPage .supportArticleBox .learn-article-section:first-of-type {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: 0;
}
.learnPage .supportArticleBox .learn-article-section h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--s123-navy);
}
.learnPage .howToSteps {
  color: var(--s123-primary);
}
.supportPage .articleAnchorsBox,
.supportPage .articleTagBox,
.learnPage .articleAnchorsBox,
.learnPage .articleTagBox {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
}
.supportPage .articleAnchorsBox div,
.supportPage .articleTagBox div,
.learnPage .articleAnchorsBox div,
.learnPage .articleTagBox div {
  margin-bottom: 0.375rem;
}
.supportPage .articleTagBoxTitle,
.learnPage .articleTagBoxTitle {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--s123-navy);
  margin-bottom: 0.75rem;
}
.supportPage .articleAnchorsBox a,
.supportPage .articleTagBox a,
.learnPage .articleAnchorsBox a,
.learnPage .articleTagBox a {
  display: block;
  padding: 0.25rem 0;
  color: var(--s123-muted);
  text-decoration: none;
}
.supportPage .articleAnchorsBox a:hover,
.supportPage .articleTagBox a:hover,
.learnPage .articleAnchorsBox a:hover,
.learnPage .articleTagBox a:hover {
  color: var(--s123-primary);
  text-decoration: none;
}
.supportPage .learnCenterPromoBox,
.learnPage .learnCenterPromoBox,
.updatesPage .learnCenterPromoBox {
  background: #fff !important;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  padding: 1.5rem;
  margin: 0;
}
.supportPage .learnCenterPromoBox .title,
.learnPage .learnCenterPromoBox .title,
.updatesPage .learnCenterPromoBox .title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--s123-navy);
}
.supportPage .learnCenterPromoBox .des,
.learnPage .learnCenterPromoBox .des,
.updatesPage .learnCenterPromoBox .des {
  color: var(--s123-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.supportPage .learnCenterPromoBox .button,
.learnPage .learnCenterPromoBox .button,
.updatesPage .learnCenterPromoBox .button {
  margin-top: 0.5rem;
}
.learnPage .learnCenterPromoBox_blue {
  width: 100%;
  border: 1px solid var(--s123-border);
  background: rgba(5, 131, 242, 0.08) !important;
  border-radius: var(--s123-radius);
  padding: 1.5rem;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.learnPage .learnCenterPromoBox_blue .title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--s123-navy);
}
.supportPage .supportReviewTool {
  width: 100%;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
}
.supportPage .openIntercomBoxBottom {
  text-align: center;
}
.supportPage .breadcrumb,
.learnPage .breadcrumb,
.updatesPage .breadcrumb {
  margin-bottom: 1rem;
  color: var(--s123-muted);
}
.supportPage .breadcrumb a,
.learnPage .breadcrumb a,
.updatesPage .breadcrumb a {
  color: var(--s123-primary);
  text-decoration: none;
}
.supportPage .articleInfo .flex.items-center.justify-center,
.learnPage .articleInfo .flex.items-center.justify-center,
.updatesPage .articleInfo .flex.items-center.justify-center {
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 47.9375rem) {
  .supportPage .articleInfo .flex.items-center.justify-center,
  .learnPage .articleInfo .flex.items-center.justify-center,
  .updatesPage .articleInfo .flex.items-center.justify-center {
    flex-direction: column;
    align-items: stretch;
  }
  .supportPage .articleInfo .w-1/2,
  .learnPage .articleInfo .w-1/2,
  .updatesPage .articleInfo .w-1/2 {
    width: 100% !important;
    flex: none !important;
  }
}

/* ===== Pagination (learn, updates — replaces Bootstrap .pagination) ===== */
.s123-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.s123-pagination > li {
  display: inline-flex;
  margin: 0;
  padding: 0;
}
.s123-pagination > li > a,
.s123-pagination > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.625rem;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius-btn);
  background: #fff;
  color: var(--s123-navy);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  transition: border-color 0.15s linear, color 0.15s linear, background-color 0.15s linear;
}
.s123-pagination > li > a:hover,
.s123-pagination > li > a:focus {
  border-color: var(--s123-primary);
  color: var(--s123-primary);
  text-decoration: none;
}
.s123-pagination > li.active > a,
.s123-pagination > li.active > a:hover,
.s123-pagination > li.active > a:focus {
  background: var(--s123-primary);
  border-color: var(--s123-primary);
  color: #fff;
}
.s123-pagination > li.disabled > span {
  border-style: dashed;
  color: var(--s123-muted);
  background: #f8fafc;
  cursor: default;
}
.s123-pagination-sm > li > a,
.s123-pagination-sm > li > span {
  min-width: 2rem;
  height: 2rem;
  font-size: 0.8125rem;
}
.s123-pagination-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}

/* ===== Choice list (support article feedback) ===== */
.s123-choice-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 24rem;
  margin: 0.75rem auto 0;
}
.s123-choice-list__item {
  display: block;
  padding: 0.75rem 1rem;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius-btn);
  background: #fff;
  color: var(--s123-navy);
  text-decoration: none;
  text-align: start;
  cursor: pointer;
  transition: border-color 0.2s linear, color 0.2s linear, background-color 0.2s linear;
}
.s123-choice-list__item:hover,
.s123-choice-list__item:focus {
  border-color: var(--s123-primary);
  color: var(--s123-primary);
}
.s123-choice-list__item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.1875rem rgba(5, 131, 242, 0.15);
}

/* ===== Updates list + detail ===== */
.updatesPage .s123-update-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.updatesPage .s123-update-card {
  padding: 1.5rem;
  box-sizing: border-box;
}
.updatesPage .s123-update-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.updatesPage .s123-update-card__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--s123-navy);
}
.updatesPage .s123-update-card__title a {
  color: inherit;
  text-decoration: none;
}
.updatesPage .s123-update-card__title a:hover,
.updatesPage .s123-update-card__title a:focus {
  color: var(--s123-primary);
  text-decoration: none;
}
.updatesPage .s123-update-card__date {
  display: block;
  font-size: 0.875rem;
  color: var(--s123-muted);
  white-space: nowrap;
}
.updatesPage .s123-update-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.updatesPage .s123-update-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: var(--s123-radius-btn);
  background: rgba(5, 131, 242, 0.1);
  color: var(--s123-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}
.updatesPage .s123-update-tag:hover,
.updatesPage .s123-update-tag:focus {
  background: var(--s123-primary);
  color: #fff;
  text-decoration: none;
}
.updatesPage .s123-update-card__body {
  color: #393a3d;
  line-height: 1.65;
}
.updatesPage .s123-update-card__media {
  display: block;
  margin-top: 1.25rem;
}
.updatesPage .s123-update-card__media img,
.updatesPage .s123-update-card__media video {
  width: 100%;
  height: auto;
  border-radius: var(--s123-radius);
  border: 1px solid var(--s123-border);
}
.updatesPage .s123-update-disabled-notice {
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(231, 76, 60, 0.35);
  border-radius: var(--s123-radius);
  background: rgba(231, 76, 60, 0.08);
  color: #b42318;
  font-size: 0.875rem;
}

/* ===== Policy / legal pages (privacy, terms, accessibility, abuse) ===== */
.s123-policy-page {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.s123-policy-content {
  padding: 2.5rem 3rem;
  background: #fff;
  border: 1px solid var(--s123-border);
  border-radius: var(--s123-radius);
  box-shadow: var(--s123-shadow-card);
  box-sizing: border-box;
}
@media (max-width: 47.9375rem) {
  .s123-policy-content {
    padding: 1.5rem 1.25rem;
  }
}
.s123-policy-content__body {
  color: #393a3d;
  font-size: 1rem;
  line-height: 1.7;
}
.s123-policy-content__body h1,
.s123-policy-content__body h2,
.s123-policy-content__body h3,
.s123-policy-content__body h4 {
  color: var(--s123-navy);
  font-weight: 600;
  line-height: 1.35;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.s123-policy-content__body h1 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}
.s123-policy-content__body h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}
.s123-policy-content__body h3 {
  font-size: 1.125rem;
}
.s123-policy-content__body h1:first-child,
.s123-policy-content__body h2:first-child,
.s123-policy-content__body h3:first-child,
.s123-policy-content__body h4:first-child {
  margin-top: 0;
}
.s123-policy-content__body p {
  margin-bottom: 1rem;
}
.s123-policy-content__body p:last-child {
  margin-bottom: 0;
}
.s123-policy-content__body ul,
.s123-policy-content__body ol {
  margin-bottom: 1rem;
  padding-inline-start: 1.5rem;
}
.s123-policy-content__body li {
  margin-bottom: 0.375rem;
}
.s123-policy-content__body a {
  color: var(--s123-primary);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.s123-policy-content__body a:hover,
.s123-policy-content__body a:focus {
  color: var(--s123-navy);
}
.s123-policy-content__body table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.s123-policy-content__body th,
.s123-policy-content__body td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--s123-border);
  text-align: start;
  vertical-align: top;
}
.s123-policy-content__body th {
  background: #f8fafc;
  color: var(--s123-navy);
  font-weight: 600;
}
.s123-policy-content__body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-inline-start: 0.25rem solid var(--s123-primary);
  background: rgba(5, 131, 242, 0.06);
  border-radius: 0 var(--s123-radius) var(--s123-radius) 0;
}
.s123-policy-content__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--s123-border);
  text-align: center;
  font-size: 1rem;
}
.s123-policy-content__footer a {
  color: var(--s123-primary);
  font-weight: 600;
  text-decoration: none;
}
.s123-policy-content__footer a:hover,
.s123-policy-content__footer a:focus {
  text-decoration: underline;
}
