/**
 * Homepage styles — values from Wix export (theretailoptionstrader.com/index.html).
 * Scoped to #rt-wix-shell.
 */

#rt-wix-shell {
  --color-43: 21, 29, 39;
  --color-44: 87, 152, 194;
  --color-36: 255, 255, 255;
  --color-37: 20, 20, 20;
  --color-38: 161, 161, 161;
  --color-42: 19, 79, 132;
  --color-15: 20, 20, 20;
  --navy: #151d27;
  --blue: #5798c2;
  --page-inner-max: 1380px;
  --page-padding-x: clamp(16px, 2vw, 28px);
  --header-height: 80px;
  --radius-ui: 6px;
  --radius-cta: 6px;
  --line-section: #e2e6ea;
  --line-header: #dfe3e8;
  --rt-single-nav-width: 252px;
  --rt-single-ad-width: 300px;
  --rt-single-layout-gap: 32px;
  --font-heading: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-family: var(--font-body);
  color: rgb(var(--color-37));
  background: rgb(var(--color-36));
  line-height: 1.4;
  font-size: 16px;
  font-weight: 400;
  overflow-x: clip;
  max-width: 100%;
}

#rt-wix-shell *,
#rt-wix-shell *::before,
#rt-wix-shell *::after {
  box-sizing: border-box;
}

#rt-wix-shell a {
  color: inherit;
  text-decoration: none;
}

#rt-wix-shell img {
  max-width: 100%;
  height: auto;
  display: block;
}

#rt-wix-shell .rt-wrap {
  width: 100%;
  max-width: var(--page-inner-max);
  margin: 0 auto;
  padding: 0 var(--page-padding-x);
}

#rt-wix-shell main {
  width: 100%;
  min-width: 0;
}

/* Header — sticky, full-width rule under nav (Wix-style separation) */
#rt-wix-shell .rt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-header);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.admin-bar #rt-wix-shell .rt-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar #rt-wix-shell .rt-header {
    top: 46px;
  }
}

#rt-wix-shell .rt-header.is-scrolled {
  border-bottom-color: #d0d5dc;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 16px rgba(21, 29, 39, 0.07);
}

#rt-wix-shell .rt-header-inner {
  position: relative;
  width: 100%;
  max-width: var(--page-inner-max);
  margin: 0 auto;
  padding: 12px var(--page-padding-x);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

#rt-wix-shell .rt-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgb(var(--color-43));
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

#rt-wix-shell .rt-brand:hover .rt-brand-text {
  color: var(--blue);
}

#rt-wix-shell .rt-brand-text {
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

#rt-wix-shell .rt-brand-text-line {
  display: inline;
}

#rt-wix-shell .rt-brand-text-line + .rt-brand-text-line::before {
  content: ' ';
}

#rt-wix-shell .rt-brand img,
#rt-wix-shell .rt-brand picture {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}

#rt-wix-shell .rt-brand picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#rt-wix-shell .rt-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

#rt-wix-shell .rt-nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: rgb(var(--color-43));
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#rt-wix-shell .rt-header.is-nav-open .rt-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#rt-wix-shell .rt-header.is-nav-open .rt-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

#rt-wix-shell .rt-header.is-nav-open .rt-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#rt-wix-shell .rt-nav {
  --nav-item-height: 42px;
  --nav-item-min-width: 92px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

#rt-wix-shell .rt-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: var(--nav-item-height);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: var(--radius-ui);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

#rt-wix-shell .rt-nav-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Home / About / Blog — fixed box so active outline never shifts layout */
#rt-wix-shell .rt-nav-item {
  min-width: var(--nav-item-min-width);
  padding: 0 18px;
  color: rgb(var(--color-43));
  background: transparent;
}

#rt-wix-shell .rt-nav-item:hover {
  color: var(--blue);
  background: rgba(87, 152, 194, 0.06);
}

#rt-wix-shell .rt-nav-item.is-active {
  color: var(--blue);
  border-color: var(--blue);
  background: #fff;
}

#rt-wix-shell .rt-nav-item.is-active:hover {
  background: rgba(87, 152, 194, 0.08);
  color: var(--blue);
}

#rt-wix-shell .rt-nav-divider {
  display: block;
  width: 1px;
  height: 26px;
  margin: 0 8px;
  background: var(--line-section);
  flex-shrink: 0;
}

#rt-wix-shell .rt-nav-cta {
  min-width: 128px;
  padding: 0 24px;
  margin-left: 4px;
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  font-weight: 500;
}

#rt-wix-shell .rt-nav-cta:hover {
  background: #4a87b0;
  border-color: #4a87b0;
  color: #fff;
}

/* Hero (comp-mkvkd1uq: 1116, columns 558px, min-height 530) */
#rt-wix-shell .rt-hero {
  padding: 32px 0 40px;
}

#rt-wix-shell .rt-feature {
  border-top: 1px solid var(--line-section);
  padding-top: 48px;
}

#rt-wix-shell .rt-latest {
  border-top: 1px solid var(--line-section);
  padding-top: 48px;
}

#rt-wix-shell .rt-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 530px;
}

#rt-wix-shell .rt-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 24px 40px 0;
}

#rt-wix-shell .rt-hero h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.4;
  color: rgb(var(--color-43));
  margin: 0 0 19px;
  max-width: 545px;
}

#rt-wix-shell .rt-accent {
  color: rgb(var(--color-44));
}

#rt-wix-shell .rt-hero-lead {
  font-size: 18px;
  line-height: 1.4;
  color: rgb(var(--color-37));
  margin: 0 0 36px;
  max-width: 500px;
}

#rt-wix-shell .rt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

#rt-wix-shell .rt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 174px;
  padding: 10px 24px;
  border-radius: var(--radius-cta);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.15s ease;
}

#rt-wix-shell .rt-btn:hover {
  opacity: 0.92;
}

#rt-wix-shell .rt-btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: #fff;
}

#rt-wix-shell .rt-btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

#rt-wix-shell .rt-hero-media {
  display: flex;
  align-items: stretch;
}

#rt-wix-shell .rt-hero-media img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 900 / 620;
  min-height: 380px;
}

/* Hero option 2 — full-bleed overlay */
#rt-wix-shell .rt-hero--v2 {
  position: relative;
  padding: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#rt-wix-shell .rt-hero-v2-bg {
  position: absolute;
  inset: 0;
}

#rt-wix-shell .rt-hero-v2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#rt-wix-shell .rt-hero-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(21, 29, 39, 0.92) 0%,
    rgba(21, 29, 39, 0.72) 45%,
    rgba(21, 29, 39, 0.35) 100%
  );
}

#rt-wix-shell .rt-hero-v2-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}

#rt-wix-shell .rt-hero-copy--light h1,
#rt-wix-shell .rt-hero-copy--light .rt-hero-lead {
  color: #fff;
}

#rt-wix-shell .rt-hero-copy--light .rt-accent {
  color: #8ec5e8;
}

#rt-wix-shell .rt-hero-copy--light .rt-btn-dark {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* Hero option 3 — centered */
#rt-wix-shell .rt-hero--v3 {
  padding: 48px 0 40px;
  text-align: center;
}

#rt-wix-shell .rt-hero-v3-inner {
  max-width: 720px;
  margin: 0 auto;
}

#rt-wix-shell .rt-hero-copy--center h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

#rt-wix-shell .rt-hero-copy--center .rt-hero-lead {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

#rt-wix-shell .rt-hero-copy--center .rt-hero-actions {
  justify-content: center;
}

#rt-wix-shell .rt-hero-v3-media {
  margin-top: 36px;
}

#rt-wix-shell .rt-hero-v3-media img {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 900 / 520;
}

/* Hero options 4 & 5 — parallax (same mechanics as subscribe CTA) */
#rt-wix-shell .rt-hero--v4,
#rt-wix-shell .rt-hero--v5 {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

#rt-wix-shell .rt-hero--v4 .rt-hero-parallax-bg,
#rt-wix-shell .rt-hero--v5 .rt-hero-parallax-bg {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

#rt-wix-shell .rt-hero-parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(21, 29, 39, 0.55) 0%,
    rgba(21, 29, 39, 0.82) 100%
  );
  pointer-events: none;
}

#rt-wix-shell .rt-hero--v5 .rt-hero-parallax-overlay {
  background: linear-gradient(
    105deg,
    rgba(21, 29, 39, 0.78) 0%,
    rgba(21, 29, 39, 0.5) 50%,
    rgba(21, 29, 39, 0.72) 100%
  );
}

#rt-wix-shell .rt-hero-parallax-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  width: 100%;
}

#rt-wix-shell .rt-hero--v4 .rt-hero-copy--center h1,
#rt-wix-shell .rt-hero--v5 .rt-hero-copy--center h1 {
  max-width: 640px;
}

#rt-wix-shell .rt-hero--v4 .rt-hero-copy--center .rt-hero-lead,
#rt-wix-shell .rt-hero--v5 .rt-hero-copy--center .rt-hero-lead {
  max-width: 520px;
}

/* Admin hero preview bar (logged-in editors only; outside #rt-wix-shell) */
.rt-hero-picker {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 32px);
  padding: 10px 14px;
  background: #151d27;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  font-size: 13px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.rt-hero-picker-label {
  font-weight: 600;
  margin-right: 4px;
  white-space: nowrap;
}

.rt-hero-picker-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.rt-hero-picker-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.rt-hero-picker-btn.is-active {
  background: #5798c2;
}

.rt-hero-picker-save {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-left: 4px;
  border-radius: 6px;
  background: #fff;
  color: #151d27;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.rt-hero-picker-save:hover {
  background: #e8f4fa;
  color: #151d27;
}

/* Feature (comp-mkzyxgo8) */
#rt-wix-shell .rt-feature {
  padding: 0 0 48px;
  background: #fff;
}

#rt-wix-shell .rt-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 530px;
}

#rt-wix-shell .rt-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 15px 0 0 15px;
  min-height: 530px;
  aspect-ratio: 660 / 800;
}

#rt-wix-shell .rt-feature-copy {
  background: #fff;
  border: 1px solid rgba(var(--color-42), 0.44);
  border-radius: 0 15px 15px 0;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#rt-wix-shell .rt-feature-copy h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.4;
  color: rgb(var(--color-43));
  margin: 0 0 16px;
}

#rt-wix-shell .rt-feature-copy p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.4;
  color: rgb(var(--color-37));
}

#rt-wix-shell .rt-feature-copy ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

#rt-wix-shell .rt-feature-copy li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 18px;
  color: rgb(var(--color-42));
}

#rt-wix-shell .rt-feature-copy li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgb(var(--color-44));
}

/* Latest blog (comp-mkvl077l) */
#rt-wix-shell .rt-latest {
  padding: 0 0 56px;
}

#rt-wix-shell .rt-latest-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

#rt-wix-shell .rt-latest-head h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.4;
  color: rgb(var(--color-43));
  margin: 0;
}

#rt-wix-shell .rt-latest-sub {
  font-size: 18px;
  line-height: 1.4;
  color: rgb(var(--color-37));
  margin: 0 0 28px;
  max-width: 720px;
}

#rt-wix-shell .rt-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#rt-wix-shell .rt-post-card {
  background: #fff;
  border: 1px solid rgba(var(--color-42), 0.44);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#rt-wix-shell .rt-post-card > a:first-child {
  display: block;
}

#rt-wix-shell .rt-post-card img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

#rt-wix-shell .rt-post-card-body {
  padding: 16px 16px 24px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#rt-wix-shell .rt-post-date {
  font-size: 16px;
  color: rgb(var(--color-44));
  margin-bottom: 8px;
}

#rt-wix-shell .rt-post-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: rgb(var(--color-43));
  margin: 0 0 16px;
}

#rt-wix-shell .rt-post-card h3 a:hover {
  color: rgb(var(--color-44));
}

#rt-wix-shell .rt-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: var(--radius-cta);
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

#rt-wix-shell .rt-read-more:hover {
  opacity: 0.92;
}

/* Parallax CTA — fixed viewport background (Wix-style), always filled */
#rt-wix-shell .rt-parallax-cta {
  position: relative;
  width: 100%;
  min-height: 627px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

#rt-wix-shell .rt-parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#rt-wix-shell .rt-parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(var(--color-43));
  opacity: 0.72;
  pointer-events: none;
}

#rt-wix-shell .rt-parallax-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#rt-wix-shell .rt-parallax-inner h2 {
  font-family: var(--font-heading);
  font-size: 47px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #fff;
}

#rt-wix-shell .rt-parallax-inner p {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 42px;
  color: #fff;
}

#rt-wix-shell .rt-parallax-inner .rt-btn {
  min-width: 160px;
}

/* Mobile JS fallback img (when fixed attachment disabled) */
#rt-wix-shell .rt-parallax-bg .rt-parallax-bg-img {
  position: absolute;
  left: 0;
  top: -8%;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center center;
}

/* Footer (SITE_FOOTER — navy, blue top rule, stacked brand) */
#rt-wix-shell .rt-footer {
  background: var(--navy);
  color: #fff;
  border-top: 1px solid rgba(87, 152, 194, 0.55);
  text-align: center;
}

#rt-wix-shell .rt-footer-inner {
  width: 100%;
  max-width: var(--page-inner-max);
  margin: 0 auto;
  padding: 56px var(--page-padding-x) 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

#rt-wix-shell .rt-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 28px;
  transition: opacity 0.15s ease;
}

#rt-wix-shell .rt-footer-brand:hover {
  opacity: 0.92;
}

#rt-wix-shell .rt-footer-brand-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

#rt-wix-shell .rt-footer-brand img,
#rt-wix-shell .rt-footer-brand picture {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
}

#rt-wix-shell .rt-footer-brand picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#rt-wix-shell .rt-footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

#rt-wix-shell .rt-footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-ui);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

#rt-wix-shell .rt-footer-nav a:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

#rt-wix-shell .rt-footer-nav a.is-active {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  font-weight: 500;
}

#rt-wix-shell .rt-footer-nav a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

#rt-wix-shell .rt-footer-cta {
  width: 100%;
  max-width: 420px;
  margin-bottom: 32px;
}

#rt-wix-shell .rt-footer-subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 28px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  border: 1px solid var(--blue);
  border-radius: var(--radius-cta);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

#rt-wix-shell .rt-footer-subscribe:hover {
  background: #4a87b0;
  border-color: #4a87b0;
}

#rt-wix-shell .rt-footer-subscribe:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

#rt-wix-shell .rt-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  max-width: 720px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

#rt-wix-shell .rt-footer-legal-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

#rt-wix-shell .rt-footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s ease;
}

#rt-wix-shell .rt-footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  #rt-wix-shell .rt-brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 11px;
    letter-spacing: 0.045em;
    line-height: 1.25;
    white-space: normal;
    max-width: none;
  }

  #rt-wix-shell .rt-brand-text-line {
    display: block;
  }

  #rt-wix-shell .rt-brand-text-line + .rt-brand-text-line::before {
    content: none;
  }

  #rt-wix-shell .rt-nav-toggle {
    display: flex;
    margin-left: auto;
  }

  #rt-wix-shell .rt-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px var(--page-padding-x) 20px;
    background: #fff;
    border-bottom: 1px solid var(--line-header);
    box-shadow: 0 12px 28px rgba(21, 29, 39, 0.1);
  }

  #rt-wix-shell .rt-header.is-nav-open .rt-nav {
    display: flex;
  }

  #rt-wix-shell .rt-nav {
    gap: 0;
  }

  #rt-wix-shell .rt-nav-link {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    justify-content: center;
  }

  #rt-wix-shell .rt-nav-item,
  #rt-wix-shell .rt-nav-cta {
    min-width: 0;
    width: 100%;
  }

  #rt-wix-shell .rt-nav-divider {
    display: none;
  }

  #rt-wix-shell .rt-nav-cta {
    margin-top: 4px;
  }

  #rt-wix-shell .rt-hero-grid,
  #rt-wix-shell .rt-feature-grid,
  #rt-wix-shell .rt-post-grid {
    grid-template-columns: 1fr;
  }

  #rt-wix-shell .rt-hero-copy {
    padding: 24px 0 0;
  }

  #rt-wix-shell .rt-hero-media img,
  #rt-wix-shell .rt-feature-media img {
    min-height: 320px;
    border-radius: 15px;
    aspect-ratio: auto;
  }

  #rt-wix-shell .rt-feature-media img {
    border-radius: 15px 15px 0 0;
  }

  #rt-wix-shell .rt-feature-copy {
    border-radius: 0 0 15px 15px;
  }

  #rt-wix-shell .rt-latest-head {
    flex-direction: column;
    align-items: flex-start;
  }

  #rt-wix-shell .rt-hero h1,
  #rt-wix-shell .rt-feature-copy h2,
  #rt-wix-shell .rt-latest-head h2 {
    font-size: 36px;
  }

  #rt-wix-shell .rt-hero--v2 {
    min-height: 480px;
  }

  #rt-wix-shell .rt-hero-v2-inner {
    padding: 48px 0;
  }

  #rt-wix-shell .rt-hero--v3 {
    padding-top: 32px;
  }

  #rt-wix-shell .rt-hero--v4,
  #rt-wix-shell .rt-hero--v5 {
    min-height: 480px;
  }

  #rt-wix-shell .rt-hero--v4 .rt-hero-parallax-bg,
  #rt-wix-shell .rt-hero--v5 .rt-hero-parallax-bg {
    background-attachment: scroll;
  }

  #rt-wix-shell .rt-hero-parallax-inner {
    padding: 48px 0;
  }

  .rt-hero-picker {
    flex-direction: column;
    align-items: stretch;
    bottom: 8px;
    font-size: 12px;
  }

  #rt-wix-shell .rt-parallax-inner h2 {
    font-size: 36px;
  }

  #rt-wix-shell .rt-parallax-bg {
    background-attachment: scroll;
  }

  #rt-wix-shell .rt-footer-inner {
    padding-top: 44px;
    padding-bottom: 32px;
  }

  #rt-wix-shell .rt-footer-brand {
    margin-bottom: 24px;
  }

  #rt-wix-shell .rt-footer-brand-text {
    font-size: 13px;
  }

  #rt-wix-shell .rt-footer-nav {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-bottom: 24px;
  }

  #rt-wix-shell .rt-footer-nav a {
    width: 100%;
  }

  #rt-wix-shell .rt-footer-cta {
    max-width: none;
    margin-bottom: 28px;
  }

  #rt-wix-shell .rt-footer-legal {
    flex-direction: column;
    gap: 6px;
  }

  #rt-wix-shell .rt-footer-legal-sep {
    display: none;
  }

  #rt-wix-shell .rt-about-hero-grid {
    grid-template-columns: 1fr;
  }

  #rt-wix-shell .rt-about-hero-media {
    order: -1;
  }

  #rt-wix-shell .rt-about-principles {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #rt-wix-shell .rt-blog-posts.is-view-list .rt-blog-item {
    flex-direction: column;
  }

  #rt-wix-shell .rt-blog-posts.is-view-list .rt-blog-item-media {
    width: 100%;
    max-width: none;
  }
}

/* About page */
#rt-wix-shell .rt-about-hero {
  padding: 48px 0 56px;
}

#rt-wix-shell .rt-about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media screen and (min-width: 901px) {
  #rt-wix-shell .rt-about-hero-grid {
    grid-template-columns: minmax(0, 558px) minmax(0, 1fr);
    gap: 48px;
  }
}

#rt-wix-shell .rt-about-hero-media img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  aspect-ratio: 558 / 608;
}

#rt-wix-shell .rt-about-hero-copy h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.35;
  color: rgb(var(--color-43));
  margin: 0 0 24px;
}

#rt-wix-shell .rt-about-hero-copy p {
  font-size: 18px;
  line-height: 1.5;
  color: rgb(var(--color-37));
  margin: 0 0 18px;
}

#rt-wix-shell .rt-about-values {
  padding: 64px 0 80px;
  border-top: 1px solid var(--line-section);
}

#rt-wix-shell .rt-about-values-title {
  font-family: var(--font-heading);
  font-size: 47px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  color: rgb(var(--color-43));
  margin: 0 0 24px;
}

#rt-wix-shell .rt-about-values-lead {
  font-size: 19px;
  line-height: 1.55;
  text-align: center;
  color: rgb(var(--color-43));
  max-width: 780px;
  margin: 0 auto 48px;
}

#rt-wix-shell .rt-about-values-foot {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 52px;
  padding-top: 8px;
}

#rt-wix-shell .rt-about-values-close {
  margin: 0;
  max-width: 640px;
  font-size: 19px;
  line-height: 1.55;
  text-align: center;
  color: rgb(var(--color-43));
}

#rt-wix-shell .rt-about-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 601px) {
  #rt-wix-shell .rt-about-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
  }
}

@media screen and (min-width: 901px) {
  #rt-wix-shell .rt-about-principles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 24px;
  }
}

#rt-wix-shell .rt-about-principles li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

#rt-wix-shell .rt-about-principles li p {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
  color: rgb(var(--color-43));
  max-width: 15em;
}

#rt-wix-shell .rt-about-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

#rt-wix-shell .rt-about-check svg {
  width: 56px;
  height: 56px;
  display: block;
}

@media screen and (max-width: 1024px) {
  #rt-wix-shell .rt-about-principles li p {
    max-width: 18em;
  }
}

/* Blog archive */
#rt-wix-shell .rt-blog-archive {
  padding: 40px 0 64px;
}

#rt-wix-shell .rt-blog-archive-head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-section);
}

#rt-wix-shell .rt-blog-archive-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

#rt-wix-shell .rt-blog-archive-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

#rt-wix-shell .rt-blog-archive-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(var(--color-38));
}

#rt-wix-shell .rt-blog-tab {
  font-family: var(--font-heading);
  font-size: 43px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(var(--color-43));
  margin: 0;
}

#rt-wix-shell .rt-blog-filters {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

#rt-wix-shell .rt-blog-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

#rt-wix-shell .rt-blog-tag-autocomplete {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  max-width: 420px;
}

#rt-wix-shell .rt-blog-tags-filter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(var(--color-38));
  flex-shrink: 0;
}

#rt-wix-shell .rt-tag-autocomplete-field {
  position: relative;
  flex: 1 1 220px;
  min-width: 0;
}

#rt-wix-shell .rt-tag-autocomplete-input {
  width: 100%;
  min-height: 40px;
  padding: 10px 36px 10px 14px;
  font-size: 15px;
  font-family: inherit;
  color: rgb(var(--color-37));
  background: #fff;
  border: 1px solid var(--line-section);
  border-radius: var(--radius-ui);
}

#rt-wix-shell .rt-tag-autocomplete-input:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

#rt-wix-shell .rt-tag-autocomplete-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-ui);
  color: rgb(var(--color-38));
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}

#rt-wix-shell .rt-tag-autocomplete-clear:hover {
  background: #f0f4f7;
  color: rgb(var(--color-37));
}

#rt-wix-shell .rt-tag-autocomplete-list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line-section);
  border-radius: var(--radius-ui);
  box-shadow: 0 8px 24px rgba(21, 29, 39, 0.1);
  max-height: 240px;
  overflow-y: auto;
}

#rt-wix-shell .rt-tag-autocomplete-list[hidden] {
  display: none;
}

#rt-wix-shell .rt-tag-autocomplete-option {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  text-align: left;
  color: rgb(var(--color-37));
  cursor: pointer;
}

#rt-wix-shell .rt-tag-autocomplete-option:hover,
#rt-wix-shell .rt-tag-autocomplete-option:focus {
  background: #f0f4f7;
  color: var(--blue);
  outline: none;
}

#rt-wix-shell .rt-tag-autocomplete-empty {
  padding: 10px 14px;
  font-size: 13px;
  color: rgb(var(--color-38));
}

#rt-wix-shell .rt-blog-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line-section);
  border-radius: var(--radius-ui);
  font-size: 14px;
  font-weight: 500;
  color: rgb(var(--color-43));
  background: #fff;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

#rt-wix-shell .rt-blog-cat:hover {
  color: var(--blue);
  border-color: var(--blue);
}

#rt-wix-shell .rt-blog-cat.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

#rt-wix-shell .rt-blog-subnav {
  display: flex;
  align-items: center;
  padding-bottom: 6px;
}

#rt-wix-shell .rt-blog-view-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  gap: 4px;
  border: 1px solid var(--line-section);
  border-radius: var(--radius-ui);
  background: #f6f8fa;
}

#rt-wix-shell .rt-blog-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: rgb(var(--color-38));
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

#rt-wix-shell .rt-blog-view-btn:hover {
  color: var(--blue);
  background: rgba(87, 152, 194, 0.1);
}

#rt-wix-shell .rt-blog-view-btn.is-active {
  color: var(--blue);
  background: #fff;
  border-color: var(--line-section);
  box-shadow: 0 1px 3px rgba(21, 29, 39, 0.08);
}

#rt-wix-shell .rt-blog-view-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

#rt-wix-shell .rt-blog-posts.is-view-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

#rt-wix-shell .rt-blog-posts.is-view-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

#rt-wix-shell .rt-blog-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-section);
}

#rt-wix-shell .rt-blog-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

#rt-wix-shell .rt-blog-item-media {
  flex: 0 0 280px;
  max-width: 280px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

#rt-wix-shell .rt-blog-item-media img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  transition: transform 0.2s ease;
}

#rt-wix-shell .rt-blog-item-media:hover img {
  transform: scale(1.03);
}

#rt-wix-shell .rt-blog-item-body {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

#rt-wix-shell .rt-blog-item-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}

#rt-wix-shell .rt-blog-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

#rt-wix-shell .rt-blog-item-tags a {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgb(var(--color-43));
  background: #f0f4f7;
  border: 1px solid var(--line-section);
}

#rt-wix-shell .rt-blog-item-tags a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

#rt-wix-shell .rt-blog-item-tags li.is-current a {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

#rt-wix-shell .rt-blog-item-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 12px;
}

#rt-wix-shell .rt-blog-item-title a:hover {
  color: var(--blue);
}

#rt-wix-shell .rt-blog-item-excerpt {
  font-size: 16px;
  line-height: 1.5;
  color: rgb(var(--color-37));
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#rt-wix-shell .rt-blog-item-meta {
  font-size: 14px;
  color: rgb(var(--color-38));
  margin: 0;
}

#rt-wix-shell .rt-blog-item-meta-sep {
  margin: 0 6px;
}

#rt-wix-shell .rt-blog-item-read {
  display: none;
}

/* Grid view — card layout (homepage-style) */
#rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item {
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(var(--color-42), 0.44);
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}

#rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-media {
  flex: none;
  max-width: none;
  width: 100%;
  border-radius: 0;
}

#rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-media img {
  border-radius: 15px 15px 0 0;
}

#rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 16px 24px;
  flex: 1;
}

#rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-title {
  font-size: 22px;
  margin-bottom: 10px;
}

#rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-excerpt {
  -webkit-line-clamp: 2;
  margin-bottom: 12px;
}

#rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-meta {
  margin-bottom: 16px;
}

#rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-read {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: var(--radius-cta);
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

#rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-read:hover {
  background: #4a87b0;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  #rt-wix-shell .rt-blog-posts.is-view-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 600px) {
  #rt-wix-shell .rt-blog-archive-bar {
    align-items: stretch;
  }

  #rt-wix-shell .rt-blog-subnav {
    justify-content: flex-end;
    padding-bottom: 0;
  }

  #rt-wix-shell .rt-blog-tab {
    font-size: 36px;
  }

  #rt-wix-shell .rt-blog-categories {
    gap: 6px;
  }

  #rt-wix-shell .rt-blog-cat {
    padding: 0 12px;
    font-size: 13px;
  }

  #rt-wix-shell .rt-blog-tag-autocomplete {
    max-width: none;
    width: 100%;
  }

  #rt-wix-shell .rt-blog-posts.is-view-grid {
    grid-template-columns: 1fr;
  }
}

#rt-wix-shell .rt-blog-pagination {
  margin-top: 40px;
  text-align: center;
}

#rt-wix-shell .rt-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  margin: 0 4px;
  border-radius: var(--radius-ui);
  color: rgb(var(--color-43));
  border: 1px solid var(--line-section);
}

#rt-wix-shell .rt-blog-pagination .page-numbers.current,
#rt-wix-shell .rt-blog-pagination .page-numbers:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

#rt-wix-shell .rt-blog-empty {
  font-size: 18px;
  color: rgb(var(--color-37));
}

/* Single post — left nav | article | right ad rail */
#rt-wix-shell .rt-single-layout {
  display: grid;
  grid-template-columns:
    var(--rt-single-nav-width)
    minmax(0, 1fr)
    var(--rt-single-ad-width);
  gap: var(--rt-single-layout-gap);
  align-items: start;
  padding: 40px 0 64px;
  max-width: calc(var(--page-inner-max) + 40px);
}

#rt-wix-shell .rt-single-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

#rt-wix-shell .rt-single-ad-rail {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

#rt-wix-shell .rt-ad-rail-inner {
  width: var(--rt-single-ad-width);
  max-width: 100%;
}

#rt-wix-shell .rt-ad-rail-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(var(--color-38));
}

#rt-wix-shell .rt-ad-slot {
  width: 100%;
  margin: 0 0 16px;
  border: 1px dashed #c5ccd3;
  border-radius: 8px;
  background: #f8f9fb;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgb(var(--color-38));
  font-size: 13px;
  line-height: 1.4;
}

#rt-wix-shell .rt-ad-slot:last-child {
  margin-bottom: 0;
}

#rt-wix-shell .rt-ad-slot:not(.rt-ad-slot--tall) {
  min-height: 250px;
}

#rt-wix-shell .rt-ad-slot--tall {
  min-height: 600px;
  margin-bottom: 20px;
}

#rt-wix-shell .rt-ad-slot.is-placeholder.is-preview {
  opacity: 0.55;
  background: #eceff2;
  border-color: #b8c0c8;
  color: rgb(var(--color-38));
}

#rt-wix-shell .rt-ad-unit {
  width: 100%;
  max-width: var(--rt-single-ad-width);
  margin: 0 0 16px;
  overflow: hidden;
}

#rt-wix-shell .rt-ad-unit:last-child {
  margin-bottom: 0;
}

#rt-wix-shell .rt-ad-unit.rt-ad-slot--tall {
  min-height: 600px;
  margin-bottom: 20px;
}

#rt-wix-shell .rt-single-ad-gutter {
  width: var(--rt-single-ad-width);
  max-width: 100%;
}

#rt-wix-shell .rt-ad-unit:not(.rt-ad-slot--tall) {
  min-height: 250px;
}

#rt-wix-shell .rt-sidebar-widget {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--line-section);
  border-radius: 12px;
  background: #fafbfc;
}

#rt-wix-shell .rt-sidebar-widget:last-child {
  margin-bottom: 0;
}

#rt-wix-shell .rt-sidebar-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: rgb(var(--color-43));
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-section);
}

#rt-wix-shell .rt-sidebar-cats,
#rt-wix-shell .rt-sidebar-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

#rt-wix-shell .rt-sidebar-cats li,
#rt-wix-shell .rt-sidebar-posts li {
  margin-bottom: 10px;
}

#rt-wix-shell .rt-sidebar-cats li:last-child,
#rt-wix-shell .rt-sidebar-posts li:last-child {
  margin-bottom: 0;
}

#rt-wix-shell .rt-sidebar-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgb(var(--color-43));
}

#rt-wix-shell .rt-sidebar-cats a:hover {
  color: var(--blue);
}

#rt-wix-shell .rt-sidebar-count {
  font-size: 12px;
  font-weight: 600;
  color: rgb(var(--color-38));
  background: #fff;
  border: 1px solid var(--line-section);
  border-radius: 999px;
  min-width: 24px;
  padding: 2px 8px;
  text-align: center;
}

#rt-wix-shell .rt-sidebar-posts a {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  color: rgb(var(--color-43));
  margin-bottom: 4px;
}

#rt-wix-shell .rt-sidebar-posts a:hover {
  color: var(--blue);
}

#rt-wix-shell .rt-sidebar-posts time {
  display: block;
  font-size: 12px;
  color: rgb(var(--color-38));
}

#rt-wix-shell .rt-sidebar-cta p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(var(--color-37));
}

#rt-wix-shell .rt-sidebar-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-cta);
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

#rt-wix-shell .rt-sidebar-subscribe:hover {
  background: #4a87b0;
  color: #fff;
}

#rt-wix-shell .rt-single-main {
  min-width: 0;
}

#rt-wix-shell .rt-single-post {
  padding: 0;
}

#rt-wix-shell .rt-single-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#rt-wix-shell .rt-single-label a {
  color: var(--blue);
}

#rt-wix-shell .rt-single-label a:hover {
  color: #4a87b0;
}

#rt-wix-shell .rt-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

#rt-wix-shell .rt-single-tags a {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgb(var(--color-43));
  background: #f0f4f7;
  border: 1px solid var(--line-section);
}

#rt-wix-shell .rt-single-tags a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

#rt-wix-shell .rt-single-hero {
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
}

#rt-wix-shell .rt-single-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Single post — overlay hero (category + title on image) */
#rt-wix-shell .rt-single-hero--overlay {
  position: relative;
  margin-bottom: 24px;
}

#rt-wix-shell .rt-single-hero--overlay img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  max-height: none;
  object-fit: initial;
  object-position: center center;
}

#rt-wix-shell .rt-single-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(21, 29, 39, 0.04) 0%,
    rgba(21, 29, 39, 0.2) 35%,
    rgba(21, 29, 39, 0.62) 62%,
    rgba(21, 29, 39, 0.9) 100%
  );
}

#rt-wix-shell .rt-single-hero-caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 28px 28px 24px;
}

#rt-wix-shell .rt-single-hero--overlay .rt-single-label {
  margin: 0 0 8px;
}

#rt-wix-shell .rt-single-hero--overlay .rt-single-label a {
  color: #8ec5e8;
}

#rt-wix-shell .rt-single-hero--overlay .rt-single-label a:hover {
  color: #b8ddf5;
}

#rt-wix-shell .rt-single-hero--overlay .rt-single-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

#rt-wix-shell .rt-single-post--overlay .rt-single-header {
  margin-bottom: 28px;
}

#rt-wix-shell .rt-single-header {
  margin-bottom: 32px;
}

#rt-wix-shell .rt-single-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
  color: rgb(var(--color-37));
  margin: 0 0 20px;
}

#rt-wix-shell .rt-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgb(var(--color-38));
}

#rt-wix-shell .rt-single-meta li {
  display: inline-flex;
  align-items: center;
}

#rt-wix-shell .rt-single-meta li:not(:last-child)::after {
  content: "·";
  margin: 0 12px;
  color: rgb(var(--color-38));
}

#rt-wix-shell .rt-single-meta-author {
  font-weight: 500;
  color: rgb(var(--color-43));
}

#rt-wix-shell .rt-single-avatar {
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

#rt-wix-shell .rt-single-avatar svg {
  width: 32px;
  height: 32px;
  display: block;
}

#rt-wix-shell .rt-post-content {
  font-size: 18px;
  line-height: 1.55;
  color: rgb(var(--color-37));
  overflow-wrap: anywhere;
  word-break: break-word;
}

#rt-wix-shell .rt-post-content > *:first-child {
  margin-top: 0;
}

#rt-wix-shell .rt-post-content > *:last-child {
  margin-bottom: 0;
}

#rt-wix-shell .rt-post-content p,
#rt-wix-shell .rt-post-content .wp-block-paragraph {
  margin: 0 0 1.15em;
}

#rt-wix-shell .rt-post-content h2,
#rt-wix-shell .rt-post-content .wp-block-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  color: rgb(var(--color-37));
  line-height: 1.3;
  margin: 1.6em 0 0.6em;
}

#rt-wix-shell .rt-post-content h2 {
  font-size: 28px;
}

#rt-wix-shell .rt-post-content h3 {
  font-size: 22px;
  margin: 1.4em 0 0.5em;
}

#rt-wix-shell .rt-post-content ul,
#rt-wix-shell .rt-post-content ol {
  margin: 0 0 1.15em;
  padding-left: 1.35em;
}

#rt-wix-shell .rt-post-content li {
  margin-bottom: 0.35em;
}

#rt-wix-shell .rt-post-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#rt-wix-shell .rt-post-content a:hover {
  color: #4a87b0;
}

#rt-wix-shell .rt-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.25em 0;
}

#rt-wix-shell .rt-post-content blockquote {
  margin: 1.25em 0;
  padding-left: 20px;
  border-left: 3px solid var(--blue);
  color: rgb(var(--color-43));
}

#rt-wix-shell .rt-post-content strong {
  font-weight: 600;
  color: rgb(var(--color-37));
}

#rt-wix-shell .rt-single-post-nav {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-section);
}

#rt-wix-shell .rt-single-post-nav-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#rt-wix-shell .rt-post-nav-link {
  flex: 1 1 0;
  max-width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--line-section);
  border-radius: var(--radius-ui);
  background: #fff;
  color: rgb(var(--color-37));
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#rt-wix-shell .rt-post-nav-link:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(21, 29, 39, 0.06);
}

#rt-wix-shell .rt-post-nav-link.is-next {
  margin-left: auto;
  text-align: right;
  align-items: flex-end;
}

#rt-wix-shell .rt-post-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(var(--color-38));
}

#rt-wix-shell .rt-post-nav-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

#rt-wix-shell .rt-post-nav-title {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.35;
  color: rgb(var(--color-37));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#rt-wix-shell .rt-post-nav-link:hover .rt-post-nav-title {
  color: var(--blue);
}

@media screen and (max-width: 1180px) {
  #rt-wix-shell .rt-single-layout {
    grid-template-columns: var(--rt-single-nav-width) minmax(0, 1fr);
  }

  #rt-wix-shell .rt-single-ad-rail {
    position: static;
    grid-column: 1 / -1;
    order: 3;
  }

  #rt-wix-shell .rt-single-ad-gutter {
    display: none;
  }

  #rt-wix-shell .rt-ad-rail-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
    gap: 20px;
    justify-content: center;
    width: 100%;
  }

  #rt-wix-shell .rt-ad-rail-label {
    grid-column: 1 / -1;
    text-align: center;
  }

  #rt-wix-shell .rt-ad-slot--tall {
    min-height: 250px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  #rt-wix-shell .rt-single-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #rt-wix-shell .rt-single-sidebar {
    position: static;
    order: 2;
  }

  #rt-wix-shell .rt-single-main {
    order: 1;
  }

  #rt-wix-shell .rt-single-ad-rail {
    order: 3;
  }

  #rt-wix-shell .rt-single-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  #rt-wix-shell .rt-sidebar-widget {
    margin-bottom: 0;
  }

  #rt-wix-shell .rt-sidebar-widget.rt-sidebar-cta {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 900px) {
  #rt-wix-shell .rt-single-title {
    font-size: 32px;
  }

  #rt-wix-shell .rt-single-sidebar {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
  #rt-wix-shell .rt-single-layout {
    padding-top: 28px;
  }

  #rt-wix-shell .rt-single-meta {
    font-size: 13px;
  }

  #rt-wix-shell .rt-single-post-nav-inner {
    flex-direction: column;
  }

  #rt-wix-shell .rt-post-nav-link {
    max-width: none;
  }

  #rt-wix-shell .rt-post-nav-link.is-next {
    align-items: flex-start;
    text-align: left;
  }
}

/* Subscribe modal */
body.rt-subscribe-modal-open {
  overflow: hidden;
}

#rt-wix-shell .rt-subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  pointer-events: none;
}

#rt-wix-shell .rt-subscribe-modal.is-open {
  pointer-events: auto;
}

#rt-wix-shell .rt-subscribe-modal[hidden] {
  display: none;
}

#rt-wix-shell .rt-subscribe-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 29, 39, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#rt-wix-shell .rt-subscribe-modal-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: min(92dvh, calc(100vh - 32px));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(21, 29, 39, 0.04),
    0 24px 64px rgba(21, 29, 39, 0.22);
  animation: rt-subscribe-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes rt-subscribe-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#rt-wix-shell .rt-subscribe-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

#rt-wix-shell .rt-subscribe-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

#rt-wix-shell .rt-subscribe-modal-close:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

#rt-wix-shell .rt-subscribe-modal-accent {
  position: relative;
  padding: 32px 32px 28px;
  background: linear-gradient(145deg, var(--navy) 0%, #1a2838 55%, #1e3348 100%);
  color: #fff;
  text-align: center;
}

#rt-wix-shell .rt-subscribe-modal-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue) 20%, var(--blue) 80%, transparent);
  opacity: 0.85;
}

#rt-wix-shell .rt-subscribe-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(87, 152, 194, 0.18);
  color: #9ec8e4;
}

#rt-wix-shell .rt-subscribe-modal-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8ec5e8;
}

#rt-wix-shell .rt-subscribe-modal-head {
  margin: 0;
  padding: 0 8px;
}

#rt-wix-shell .rt-subscribe-modal-head h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  text-wrap: balance;
}

#rt-wix-shell .rt-subscribe-modal-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  text-wrap: pretty;
}

#rt-wix-shell .rt-subscribe-modal-body {
  padding: 24px 28px 28px;
  overflow-y: auto;
}

#rt-wix-shell .rt-subscribe-perks {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#rt-wix-shell .rt-subscribe-perks li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.45;
  color: rgb(var(--color-43));
}

#rt-wix-shell .rt-subscribe-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(87, 152, 194, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.2l2.4 2.4L12 5.2' stroke='%235798c2' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

#rt-wix-shell .rt-subscribe-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgb(var(--color-37));
}

#rt-wix-shell .rt-subscribe-field-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#rt-wix-shell .rt-subscribe-input {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--line-section);
  border-radius: var(--radius-ui);
  color: rgb(var(--color-37));
  background: #f8fafc;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

#rt-wix-shell .rt-subscribe-input::placeholder {
  color: rgb(var(--color-38));
}

#rt-wix-shell .rt-subscribe-input:hover {
  border-color: #c5ced8;
}

#rt-wix-shell .rt-subscribe-input:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(87, 152, 194, 0.22);
}

#rt-wix-shell .rt-subscribe-submit {
  width: 100%;
  min-height: 50px;
  min-width: 0;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(87, 152, 194, 0.35);
}

#rt-wix-shell .rt-subscribe-submit:hover {
  box-shadow: 0 4px 14px rgba(87, 152, 194, 0.4);
}

#rt-wix-shell .rt-subscribe-submit.is-loading,
#rt-wix-shell .rt-subscribe-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

#rt-wix-shell .rt-subscribe-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

#rt-wix-shell .rt-subscribe-error {
  margin: 12px 0 0;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.45;
  color: #9b2c2c;
  background: #fef2f2;
  border: 1px solid #f5c2c2;
  border-radius: var(--radius-ui);
}

#rt-wix-shell .rt-subscribe-dev-hint {
  margin: 16px 0 0;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.45;
  color: rgb(var(--color-38));
  background: #f4f7fa;
  border-radius: var(--radius-ui);
  border: 1px dashed #d5dde6;
}

#rt-wix-shell .rt-subscribe-success {
  padding: 8px 0 4px;
  text-align: center;
}

#rt-wix-shell .rt-subscribe-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(87, 152, 194, 0.12);
  color: var(--blue);
}

#rt-wix-shell .rt-subscribe-success-title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: rgb(var(--color-37));
}

#rt-wix-shell .rt-subscribe-success-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgb(var(--color-38));
}

#rt-wix-shell .rt-subscribe-embed {
  min-height: 100px;
  padding: 4px 0;
  border-radius: var(--radius-ui);
}

#rt-wix-shell .rt-subscribe-embed iframe,
#rt-wix-shell .rt-subscribe-embed form {
  max-width: 100%;
}

@media screen and (min-width: 520px) {
  #rt-wix-shell .rt-subscribe-field-row {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 4px;
    background: #f4f7fa;
    border: 1px solid var(--line-section);
    border-radius: calc(var(--radius-ui) + 2px);
  }

  #rt-wix-shell .rt-subscribe-input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  #rt-wix-shell .rt-subscribe-input:focus {
    box-shadow: none;
  }

  #rt-wix-shell .rt-subscribe-submit {
    width: auto;
    flex-shrink: 0;
    min-width: 148px;
    border-radius: var(--radius-ui);
  }
}

@media screen and (max-width: 519px) {
  #rt-wix-shell .rt-subscribe-modal-accent {
    padding: 28px 22px 24px;
  }

  #rt-wix-shell .rt-subscribe-modal-body {
    padding: 20px 22px 24px;
  }
}

/* Blog cards — float up on scroll into view */
@media (prefers-reduced-motion: no-preference) {
  #rt-wix-shell .rt-post-card.rt-scroll-rise,
  #rt-wix-shell .rt-blog-item.rt-scroll-rise {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity 0.5s ease-out,
      transform 0.5s ease-out;
  }

  #rt-wix-shell .rt-post-card.rt-scroll-rise.is-visible,
  #rt-wix-shell .rt-blog-item.rt-scroll-rise.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile layout — overrides placed after component styles so they win */
@media screen and (max-width: 900px) {
  #rt-wix-shell {
    --header-height: 72px;
    --page-padding-x: clamp(16px, 4vw, 24px);
  }

  #rt-wix-shell .rt-header-inner {
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #rt-wix-shell .rt-brand {
    flex: 1;
    min-width: 0;
    gap: 10px;
  }

  #rt-wix-shell .rt-brand-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 1px;
    font-size: 11px;
    letter-spacing: 0.045em;
    line-height: 1.25;
    white-space: normal;
    max-width: none;
  }

  #rt-wix-shell .rt-brand-text-line {
    display: block;
  }

  #rt-wix-shell .rt-brand-text-line + .rt-brand-text-line::before {
    content: none;
  }

  #rt-wix-shell .rt-brand img,
  #rt-wix-shell .rt-brand picture {
    width: 44px;
    height: 44px;
  }

  #rt-wix-shell .rt-hero-grid,
  #rt-wix-shell .rt-feature-grid {
    min-height: 0;
  }

  #rt-wix-shell .rt-hero {
    padding: 20px 0 32px;
  }

  #rt-wix-shell .rt-hero-grid {
    min-height: 0;
  }

  #rt-wix-shell .rt-hero h1,
  #rt-wix-shell .rt-feature-copy h2,
  #rt-wix-shell .rt-latest-head h2,
  #rt-wix-shell .rt-about-hero-copy h1,
  #rt-wix-shell .rt-blog-tab,
  #rt-wix-shell .rt-parallax-inner h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1.25;
    text-wrap: balance;
  }

  #rt-wix-shell .rt-hero-copy--light h1,
  #rt-wix-shell .rt-hero-copy--light .rt-hero-lead {
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-v2-inner,
  #rt-wix-shell .rt-hero--v4 .rt-hero-parallax-inner,
  #rt-wix-shell .rt-hero--v5 .rt-hero-parallax-inner {
    width: 100%;
  }

  #rt-wix-shell .rt-hero-actions {
    width: 100%;
  }

  #rt-wix-shell .rt-hero-lead,
  #rt-wix-shell .rt-feature-copy p,
  #rt-wix-shell .rt-latest-sub,
  #rt-wix-shell .rt-about-hero-copy p {
    font-size: 17px;
  }

  #rt-wix-shell .rt-feature-copy {
    padding: 28px 22px;
  }

  #rt-wix-shell .rt-feature-media img {
    min-height: 240px;
  }

  #rt-wix-shell .rt-hero-actions {
    gap: 12px;
  }

  #rt-wix-shell .rt-hero-actions .rt-btn {
    min-width: 0;
    flex: 0 1 auto;
  }

  #rt-wix-shell .rt-hero--v1 .rt-hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
  }

  #rt-wix-shell .rt-hero--v1 .rt-hero-actions .rt-btn {
    width: 100%;
    max-width: none;
    flex: none;
  }

  #rt-wix-shell .rt-hero--v3 .rt-hero-actions .rt-btn,
  #rt-wix-shell .rt-hero--v4 .rt-hero-actions .rt-btn,
  #rt-wix-shell .rt-hero--v5 .rt-hero-actions .rt-btn {
    flex: 1 1 148px;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-actions .rt-btn {
    flex: 0 1 auto;
  }

  #rt-wix-shell .rt-latest-head .rt-btn {
    width: 100%;
    max-width: 280px;
  }

  #rt-wix-shell .rt-parallax-cta,
  #rt-wix-shell .rt-hero--v4,
  #rt-wix-shell .rt-hero--v5 {
    overflow: hidden;
  }

  #rt-wix-shell .rt-parallax-bg,
  #rt-wix-shell .rt-hero-parallax-bg {
    overflow: hidden;
  }

  #rt-wix-shell .rt-parallax-bg .rt-parallax-bg-img {
    top: 0;
    height: 100%;
    max-width: 100%;
  }

  #rt-wix-shell .rt-parallax-cta {
    min-height: 420px;
  }

  #rt-wix-shell .rt-parallax-inner {
    padding: 56px var(--page-padding-x);
  }

  #rt-wix-shell .rt-parallax-inner p {
    margin-bottom: 28px;
    text-wrap: pretty;
  }

  #rt-wix-shell .rt-about-hero {
    padding: 32px 0 40px;
  }

  #rt-wix-shell .rt-about-values {
    padding: 48px 0 56px;
  }

  #rt-wix-shell .rt-about-values-title {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    line-height: 1.2;
    margin-bottom: 18px;
  }

  #rt-wix-shell .rt-about-values-lead,
  #rt-wix-shell .rt-about-values-close,
  #rt-wix-shell .rt-about-principles li p {
    font-size: 17px;
  }

  #rt-wix-shell .rt-blog-archive {
    padding: 28px 0 48px;
  }

  #rt-wix-shell .rt-blog-archive-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  #rt-wix-shell .rt-blog-subnav {
    width: 100%;
    justify-content: flex-end;
    padding-bottom: 0;
  }

  #rt-wix-shell .rt-blog-tag-autocomplete {
    max-width: none;
    width: 100%;
  }

  #rt-wix-shell .rt-single-layout {
    padding: 28px 0 48px;
  }

  #rt-wix-shell .rt-post-content {
    font-size: 17px;
  }

  #rt-wix-shell .rt-post-content h2 {
    font-size: 24px;
  }

  #rt-wix-shell .rt-post-content h3 {
    font-size: 20px;
  }

  #rt-wix-shell .rt-post-content table,
  #rt-wix-shell .rt-post-content pre,
  #rt-wix-shell .rt-post-content iframe {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  #rt-wix-shell .rt-about-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #rt-wix-shell .rt-about-hero-media {
    order: -1;
  }

  #rt-wix-shell .rt-about-hero-copy {
    min-width: 0;
  }

  #rt-wix-shell .rt-about-values-title {
    text-wrap: balance;
  }

  #rt-wix-shell .rt-hero--v1 .rt-hero-media {
    order: -1;
  }

  /* Hero layouts — mobile tuning per variant */
  #rt-wix-shell .rt-hero--v1 {
    padding: 12px 0 28px;
  }

  #rt-wix-shell .rt-hero--v1 .rt-hero-media img {
    min-height: 0;
    max-height: 300px;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  #rt-wix-shell .rt-hero--v1 .rt-hero-copy {
    padding: 18px 0 0;
    min-width: 0;
  }

  #rt-wix-shell .rt-hero--v1 .rt-hero-copy h1,
  #rt-wix-shell .rt-hero--v1 .rt-hero-lead {
    max-width: none;
  }

  #rt-wix-shell .rt-hero--v2 {
    min-height: 0;
    padding: 0;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-v2-bg img {
    object-position: 62% 28%;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-v2-overlay {
    background: linear-gradient(
      180deg,
      rgba(21, 29, 39, 0.12) 0%,
      rgba(21, 29, 39, 0.5) 38%,
      rgba(21, 29, 39, 0.9) 68%,
      rgba(21, 29, 39, 0.97) 100%
    );
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-v2-inner {
    display: flex;
    align-items: flex-end;
    min-height: min(76vh, 520px);
    padding: 0 0 40px;
  }

  body:has(.rt-hero-picker) #rt-wix-shell .rt-hero--v2 .rt-hero-v2-inner {
    padding-bottom: 108px;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-copy--light {
    width: 100%;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-copy--light h1 {
    font-size: clamp(1.5rem, 6.4vw, 1.875rem);
    line-height: 1.22;
    margin-bottom: 12px;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-copy--light .rt-hero-lead {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 18px;
    max-width: 34em;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: none;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-actions .rt-btn {
    width: auto;
    min-width: 0;
    max-width: none;
    flex: 0 1 auto;
    min-height: 48px;
    padding: 10px 22px;
    font-size: 15px;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-copy--light h1,
  #rt-wix-shell .rt-hero--v2 .rt-hero-copy--light .rt-hero-lead {
    max-width: none;
  }

  #rt-wix-shell .rt-hero--v3 {
    padding: 20px 0 28px;
  }

  #rt-wix-shell .rt-hero--v3 .rt-hero-v3-inner {
    max-width: none;
  }

  #rt-wix-shell .rt-hero--v3 .rt-hero-v3-media {
    margin-top: 20px;
  }

  #rt-wix-shell .rt-hero--v3 .rt-hero-v3-media img {
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: 280px;
  }

  #rt-wix-shell .rt-hero--v3 .rt-hero-copy--center .rt-hero-lead {
    font-size: 16px;
  }

  #rt-wix-shell .rt-hero--v4,
  #rt-wix-shell .rt-hero--v5 {
    min-height: min(68vh, 480px);
  }

  #rt-wix-shell .rt-hero--v4 .rt-hero-parallax-overlay,
  #rt-wix-shell .rt-hero--v5 .rt-hero-parallax-overlay {
    background: linear-gradient(
      180deg,
      rgba(21, 29, 39, 0.45) 0%,
      rgba(21, 29, 39, 0.9) 100%
    );
  }

  #rt-wix-shell .rt-hero-parallax-inner {
    padding: 36px 0;
    display: flex;
    align-items: center;
    min-height: min(68vh, 480px);
  }

  #rt-wix-shell .rt-hero--v4 .rt-hero-copy--center h1,
  #rt-wix-shell .rt-hero--v5 .rt-hero-copy--center h1,
  #rt-wix-shell .rt-hero--v4 .rt-hero-copy--center .rt-hero-lead,
  #rt-wix-shell .rt-hero--v5 .rt-hero-copy--center .rt-hero-lead {
    max-width: none;
  }

  #rt-wix-shell .rt-hero--v4 .rt-hero-copy--center .rt-hero-lead,
  #rt-wix-shell .rt-hero--v5 .rt-hero-copy--center .rt-hero-lead {
    font-size: 16px;
  }

  #rt-wix-shell .rt-hero--v2,
  #rt-wix-shell .rt-hero--v4,
  #rt-wix-shell .rt-hero--v5 {
    overflow: hidden;
  }

  #rt-wix-shell .rt-feature-copy {
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  #rt-wix-shell .rt-feature-media img {
    border-radius: 12px 12px 0 0;
  }

  #rt-wix-shell .rt-post-card-body,
  #rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-body {
    text-align: left;
    align-items: flex-start;
  }

  #rt-wix-shell .rt-post-card h3,
  #rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-title {
    font-size: 20px;
    line-height: 1.35;
  }

  #rt-wix-shell .rt-read-more,
  #rt-wix-shell .rt-blog-posts.is-view-grid .rt-blog-item-read {
    align-self: stretch;
    justify-content: center;
  }

  #rt-wix-shell .rt-blog-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-right: calc(-1 * var(--page-padding-x));
    padding-right: var(--page-padding-x);
  }

  #rt-wix-shell .rt-blog-categories::-webkit-scrollbar {
    display: none;
  }

  #rt-wix-shell .rt-blog-cat {
    flex-shrink: 0;
  }

  #rt-wix-shell .rt-blog-filters {
    gap: 12px;
    margin-top: 12px;
  }

  #rt-wix-shell .rt-blog-archive-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  #rt-wix-shell .rt-single-post {
    padding: 0;
  }

  #rt-wix-shell .rt-single-hero {
    margin-left: calc(-1 * var(--page-padding-x));
    margin-right: calc(-1 * var(--page-padding-x));
    border-radius: 0;
  }

  #rt-wix-shell .rt-single-hero-caption {
    padding: 24px var(--page-padding-x) 20px;
  }

  #rt-wix-shell .rt-single-hero--overlay .rt-single-title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }

  #rt-wix-shell .rt-single-hero:not(.rt-single-hero--overlay) img {
    border-radius: 0;
  }

  #rt-wix-shell .rt-accent {
    overflow-wrap: anywhere;
  }

  #rt-wix-shell .rt-feature-copy h2,
  #rt-wix-shell .rt-about-values-title {
    overflow-wrap: anywhere;
  }
}

@media screen and (max-width: 600px) {
  #rt-wix-shell .rt-brand-text {
    font-size: 10px;
  }

  #rt-wix-shell .rt-hero h1,
  #rt-wix-shell .rt-about-hero-copy h1 {
    font-size: clamp(1.625rem, 8.2vw, 2rem);
  }

  #rt-wix-shell .rt-hero-lead {
    margin-bottom: 24px;
  }

  #rt-wix-shell .rt-hero--v2 {
    min-height: 0;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-v2-inner {
    min-height: min(70vh, 460px);
    padding-bottom: 36px;
  }

  body:has(.rt-hero-picker) #rt-wix-shell .rt-hero--v2 .rt-hero-v2-inner {
    padding-bottom: 112px;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 240px;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-actions .rt-btn {
    width: 100%;
    max-width: 240px;
  }

  #rt-wix-shell .rt-hero--v4,
  #rt-wix-shell .rt-hero--v5 {
    min-height: min(62vh, 440px);
  }

  #rt-wix-shell .rt-hero-v2-inner,
  #rt-wix-shell .rt-hero-parallax-inner {
    padding: 28px 0;
  }

  #rt-wix-shell .rt-hero-parallax-inner {
    min-height: min(62vh, 440px);
  }

  #rt-wix-shell .rt-hero--v3 .rt-hero-copy--center .rt-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  #rt-wix-shell .rt-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  #rt-wix-shell .rt-hero--v4 .rt-hero-actions,
  #rt-wix-shell .rt-hero--v5 .rt-hero-actions {
    max-width: 280px;
  }

  #rt-wix-shell .rt-hero--v4 .rt-hero-copy--center .rt-hero-actions,
  #rt-wix-shell .rt-hero--v5 .rt-hero-copy--center .rt-hero-actions {
    align-items: center;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  #rt-wix-shell .rt-hero-actions .rt-btn {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    flex: none;
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-actions .rt-btn {
    max-width: 240px;
  }

  #rt-wix-shell .rt-latest-head .rt-btn,
  #rt-wix-shell .rt-parallax-inner .rt-btn {
    width: auto;
    max-width: 280px;
    min-width: 174px;
    flex: none;
  }

  #rt-wix-shell .rt-blog-tab {
    font-size: clamp(1.5rem, 7.5vw, 2rem);
  }

  #rt-wix-shell .rt-about-values-title {
    font-size: clamp(1.625rem, 7.5vw, 2rem);
  }

  #rt-wix-shell .rt-feature-copy h2,
  #rt-wix-shell .rt-latest-head h2 {
    font-size: clamp(1.5rem, 7.5vw, 1.875rem);
  }

  #rt-wix-shell .rt-about-check svg {
    width: 44px;
    height: 44px;
  }

  #rt-wix-shell .rt-blog-categories {
    gap: 6px;
  }

  #rt-wix-shell .rt-blog-cat {
    padding: 0 12px;
    font-size: 13px;
  }

  #rt-wix-shell .rt-single-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  #rt-wix-shell .rt-single-layout {
    gap: 24px;
    padding-top: 24px;
  }
}

@media screen and (max-width: 480px) {
  #rt-wix-shell {
    --page-padding-x: 16px;
  }

  #rt-wix-shell .rt-feature-media img {
    min-height: 200px;
  }

  #rt-wix-shell .rt-hero--v1 .rt-hero-media img {
    min-height: 0;
    max-height: 260px;
  }

  #rt-wix-shell .rt-parallax-cta {
    min-height: 360px;
  }

  #rt-wix-shell .rt-parallax-inner {
    padding: 48px 0;
  }

  #rt-wix-shell .rt-hero--v2 {
    min-height: min(58vh, 400px);
  }

  #rt-wix-shell .rt-hero--v2 .rt-hero-v2-inner {
    min-height: min(58vh, 400px);
  }

  #rt-wix-shell .rt-hero--v4,
  #rt-wix-shell .rt-hero--v5 {
    min-height: min(58vh, 400px);
  }

  #rt-wix-shell .rt-hero-parallax-inner {
    min-height: min(58vh, 400px);
  }
}
