@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap');
:root {
  --primary: #eb4726;
  --primary-hover: #d63a1f;
  --primary-text: #ffffff;
  --accent: #d2fdd1;
  --text: #282828;
  --text-muted: #666666;
  --bg: #ffffff;
  --bg-muted: #f9f9f9;
  --bg-inverse: #282828;
  --border: #282828;
  --font-heading: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --h1-size: clamp(2.5rem, 6vw, 5rem);
  --h2-size: clamp(1.75rem, 3.5vw, 2.5rem);
  --body-size: 1.0625rem;
  --line-height: 1.6;
  --radius-sm: 16px;
  --radius-md: 16px;
  --radius-lg: 16px;
  --shadow: none;
  --container-max: 1200px;
  --section-padding: 5rem 1.5rem;
  --inverse-text: #ffffff;
  --pattern-size: 40px 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--line-height);
  color: var(--text);
  background-color: var(--bg);
  background-image: var(--bg-pattern, none);
  background-size: var(--pattern-size, 40px 40px);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; word-break: break-word; }
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: 1.25rem; }
a { color: inherit; text-decoration: none; }

.rmm-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.rmm-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--primary-text);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--cta-shadow, none);
  transition: background 0.2s ease, box-shadow 0.25s ease, transform 0.15s ease;
  text-align: center;
}
.rmm-btn:hover {
  background: var(--primary-hover);
  box-shadow: var(--cta-shadow-hover, var(--cta-shadow, none));
}
.rmm-btn--ghost {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rmm-btn--ghost:hover { background: var(--bg-muted); }
.rmm-skip-link {
  position: absolute; left: -999px; top: 0.5rem; z-index: 1000;
  padding: 0.5rem 1rem; background: var(--primary); color: var(--primary-text);
  border-radius: var(--radius-md); font-weight: 600; text-decoration: none;
}
.rmm-skip-link:focus { left: 0.5rem; outline: 2px solid var(--primary-text); }

@media (max-width: 640px) {
  :root { --section-padding: 3.25rem 1rem; }
  .rmm-container { padding: 0 1rem; }
  body { font-size: 0.9375rem; }
}
@media (max-width: 480px) {
  :root { --section-padding: 2.5rem 0.875rem; }
  .rmm-container { padding: 0 0.875rem; }
}

/* === Ecommerce: cart-icon in header (rendered when ecommerce_mode active) === */
.rmm-cart-icon {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  background: var(--bg-muted); color: var(--text); border: 1px solid var(--border);
  cursor: pointer; flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  font-size: 1.125rem; line-height: 1;
  text-decoration: none;
}
.rmm-cart-icon:hover { background: var(--bg); border-color: var(--primary); color: var(--primary); }
.rmm-cart-icon-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 1.125rem; height: 1.125rem; padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--primary); color: var(--primary-text, #fff);
  font-size: 0.6875rem; font-weight: 700; line-height: 1.125rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* === Ecommerce: cart drawer (slide-in right) === */
.rmm-cart {
  position: fixed; inset: 0; z-index: 9000;
  display: block;
}
.rmm-cart[hidden] { display: none; }
.rmm-cart-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  animation: cart-fade-in 0.2s ease-out;
}
@keyframes cart-fade-in { from { opacity: 0; } to { opacity: 1; } }
.rmm-cart-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--bg); color: var(--text);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,0.18);
  animation: cart-slide-in 0.25s ease-out;
}
@keyframes cart-slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
.rmm-cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
}
.rmm-cart-title {
  font-size: 1.5rem; margin: 0; font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--accent, var(--primary-hover, var(--primary))));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rmm-cart-close {
  background: transparent; border: 0; font-size: 1.75rem;
  cursor: pointer; color: var(--text-muted); padding: 0 0.5rem; line-height: 1;
}
.rmm-cart-items {
  flex: 1; overflow-y: auto; padding: 0.5rem 1.25rem;
}
.rmm-cart-item {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}
.rmm-cart-item-name { font-weight: 600; font-size: 0.9375rem; line-height: 1.3; }
.rmm-cart-item-price { color: var(--text-muted); font-size: 0.875rem; margin-top: 0.25rem; }
.rmm-cart-qty {
  display: inline-flex; align-items: center;
  gap: 0.25rem; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 0.125rem;
}
.rmm-cart-qty-btn {
  background: transparent; border: 0;
  width: 1.75rem; height: 1.75rem; border-radius: 0.25rem;
  cursor: pointer; font-size: 1rem; color: var(--text);
}
.rmm-cart-qty-btn:hover { background: var(--bg-muted); }
.rmm-cart-qty-val { min-width: 1.5rem; text-align: center; font-weight: 600; font-size: 0.875rem; }
.rmm-cart-rm {
  background: transparent; border: 0; cursor: pointer;
  color: var(--text-muted); font-size: 1.25rem; padding: 0 0.25rem;
}
.rmm-cart-rm:hover { color: #dc2626; }
.rmm-cart-empty {
  padding: 2rem 1.25rem; text-align: center; color: var(--text-muted);
}
.rmm-cart-foot {
  border-top: 1px solid var(--border);
  padding: 1.125rem 1.25rem 1.25rem;
  background: var(--bg);
}
.rmm-cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1rem;
}
.rmm-cart-total-label { color: var(--text-muted); font-size: 0.9375rem; }
.rmm-cart-total-val { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.rmm-cart-checkout {
  width: 100%; padding: 0.95rem; font-size: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--accent, var(--primary-hover, var(--primary))));
  border: 0; color: var(--primary-text, #fff);
  font-weight: 700; letter-spacing: 0.02em;
}
.rmm-cart-checkout:hover {
  background: linear-gradient(90deg, var(--primary-hover, var(--primary)), var(--primary));
  filter: brightness(1.05);
}

/* === Ecommerce: checkout modal === */
.rmm-cko {
  position: fixed; inset: 0; z-index: 9100;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.rmm-cko[hidden] { display: none; }
.rmm-cko-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.55);
}
.rmm-cko-card {
  position: relative; z-index: 1;
  background: var(--bg); color: var(--text);
  border-radius: var(--radius-lg);
  max-width: 480px; width: 100%;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.rmm-cko-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem 0.75rem;
}
.rmm-cko-title {
  font-size: 1.5rem; margin: 0; font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--accent, var(--primary-hover, var(--primary))));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rmm-cko-close {
  background: transparent; border: 0; font-size: 1.75rem;
  cursor: pointer; color: var(--text-muted); padding: 0 0.5rem; line-height: 1;
}
.rmm-cko-summary {
  padding: 0.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.rmm-cko-list { list-style: none; padding: 0; margin: 0; }
.rmm-cko-list li {
  display: flex; justify-content: space-between;
  padding: 0.4rem 0; font-size: 0.9375rem; gap: 1rem;
}
.rmm-cko-list li:not(:last-child) { border-bottom: 1px dashed var(--border); }
.rmm-cko-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-weight: 700; font-size: 1.0625rem;
}
.rmm-cko-form {
  padding: 1rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.875rem;
}
.rmm-cko-lbl {
  display: flex; flex-direction: column; gap: 0.3rem;
  font-size: 0.875rem; font-weight: 500; color: var(--text);
}
.rmm-cko-inp {
  width: 100%; padding: 0.6rem 0.75rem;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg); color: var(--text);
  font-family: inherit; font-size: 0.9375rem;
  transition: border-color 0.2s;
}
.rmm-cko-inp:focus { outline: none; border-color: var(--primary); }
.rmm-cko-submit {
  width: 100%; padding: 0.95rem; font-size: 1rem; margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--primary), var(--accent, var(--primary-hover, var(--primary))));
  border: 0; color: var(--primary-text, #fff);
  font-weight: 700; letter-spacing: 0.02em;
}
.rmm-cko-submit:hover {
  background: linear-gradient(90deg, var(--primary-hover, var(--primary)), var(--primary));
  filter: brightness(1.05);
}
.rmm-cko-success {
  padding: 2.5rem 1.5rem; text-align: center;
}
.rmm-cko-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 999px;
  background: var(--primary); color: var(--primary-text, #fff);
  font-size: 2rem; font-weight: 700;
  margin-bottom: 1rem;
}


.rmm-cookies {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 720px; margin: 0 auto;
  background: var(--bg-inverse); color: var(--inverse-text);
  padding: 1rem 1.25rem; border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  z-index: 100; font-size: 0.9375rem;
}
.rmm-cookies-text { flex: 1; min-width: 220px; }
.rmm-cookies-text a { color: var(--inverse-text); text-decoration: underline; }
.rmm-cookies-btn {
  background: var(--primary); color: var(--primary-text);
  padding: 0.5rem 1.25rem; border: none; border-radius: var(--radius-md);
  font-weight: 600; cursor: pointer; font-size: 0.9375rem;
}
.rmm-cookies-btn:hover { background: var(--primary-hover); }
.rmm-cookies-btn--ghost {
  background: transparent; color: var(--inverse-text); border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1rem; border-radius: var(--radius-md); cursor: pointer; font-size: 0.9375rem;
}
@media (max-width: 520px) {
  .rmm-cookies {
    bottom: 0.5rem; left: 0.5rem; right: 0.5rem;
    padding: 0.875rem 1rem; gap: 0.625rem;
    font-size: 0.875rem;
  }
  .rmm-cookies-text { min-width: 100%; }
  .rmm-cookies-btn,
  .rmm-cookies-btn--ghost { flex: 1; padding: 0.5rem 0.75rem; font-size: 0.875rem; }
}

/* === Cookie Settings Modal (4 categories with toggles) === */
.rmm-ckmodal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.rmm-ckmodal[hidden] { display: none; }
.rmm-ckmodal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}
.rmm-ckmodal-card {
  position: relative; z-index: 1;
  background: var(--bg); color: var(--text);
  max-width: 580px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  padding: 1.75rem 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}
.rmm-ckmodal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.5rem; gap: 0.5rem;
}
.rmm-ckmodal-title { font-size: 1.375rem; margin: 0; }
.rmm-ckmodal-close {
  background: transparent; border: none; cursor: pointer;
  font-size: 1.75rem; line-height: 1; color: var(--text-muted);
  padding: 0 0.25rem;
}
.rmm-ckmodal-close:hover { color: var(--text); }
.rmm-ckmodal-intro {
  color: var(--text-muted); font-size: 0.9375rem; line-height: 1.5;
  margin-bottom: 1.25rem;
}
.rmm-ckmodal-cat {
  border-top: 1px solid var(--border);
  padding: 0.875rem 0;
}
.rmm-ckmodal-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem;
}
.rmm-ckmodal-cat-title { font-size: 1rem; margin: 0; }
.rmm-ckmodal-cat-desc {
  color: var(--text-muted); font-size: 0.875rem; line-height: 1.5;
  margin: 0.25rem 0 0;
}
/* iOS-like toggle switch */
.rmm-ckmodal-sw {
  position: relative; display: inline-block;
  width: 40px; height: 22px; flex-shrink: 0;
}
.rmm-ckmodal-sw input { opacity: 0; width: 0; height: 0; }
.rmm-ckmodal-sw span {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--border);
  border-radius: 999px;
  transition: background 0.2s;
}
.rmm-ckmodal-sw span::before {
  content: ""; position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.rmm-ckmodal-sw input:checked + span { background: var(--primary); }
.rmm-ckmodal-sw input:checked + span::before { transform: translateX(18px); }
.rmm-ckmodal-sw input:disabled + span { opacity: 0.65; cursor: not-allowed; }
.rmm-ckmodal-actions {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  justify-content: flex-end;
}
.rmm-ckmodal-actions button { flex: 1 1 auto; min-width: 130px; }
@media (max-width: 520px) {
  .rmm-ckmodal-card { padding: 1.25rem 1.25rem 1rem; max-height: 92vh; }
  .rmm-ckmodal-title { font-size: 1.2rem; }
  .rmm-ckmodal-actions button { flex: 1 1 100%; }
}


/* === v1 — horizontal logo+nav === */
.rmm-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.rmm-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem; padding-bottom: 1rem;
  flex-wrap: wrap;
}
.rmm-header-logo {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text);
  word-break: break-word;
}
.rmm-header-nav { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.rmm-header-nav-link { color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.rmm-header-nav-link:hover { color: var(--text); }
.rmm-header-nav-link--active { color: var(--primary); }
.rmm-header-more { position: relative; }
.rmm-header-more-sum { cursor: pointer; color: var(--text-muted); font-weight: 500; user-select: none; list-style: none; }
.rmm-header-more-sum::-webkit-details-marker { display: none; }
.rmm-header-more-list {
  position: absolute; right: 0; top: calc(100% + 0.5rem); z-index: 60;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px; padding: 0.5rem 0; list-style: none; margin: 0;
}
.rmm-header-more-list li a {
  display: block; padding: 0.5rem 1rem; color: var(--text); font-weight: 500;
}
.rmm-header-more-list li a:hover { background: var(--bg-muted); color: var(--primary); }
@media (max-width: 640px) {
  .rmm-header-inner {
    flex-direction: column; align-items: flex-start;
    gap: 0.625rem;
    padding-top: 0.75rem; padding-bottom: 0.75rem;
  }
  .rmm-header-logo { font-size: 1.0625rem; }
  .rmm-header-nav { gap: 0.625rem 1rem; width: 100%; }
  .rmm-header-nav-link { font-size: 0.875rem; }
}

/* === v2 — centered logo on top, nav row band below === */
.rmm-hdr-stk { background: var(--bg); border-bottom: 1px solid var(--border); }
.rmm-hdr-stk-top { display: flex; justify-content: center; padding: 1.25rem 1.5rem; }
.rmm-hdr-stk-logo {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text);
  letter-spacing: 0.01em; text-align: center; word-break: break-word;
}
.rmm-hdr-stk-nav-band { background: var(--bg-muted); border-top: 1px solid var(--border); }
.rmm-hdr-stk-nav { display: flex; justify-content: center; gap: 2rem; padding: 0.625rem 1.5rem; flex-wrap: wrap; }
.rmm-hdr-stk-link { color: var(--text-muted); font-weight: 500; font-size: 0.9375rem; transition: color 0.2s; }
.rmm-hdr-stk-link:hover { color: var(--text); }
.rmm-hdr-stk-link--active { color: var(--primary); }
@media (max-width: 640px) {
  .rmm-hdr-stk-top { padding: 0.875rem 1rem; }
  .rmm-hdr-stk-logo { font-size: 1.25rem; }
  .rmm-hdr-stk-nav { gap: 0.5rem 1rem; padding: 0.5rem 0.75rem; }
  .rmm-hdr-stk-link { font-size: 0.875rem; }
}

/* === v3 — logo + nav + phone CTA on right === */
.rmm-hdr-cta { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.rmm-hdr-cta-inner { display: flex; align-items: center; gap: 1.5rem; padding: 0.875rem 1.5rem; flex-wrap: wrap; }
.rmm-hdr-cta-logo { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text); flex-shrink: 0; word-break: break-word; }
.rmm-hdr-cta-nav { display: flex; gap: 1.25rem; flex: 1; flex-wrap: wrap; }
.rmm-hdr-cta-link { color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.rmm-hdr-cta-link:hover { color: var(--text); }
.rmm-hdr-cta-link--active { color: var(--primary); }
.rmm-hdr-cta-phone {
  background: var(--primary); color: var(--primary-text);
  padding: 0.5rem 1rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.9375rem;
  white-space: nowrap; transition: background 0.2s;
}
.rmm-hdr-cta-phone:hover { background: var(--primary-hover); }
@media (max-width: 720px) {
  .rmm-hdr-cta-inner { gap: 0.75rem; padding: 0.75rem 1rem; }
  .rmm-hdr-cta-nav { width: 100%; order: 3; gap: 0.625rem 1rem; }
  .rmm-hdr-cta-logo { font-size: 1.0625rem; }
  .rmm-hdr-cta-link { font-size: 0.875rem; }
  .rmm-hdr-cta-phone { font-size: 0.875rem; padding: 0.4rem 0.875rem; }
}

/* === v4 — announcement bar + main header with <details> dropdown === */
.rmm-hdr-ann { background: var(--bg-inverse); color: var(--inverse-text); }
.rmm-hdr-ann-row { display: flex; justify-content: center; padding: 0.5rem 1.5rem; }
.rmm-hdr-ann-txt { font-size: 0.8125rem; opacity: 0.85; letter-spacing: 0.02em; text-align: center; }
.rmm-hdr-drop { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.rmm-hdr-drop-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.5rem; flex-wrap: wrap; }
.rmm-hdr-drop-logo { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text); word-break: break-word; }
.rmm-hdr-drop-nav { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.rmm-hdr-drop-link { color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.rmm-hdr-drop-link:hover { color: var(--text); }
.rmm-hdr-drop-link--active { color: var(--primary); }
.rmm-hdr-drop-more { position: relative; }
.rmm-hdr-drop-sum { cursor: pointer; color: var(--text-muted); font-weight: 500; user-select: none; list-style: none; }
.rmm-hdr-drop-sum::-webkit-details-marker { display: none; }
.rmm-hdr-drop-list {
  position: absolute; right: 0; top: calc(100% + 0.5rem); z-index: 60;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px; padding: 0.5rem 0; list-style: none; margin: 0;
}
.rmm-hdr-drop-list li a {
  display: block; padding: 0.5rem 1rem; color: var(--text); font-weight: 500;
}
.rmm-hdr-drop-list li a:hover { background: var(--bg-muted); color: var(--primary); }
@media (max-width: 640px) {
  .rmm-hdr-drop-inner { padding: 0.75rem 1rem; gap: 0.625rem; }
  .rmm-hdr-drop-logo { font-size: 1.0625rem; }
  .rmm-hdr-drop-nav { gap: 0.625rem 1rem; }
  .rmm-hdr-drop-link { font-size: 0.875rem; }
  .rmm-hdr-drop-sum { font-size: 0.875rem; }
}

/* === v5 — floating pill: nav inside a rounded shadowed bar with margin === */
.rmm-hdr-box { background: var(--bg); padding: 0.85rem 0; position: sticky; top: 0; z-index: 50; }
.rmm-hdr-box-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--bg-muted); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.6rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}
.rmm-hdr-box-logo { font-family: var(--font-heading); font-size: 1.1875rem; font-weight: 700; color: var(--text); word-break: break-word; }
.rmm-hdr-box-nav { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.rmm-hdr-box-link { color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.rmm-hdr-box-link:hover { color: var(--text); }
.rmm-hdr-box-link--active { color: var(--primary); }
.rmm-hdr-box-more { position: relative; }
.rmm-hdr-box-sum { cursor: pointer; color: var(--text-muted); font-weight: 500; user-select: none; list-style: none; }
.rmm-hdr-box-sum::-webkit-details-marker { display: none; }
.rmm-hdr-box-list {
  position: absolute; right: 0; top: calc(100% + 0.5rem); z-index: 60;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px; padding: 0.5rem 0; list-style: none; margin: 0;
}
.rmm-hdr-box-list li a { display: block; padding: 0.5rem 1rem; color: var(--text); font-weight: 500; }
.rmm-hdr-box-list li a:hover { background: var(--bg-muted); color: var(--primary); }
@media (max-width: 640px) {
  .rmm-hdr-box { padding: 0.6rem 0; }
  .rmm-hdr-box-bar { border-radius: var(--radius-lg); padding: 0.6rem 1rem; gap: 0.5rem; }
  .rmm-hdr-box-logo { font-size: 1.0625rem; }
  .rmm-hdr-box-nav { gap: 0.5rem 1rem; width: 100%; }
  .rmm-hdr-box-link { font-size: 0.875rem; }
}


.rmm-cmpt { padding: var(--section-padding); background: var(--bg-muted); }
.rmm-cmpt-head { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.rmm-cmpt-sub { color: var(--text-muted); margin-top: 0.5rem; }
.rmm-cmpt-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg); }
.rmm-cmpt-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; min-width: 640px; }
.rmm-cmpt-table th, .rmm-cmpt-table td { padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.rmm-cmpt-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); background: var(--bg-muted); }
.rmm-cmpt-table tr:last-child td { border-bottom: 0; }
.rmm-cmpt-table a { color: var(--primary); }
.rmm-cmpt-score { font-weight: 800; color: var(--primary); font-family: var(--font-heading); }
.rmm-cmpt-visit { font-weight: 600; white-space: nowrap; }
.rmm-cmpt-note { margin: 1rem 0 0; font-size: 0.8125rem; color: var(--text-muted); text-align: center; }


.rmm-opc { padding: var(--section-padding); background: var(--bg); }
.rmm-opc-head { max-width: 760px; margin: 0 auto 2.25rem; text-align: center; }
.rmm-opc-sub { color: var(--text-muted); margin-top: 0.5rem; }
.rmm-opc-intro { color: var(--text-muted); margin-top: 0.75rem; line-height: 1.65; }
.rmm-opc-list { display: flex; flex-direction: column; gap: 1.25rem; }
.rmm-opc-row {
  background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem; box-shadow: var(--shadow);
}
.rmm-opc-top {
  display: grid; grid-template-columns: auto 1.4fr auto 1.6fr auto; gap: 1.5rem; align-items: center;
}
.rmm-opc-rank {
  width: 2.75rem; height: 2.75rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--primary-text); font-weight: 800; font-family: var(--font-heading); font-size: 1.125rem;
}
.rmm-opc-brand { display: flex; align-items: center; gap: 0.875rem; }
.rmm-opc-mono {
  width: 3.25rem; height: 3.25rem; border-radius: var(--radius-md); display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-inverse); color: var(--inverse-text); font-weight: 800; font-family: var(--font-heading); letter-spacing: 0.02em; flex-shrink: 0;
}
.rmm-opc-name { margin: 0; font-size: 1.25rem; }
.rmm-opc-kind { font-size: 0.8125rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.rmm-opc-score { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; min-width: 6rem; }
.rmm-opc-stars { color: var(--primary); letter-spacing: 0.08em; font-size: 1.05rem; }
.rmm-opc-num { font-weight: 800; font-size: 1.375rem; font-family: var(--font-heading); }
.rmm-opc-num small { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.rmm-opc-score-label { font-size: 0.75rem; color: var(--text-muted); }
.rmm-opc-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.625rem; }
.rmm-opc-tags span {
  font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 999px; border: 1px solid var(--border); color: var(--text);
}
.rmm-opc-facts { margin: 0; display: grid; gap: 0.25rem; font-size: 0.875rem; }
.rmm-opc-facts div { display: flex; gap: 0.5rem; }
.rmm-opc-facts dt { color: var(--text-muted); min-width: 5.5rem; }
.rmm-opc-facts dd { margin: 0; }
.rmm-opc-facts a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.rmm-opc-actions { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.rmm-opc-visit { white-space: nowrap; }
.rmm-opc-age { font-size: 0.7rem; color: var(--text-muted); }
.rmm-opc-verdict { margin: 1rem 0 0; font-weight: 600; font-style: italic; color: var(--text); }
.rmm-opc-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.rmm-opc-cols h4 { margin: 0 0 0.5rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); }
.rmm-opc-pros, .rmm-opc-cons { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; font-size: 0.9375rem; }
.rmm-opc-pros li::before { content: "\2713\00a0"; color: var(--primary); font-weight: 700; }
.rmm-opc-cons li::before { content: "\2715\00a0"; color: var(--text-muted); font-weight: 700; }
.rmm-opc-licensee { margin: 0; font-size: 0.9375rem; color: var(--text-muted); }
.rmm-opc-more { margin-top: 1rem; }
.rmm-opc-more summary { cursor: pointer; color: var(--primary); font-weight: 600; }
.rmm-opc-more p { margin: 0.75rem 0 0; line-height: 1.7; color: var(--text); }
/* v2 grid */
.rmm-opc-cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.rmm-opc-card {
  background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.875rem; box-shadow: var(--shadow);
}
.rmm-opc-card-head { display: flex; align-items: center; gap: 0.875rem; }
.rmm-opc-rank-inline { color: var(--primary); }
.rmm-opc-bar-wrap { display: flex; align-items: center; gap: 0.75rem; }
.rmm-opc-bar { flex: 1; height: 0.5rem; border-radius: 999px; background: var(--border); overflow: hidden; }
.rmm-opc-bar span { display: block; height: 100%; background: var(--primary); border-radius: 999px; }
.rmm-opc-pc { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; font-size: 0.9375rem; }
.rmm-opc-pc-pro::before { content: "\2713\00a0"; color: var(--primary); font-weight: 700; }
.rmm-opc-pc-con::before { content: "\2715\00a0"; color: var(--text-muted); font-weight: 700; }
.rmm-opc-lic { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }
.rmm-opc-lic a { color: var(--primary); }
.rmm-opc-card .rmm-opc-actions { margin-top: auto; flex-direction: row; justify-content: space-between; }
@media (max-width: 900px) {
  .rmm-opc-top { grid-template-columns: auto 1fr; }
  .rmm-opc-score, .rmm-opc-meta, .rmm-opc-actions { grid-column: 1 / -1; align-items: flex-start; }
  .rmm-opc-cols { grid-template-columns: 1fr; gap: 1rem; }
}


.rmm-age-gate {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 1.5rem;
}
.rmm-age-gate-card {
  background: var(--bg); color: var(--text);
  max-width: 480px; padding: 2.5rem 2rem; border-radius: var(--radius-lg);
  text-align: center; box-shadow: 0 12px 48px rgba(0,0,0,0.25);
}
.rmm-age-gate-icon {
  display: inline-block; width: 4rem; height: 4rem; line-height: 4rem;
  border-radius: 50%; background: var(--primary); color: var(--primary-text);
  font-size: 1.5rem; font-weight: 800; font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.rmm-age-gate-title { margin-bottom: 0.75rem; font-size: 1.5rem; }
.rmm-age-gate-text { color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.55; }
.rmm-age-gate-actions { display: flex; flex-direction: column; gap: 0.625rem; }
.rmm-age-gate-accept { font-size: 1.05rem; padding: 0.875rem 1.5rem; }
.rmm-age-gate-decline {
  background: transparent; border: 1px solid var(--border);
  padding: 0.625rem 1rem; border-radius: var(--radius-md);
  color: var(--text-muted); cursor: pointer; font-size: 0.9375rem;
}
.rmm-age-gate-decline:hover { color: var(--text); border-color: var(--text-muted); }

.rmm-age-gate-card--blocked { border: 2px solid var(--primary); }
.rmm-age-gate-card--blocked .rmm-age-gate-icon {
  background: transparent; color: var(--primary); border: 3px solid var(--primary);
  font-size: 2rem; line-height: 3.5rem;
}

/* Layout variant: sharp corners + square badge icon */
.rmm-age-gate--sharp .rmm-age-gate-card { border-radius: 0; }
.rmm-age-gate--sharp .rmm-age-gate-icon {
  border-radius: 0.125rem; font-size: 1.25rem;
}

/* Layout variant: minimal — no icon circle, big title */
.rmm-age-gate--minimal .rmm-age-gate-icon {
  background: transparent; color: var(--primary);
  width: auto; height: auto; line-height: 1; font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.rmm-age-gate--minimal .rmm-age-gate-title { font-size: 2rem; }

/* Layout variant: centered + pill-shape icon */
.rmm-age-gate--centered .rmm-age-gate-card { max-width: 380px; }
.rmm-age-gate--centered .rmm-age-gate-icon {
  width: auto; height: auto; line-height: 1;
  padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 1.125rem;
}

/* Disclaimer-strip: base + 5 modifier variants (per-site RNG). */
.rmm-sg-strip {
  position: sticky; top: 0; z-index: 60;
  text-align: center; padding: 0.5rem 1rem;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.01em;
  box-sizing: border-box;
}
/* Sticky headers offset to sit below the strip in sg mode. */
body.rmm-sg-mode .rmm-header,
body.rmm-sg-mode .rmm-hdr-stk,
body.rmm-sg-mode .rmm-hdr-cta,
body.rmm-sg-mode .rmm-hdr-drop {
  top: 40px;
}
.rmm-sg-strip--default {
  background: var(--bg-inverse); color: var(--inverse-text);
}
.rmm-sg-strip--muted {
  background: var(--bg-muted); color: var(--text-muted);
  font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.rmm-sg-strip--bordered {
  background: transparent; color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding: 0.625rem 1rem;
  font-style: italic; font-weight: 600;
}
.rmm-sg-strip--pill {
  background: var(--bg-inverse); color: var(--inverse-text);
  padding: 0.4rem 1rem;
  font-size: 0.75rem; font-weight: 600;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  max-width: 760px; margin: 0 auto;
}
.rmm-sg-strip--accent {
  background: var(--primary); color: var(--primary-text, #fff);
  font-weight: 600; padding: 0.55rem 1rem;
  letter-spacing: 0.02em;
}
/* Backwards-compat fallback for legacy sg-disclaimer class. */
.rmm-sg-disclaimer {
  background: var(--bg-inverse); color: var(--inverse-text);
  text-align: center; padding: 0.5rem 1rem;
  font-size: 0.8125rem; font-weight: 500;
}



.rmm-ctaband { padding: 4rem 1.5rem; background: var(--bg-inverse); color: var(--inverse-text); }
.rmm-ctaband-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.rmm-ctaband-headline { color: var(--inverse-text); margin-bottom: 0.5rem; }
.rmm-ctaband-sub { color: var(--inverse-text); opacity: 0.85; }
.rmm-ctaband-btn { white-space: nowrap; padding: 0.875rem 2rem; }


.rmm-rgg { padding: var(--section-padding); background: var(--bg); }
.rmm-rgg-head { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.rmm-rgg-intro { color: var(--text-muted); margin-top: 0.75rem; line-height: 1.7; }
.rmm-rgg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.rmm-rgg-item { background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.rmm-rgg-item-title { margin: 0 0 0.5rem; font-size: 1.125rem; }
.rmm-rgg-item p { margin: 0; line-height: 1.7; color: var(--text); }
.rmm-rgg-test { max-width: 760px; margin: 2.5rem auto 0; padding: 1.75rem; border-radius: var(--radius-lg); background: var(--bg-muted); border-left: 5px solid var(--primary); }
.rmm-rgg-test-title { margin: 0 0 1rem; }
.rmm-rgg-test-list { margin: 0; padding-left: 1.25rem; display: grid; gap: 0.5rem; line-height: 1.6; }
.rmm-rgg-test-note { margin: 1rem 0 0; color: var(--text-muted); font-size: 0.9375rem; }
.rmm-rgg-res { margin-top: 2.5rem; }
.rmm-rgg-res-title { text-align: center; margin: 0 0 1.25rem; }
.rmm-rgg-res-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.rmm-rgg-res-item { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem; background: var(--bg); }
.rmm-rgg-res-item a { font-weight: 800; color: var(--primary); font-size: 1.05rem; }
.rmm-rgg-res-phone { display: block; font-weight: 700; margin-top: 0.25rem; }
.rmm-rgg-res-item p { margin: 0.5rem 0 0; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }
.rmm-rgg-closing { max-width: 720px; margin: 2rem auto 0; text-align: center; color: var(--text); line-height: 1.7; }


/* === v1 — text-left + image-right grid === */
.rmm-hero { padding: var(--section-padding); background: var(--hero-bg, var(--bg)); }
.rmm-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.rmm-hero-text { max-width: 640px; }
.rmm-hero-headline { margin-bottom: 1.25rem; }
.rmm-hero-subheadline { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2rem; }
.rmm-hero-cta { font-size: 1.05rem; padding: 0.875rem 2rem; }
.rmm-hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rmm-hero-media img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4/3; object-fit: cover;
}
@media (max-width: 880px) {
  .rmm-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .rmm-hero-media { order: -1; max-width: 540px; }
}
.rmm-hero--no-image .rmm-hero-inner {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem; padding-bottom: 2rem;
}
.rmm-hero--no-image .rmm-hero-text {
  max-width: none;
  margin: 0 auto;
}
.rmm-hero--no-image .rmm-hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
}
.rmm-hero--bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 520px;
  color: #ffffff;
  padding-top: 6rem; padding-bottom: 6rem;
  overflow: hidden;
}
.rmm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.rmm-hero--bg .rmm-hero-inner {
  position: relative; z-index: 2;
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.rmm-hero--bg .rmm-hero-text {
  max-width: none;
  margin: 0 auto;
}
.rmm-hero--bg .rmm-hero-headline {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.rmm-hero--bg .rmm-hero-subheadline {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
@media (max-width: 720px) {
  .rmm-hero--bg { min-height: 420px; padding-top: 4rem; padding-bottom: 4rem; }
}

/* === v2 — centered headline above wide image below === */
.rmm-hero-ctr { background: var(--hero-bg, var(--bg)); padding-top: 4rem; padding-bottom: 0; }
.rmm-hero-ctr-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-bottom: 3rem;
}
.rmm-hero-ctr-text { max-width: 760px; }
.rmm-hero-ctr-eyebrow {
  display: inline-block; padding: 0.25rem 0.75rem;
  background: var(--bg-muted); border: 1px solid var(--border); border-radius: 999px;
  font-size: 0.8125rem; font-weight: 500; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.25rem;
}
.rmm-hero-ctr-headline { margin-bottom: 1.25rem; font-size: clamp(2rem, 4.5vw, 3.25rem); }
.rmm-hero-ctr-sub { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.rmm-hero-ctr-cta { font-size: 1.05rem; padding: 0.875rem 2rem; }
.rmm-hero-ctr-media-wrap { padding-bottom: 4rem; }
.rmm-hero-ctr-media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  max-width: 1100px; margin: 0 auto;
}
.rmm-hero-ctr-media img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 21/9; object-fit: cover;
}
@media (max-width: 720px) {
  .rmm-hero-ctr { padding-top: 2.5rem; }
  .rmm-hero-ctr-media img { aspect-ratio: 16/10; }
}
.rmm-hero-ctr--bg {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 520px;
  padding-top: 6rem; padding-bottom: 6rem;
  color: #ffffff;
  overflow: hidden;
}
.rmm-hero-ctr-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.rmm-hero-ctr--bg .rmm-hero-ctr-inner {
  position: relative; z-index: 2;
  padding-bottom: 0;
}
.rmm-hero-ctr--bg .rmm-hero-ctr-headline {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.rmm-hero-ctr--bg .rmm-hero-ctr-sub {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.rmm-hero-ctr--bg .rmm-hero-ctr-eyebrow {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

/* === v3 — asymmetric magazine: image left, accent-bar card right === */
.rmm-hero-mag { padding: var(--section-padding); background: var(--bg-muted); }
.rmm-hero-mag-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem; align-items: stretch;
}
.rmm-hero-mag-media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  min-height: 360px; background: var(--bg);
}
.rmm-hero-mag-media img {
  width: 100%; height: 100%; display: block; object-fit: cover; min-height: 360px;
}
.rmm-hero-mag-card {
  position: relative;
  background: var(--bg); padding: 2.5rem 2rem 2.5rem 2.5rem;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
.rmm-hero-mag-bar {
  position: absolute; left: 0; top: 1.5rem; bottom: 1.5rem; width: 4px;
  background: var(--primary); border-radius: 0 4px 4px 0;
}
.rmm-hero-mag-headline { margin-bottom: 0.25rem; font-size: clamp(1.75rem, 3.5vw, 2.625rem); }
.rmm-hero-mag-sub { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.rmm-hero-mag-row { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; margin-top: 0.5rem; }
.rmm-hero-mag-cta { font-size: 1rem; padding: 0.8rem 1.75rem; }
.rmm-hero-mag-phone { color: var(--text); font-weight: 600; }
.rmm-hero-mag-phone:hover { color: var(--primary); }
@media (max-width: 880px) {
  .rmm-hero-mag-grid { grid-template-columns: 1fr; }
  .rmm-hero-mag-media, .rmm-hero-mag-media img { min-height: 260px; }
  .rmm-hero-mag-card { padding: 2rem 1.5rem 2rem 2rem; }
}
.rmm-hero-mag--no-image .rmm-hero-mag-grid {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}
.rmm-hero-mag--no-image .rmm-hero-mag-card {
  padding: 3rem 2.5rem;
}
.rmm-hero-mag--no-image .rmm-hero-mag-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
}
.rmm-hero-mag--bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-image: var(--hero-bg-img);
  min-height: 520px;
  padding-top: 5rem; padding-bottom: 5rem;
  overflow: hidden;
}
.rmm-hero-mag-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.rmm-hero-mag--bg .rmm-hero-mag-grid {
  position: relative; z-index: 2;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.rmm-hero-mag--bg .rmm-hero-mag-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 1rem 0;
  text-align: center;
  align-items: center;
}
.rmm-hero-mag--bg .rmm-hero-mag-bar {
  display: none;
}
.rmm-hero-mag--bg .rmm-hero-mag-headline {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.rmm-hero-mag--bg .rmm-hero-mag-sub {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.rmm-hero-mag--bg .rmm-hero-mag-row {
  justify-content: center;
}
.rmm-hero-mag--bg .rmm-hero-mag-phone {
  color: #ffffff;
}
.rmm-hero-mag--bg .rmm-hero-mag-phone:hover {
  color: var(--primary);
}

/* === v4 — banner: content bottom-left over full-bleed image (gradient from bottom) === */
.rmm-hero-ban { padding: var(--section-padding); background: var(--bg); }
.rmm-hero-ban-inner { display: flex; }
.rmm-hero-ban-text { max-width: 640px; position: relative; }
.rmm-hero-ban-bar { display: block; width: 56px; height: 4px; background: var(--primary); border-radius: 999px; margin-bottom: 1.5rem; }
.rmm-hero-ban-headline { margin-bottom: 1.125rem; font-size: clamp(2.25rem, 5.5vw, 3.75rem); }
.rmm-hero-ban-sub { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2rem; }
.rmm-hero-ban-cta { font-size: 1.05rem; padding: 0.875rem 2rem; }
.rmm-hero-ban--no-image { background: var(--bg-muted); }
.rmm-hero-ban--bg {
  position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  min-height: 540px; overflow: hidden;
  display: flex; align-items: flex-end;
  padding-top: 6rem; padding-bottom: 4rem;
  color: #ffffff;
}
.rmm-hero-ban-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}
.rmm-hero-ban--bg .rmm-hero-ban-inner { position: relative; z-index: 2; width: 100%; }
.rmm-hero-ban--bg .rmm-hero-ban-headline { color: #ffffff; text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.rmm-hero-ban--bg .rmm-hero-ban-sub { color: rgba(255,255,255,0.92); text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
@media (max-width: 720px) {
  .rmm-hero-ban--bg { min-height: 440px; padding-top: 4rem; padding-bottom: 2.5rem; }
}


.rmm-legal { padding: var(--section-padding); background: var(--bg); }
.rmm-legal-inner { max-width: 760px; }
.rmm-legal-inner h1 { font-size: var(--h1-size); margin-bottom: 1.5rem; }
.rmm-legal-inner h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.75rem; color: var(--text); }
.rmm-legal-inner p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.rmm-legal-inner ul { margin: 1rem 0 1.25rem 1.5rem; color: var(--text-muted); }
.rmm-legal-inner li { margin-bottom: 0.5rem; line-height: 1.65; }
.rmm-legal-inner strong { color: var(--text); font-weight: 600; }
.rmm-legal-inner a { color: var(--primary); text-decoration: underline; }
.rmm-legal-inner .legal-table {
  width: 100%; border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.875rem;
}
.rmm-legal-inner .legal-table th,
.rmm-legal-inner .legal-table td {
  padding: 0.625rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.rmm-legal-inner .legal-table th {
  background: var(--bg-muted);
  color: var(--text);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.rmm-legal-inner .legal-table td { color: var(--text-muted); }
.rmm-legal-inner .legal-table code {
  background: var(--bg-muted);
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.85em;
  color: var(--text);
}
@media (max-width: 640px) {
  .rmm-legal-inner .legal-table { font-size: 0.8125rem; }
  .rmm-legal-inner .legal-table th,
  .rmm-legal-inner .legal-table td { padding: 0.5rem 0.4rem; }
}


/* === v1 — 4-column grid with bottom strip === */
/* gambling_hub: responsible-gambling note above the copyright line */
.rmm-footer-note { border-top: 1px solid rgba(255,255,255,0.15); padding: 1rem 0 0.5rem; margin-bottom: 0.75rem; font-size: 0.8125rem; line-height: 1.6; opacity: 0.9; }
.rmm-footer-note-text { margin: 0 0 0.5rem; }
.rmm-footer-note-links { margin: 0; display: flex; flex-wrap: wrap; gap: 1rem; }
.rmm-footer-note-links a { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.rmm-rg-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem; margin: 0.25rem 0 0.5rem; }
.rmm-rg-badges-item { display: inline-flex; align-items: center; line-height: 0; opacity: 0.95; transition: opacity 0.15s, transform 0.15s; }
.rmm-rg-badges-item:hover { opacity: 1; transform: translateY(-1px); }
.rmm-rg-badges-item img { height: 44px; width: auto; display: block; }
@media (max-width: 480px) { .rmm-rg-badges-item img { height: 36px; } }
.rmm-footer { background: var(--bg-inverse); color: var(--inverse-text); padding-top: 3.5rem; }
.rmm-footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding-bottom: 2.5rem;
}
/* sg-mode: contact column hidden -> 3-col grid with wider about */
.rmm-footer-grid--3col {
  grid-template-columns: 2.5fr 1fr 1fr;
}
.rmm-footer-grid--3col .rmm-footer-about-text {
  max-width: none;
}
/* no nav links (single-page flash etc.) -> drop the empty Navigation column */
.rmm-footer-grid--no-nav {
  grid-template-columns: 2fr 1fr 1fr;
}
.rmm-footer-grid--3col.rmm-footer-grid--no-nav {
  grid-template-columns: 2.5fr 1fr;
}
.rmm-footer-brand {
  font-family: var(--font-heading); font-size: 1.25rem; display: block; margin-bottom: 0.75rem;
  word-break: break-word;
}
.rmm-footer-about-text { color: var(--inverse-text); opacity: 0.7; max-width: 320px; line-height: 1.6; }
.rmm-footer-col-title { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; margin-bottom: 1rem; }
.rmm-footer-col-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.rmm-footer-col-list a, .rmm-footer-contact p { color: var(--inverse-text); opacity: 0.7; transition: opacity 0.2s; word-break: break-word; }
.rmm-footer-col-list a:hover { opacity: 1; }
.rmm-footer-contact p { margin-bottom: 0.5rem; }
.rmm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; opacity: 0.7;
}
.rmm-footer-bottom > div {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.rmm-footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.rmm-footer-legal a { color: var(--inverse-text); }
@media (max-width: 720px) {
  .rmm-footer { padding-top: 2.5rem; }
  .rmm-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding-bottom: 1.75rem; }
}
@media (max-width: 480px) {
  .rmm-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .rmm-footer-bottom { padding: 1.25rem 0; }
}

/* === v2 — minimal centered (logo, about, nav-inline, legal-inline, copy) === */
.rmm-ft-min { background: var(--bg-inverse); color: var(--inverse-text); padding: 3rem 1.5rem; }
.rmm-ft-min-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; max-width: 720px; margin: 0 auto; }
.rmm-ft-min-brand { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; word-break: break-word; }
.rmm-ft-min-about { opacity: 0.75; line-height: 1.6; max-width: 540px; }
.rmm-ft-min-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; margin-top: 0.75rem; }
.rmm-ft-min-nav a { color: var(--inverse-text); opacity: 0.85; font-weight: 500; transition: opacity 0.2s; }
.rmm-ft-min-nav a:hover { opacity: 1; }
.rmm-ft-min-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1rem; opacity: 0.65; font-size: 0.875rem; }
.rmm-ft-min-legal a { color: var(--inverse-text); }
.rmm-ft-min-copy { opacity: 0.5; font-size: 0.8125rem; margin-top: 0.5rem; word-break: break-word; }
@media (max-width: 480px) {
  .rmm-ft-min { padding: 2.25rem 1rem; }
  .rmm-ft-min-brand { font-size: 1.25rem; }
  .rmm-ft-min-nav { gap: 0.625rem 1.125rem; }
  .rmm-ft-min-nav a { font-size: 0.9375rem; }
}

/* === v3 — mega footer with CTA strip on top === */
.rmm-ft-mega { background: var(--bg-inverse); color: var(--inverse-text); }
.rmm-ft-mega-cta { background: var(--primary); color: var(--primary-text); padding: 2.5rem 0; }
.rmm-ft-mega-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: 0 1.5rem; }
.rmm-ft-mega-cta-title { color: var(--primary-text); margin-bottom: 0.375rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.rmm-ft-mega-cta-sub { color: var(--primary-text); opacity: 0.92; }
.rmm-ft-mega-cta-btn { background: var(--bg-inverse); color: var(--inverse-text); padding: 0.875rem 1.75rem; font-size: 1.0625rem; white-space: nowrap; }
.rmm-ft-mega-cta-btn:hover { background: var(--text); }
.rmm-ft-mega-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
/* sg-mode: contact column hidden -> 3-col grid with wider about */
.rmm-ft-mega-grid--3col { grid-template-columns: 2.5fr 1fr 1fr; }
.rmm-ft-mega-grid--3col .rmm-ft-mega-about-text { max-width: none; }
/* no nav links -> drop the empty Navigation column */
.rmm-ft-mega-grid--no-nav { grid-template-columns: 2fr 1fr 1fr; }
.rmm-ft-mega-grid--3col.rmm-ft-mega-grid--no-nav { grid-template-columns: 2.5fr 1fr; }
.rmm-ft-mega-brand { font-family: var(--font-heading); font-size: 1.375rem; display: block; margin-bottom: 0.75rem; word-break: break-word; }
.rmm-ft-mega-about-text { opacity: 0.7; line-height: 1.6; max-width: 320px; }
.rmm-ft-mega-col h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; margin-bottom: 1rem; }
.rmm-ft-mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.rmm-ft-mega-col a, .rmm-ft-mega-col p { color: var(--inverse-text); opacity: 0.7; transition: opacity 0.2s; word-break: break-word; }
.rmm-ft-mega-col a:hover { opacity: 1; }
.rmm-ft-mega-bot { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 1.5rem; opacity: 0.55; font-size: 0.875rem; word-break: break-word; }
@media (max-width: 720px) {
  .rmm-ft-mega-cta { padding: 2rem 0; }
  .rmm-ft-mega-cta-btn { width: 100%; text-align: center; white-space: normal; }
  .rmm-ft-mega-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem 1rem 1.5rem; }
}
@media (max-width: 480px) {
  .rmm-ft-mega-grid { grid-template-columns: 1fr; }
  .rmm-ft-mega-bot { padding: 1rem; }
}

/* === v4 — two-row: nav band on top + contact strip on bottom === */
.rmm-ft-row { background: var(--bg-inverse); color: var(--inverse-text); }
.rmm-ft-row-top { background: var(--bg-inverse); border-bottom: 1px solid rgba(255,255,255,0.1); }
.rmm-ft-row-nav-row { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 1.5rem; gap: 1.5rem; flex-wrap: wrap; }
.rmm-ft-row-nav, .rmm-ft-row-legal { display: flex; flex-wrap: wrap; gap: 0.875rem 1.5rem; }
.rmm-ft-row-nav a, .rmm-ft-row-legal a { color: var(--inverse-text); opacity: 0.8; font-weight: 500; }
.rmm-ft-row-nav a:hover, .rmm-ft-row-legal a:hover { opacity: 1; }
.rmm-ft-row-legal { font-size: 0.875rem; opacity: 0.7; }
.rmm-ft-row-bot { padding: 2rem 0 1.5rem; }
.rmm-ft-row-bot-inner { display: grid; grid-template-columns: 2fr 2fr 1fr; gap: 2rem; align-items: center; padding: 0 1.5rem; }
.rmm-ft-row-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.rmm-ft-row-brand strong { font-family: var(--font-heading); font-size: 1.25rem; word-break: break-word; }
.rmm-ft-row-brand span { opacity: 0.7; font-size: 0.9375rem; }
.rmm-ft-row-contact { display: flex; flex-direction: column; gap: 0.25rem; opacity: 0.85; word-break: break-word; }
.rmm-ft-row-contact a { color: var(--inverse-text); font-weight: 600; }
.rmm-ft-row-contact span { opacity: 0.75; font-size: 0.9375rem; }
.rmm-ft-row-copy { opacity: 0.55; font-size: 0.8125rem; text-align: right; }
@media (max-width: 720px) {
  .rmm-ft-row-nav-row { padding: 1.125rem 1rem; gap: 0.75rem; }
  .rmm-ft-row-nav, .rmm-ft-row-legal { gap: 0.625rem 1.125rem; }
  .rmm-ft-row-nav a { font-size: 0.9375rem; }
  .rmm-ft-row-bot { padding: 1.5rem 0 1.25rem; }
  .rmm-ft-row-bot-inner { grid-template-columns: 1fr; text-align: left; gap: 1rem; padding: 0 1rem; }
  .rmm-ft-row-copy { text-align: left; }
}

/* === v5 — asymmetric: big about-block + tight 2-column nav === */
.rmm-ft-asym { background: var(--bg-inverse); color: var(--inverse-text); }
.rmm-ft-asym-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; padding: 3rem 1.5rem 2rem; }
.rmm-ft-asym-brand { font-family: var(--font-heading); font-size: 1.5rem; display: block; margin-bottom: 1rem; word-break: break-word; }
.rmm-ft-asym-about-text { opacity: 0.75; line-height: 1.7; max-width: 480px; margin-bottom: 1rem; }
.rmm-ft-asym-contact-line { opacity: 0.7; font-size: 0.9375rem; word-break: break-word; }
.rmm-ft-asym-contact-line a { color: var(--inverse-text); }
.rmm-ft-asym-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
/* no nav links -> single Legal column, no empty gap */
.rmm-ft-asym-cols--one { grid-template-columns: 1fr; }
.rmm-ft-asym-col h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; margin-bottom: 0.875rem; }
.rmm-ft-asym-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.rmm-ft-asym-col a { color: var(--inverse-text); opacity: 0.7; word-break: break-word; }
.rmm-ft-asym-col a:hover { opacity: 1; }
.rmm-ft-asym-bot { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 1.5rem; opacity: 0.55; font-size: 0.875rem; }
@media (max-width: 720px) {
  .rmm-ft-asym-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.25rem 1rem 1.5rem; }
  .rmm-ft-asym-brand { font-size: 1.25rem; }
}
@media (max-width: 420px) {
  .rmm-ft-asym-cols { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* === v6 — vertical stacked (mobile-first), all sections one under another === */
.rmm-ft-stk { background: var(--bg-inverse); color: var(--inverse-text); }
.rmm-ft-stk-inner { display: flex; flex-direction: column; gap: 1.25rem; padding: 3rem 1.5rem 2rem; max-width: 760px; }
.rmm-ft-stk-brand { font-family: var(--font-heading); font-size: 1.5rem; display: block; margin-bottom: 0.5rem; word-break: break-word; }
.rmm-ft-stk-about-text { opacity: 0.7; line-height: 1.6; }
.rmm-ft-stk-div { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 0.25rem 0; }
.rmm-ft-stk-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.55; margin-bottom: 0.5rem; }
.rmm-ft-stk-nav { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.rmm-ft-stk-nav a { color: var(--inverse-text); opacity: 0.8; font-weight: 500; }
.rmm-ft-stk-nav a:hover { opacity: 1; }
.rmm-ft-stk-contact p { opacity: 0.75; margin-bottom: 0.25rem; word-break: break-word; }
.rmm-ft-stk-contact a { color: var(--inverse-text); }
.rmm-ft-stk-legal { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; font-size: 0.875rem; opacity: 0.65; }
.rmm-ft-stk-legal a { color: var(--inverse-text); }
.rmm-ft-stk-copy { opacity: 0.5; font-size: 0.8125rem; margin-top: 0.75rem; word-break: break-word; }
@media (max-width: 480px) {
  .rmm-ft-stk-inner { padding: 2.25rem 1rem 1.5rem; gap: 1rem; }
  .rmm-ft-stk-brand { font-size: 1.25rem; }
}


.rmm-rgb { padding: 1.75rem 0; background: var(--bg); }
.rmm-rgb-card {
  max-width: 960px; margin: 0 auto; display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 1.5rem; border: 1px solid var(--border); border-left: 5px solid var(--primary);
  border-radius: var(--radius-md); background: var(--bg-muted);
}
.rmm-rgb-badge {
  flex-shrink: 0; width: 3.25rem; height: 3.25rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--primary-text); font-weight: 800; font-family: var(--font-heading);
}
.rmm-rgb-title { margin: 0 0 0.5rem; font-size: 1.125rem; }
.rmm-rgb-text { margin: 0 0 0.5rem; font-size: 0.9375rem; line-height: 1.65; color: var(--text); }
.rmm-rgb-links { margin: 0.25rem 0 0; display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.9375rem; }
.rmm-rgb-links a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 640px) { .rmm-rgb-card { flex-direction: column; } }


.rmm-faq { padding: var(--section-padding); background: var(--bg-muted); }
.rmm-faq-title { text-align: center; margin-bottom: 2.5rem; }
.rmm-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.rmm-faq-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.rmm-faq-question { font-weight: 600; cursor: pointer; color: var(--text); }
.rmm-faq-answer { color: var(--text-muted); margin-top: 0.75rem; }
.rmm-faq-sub { text-align: center; color: var(--text-muted); max-width: 640px; margin: -1.5rem auto 2.5rem; }
/* v2 split: aside + wide accordion */
.rmm-faq-split {
  display: grid; grid-template-columns: minmax(220px, 1fr) 2fr; gap: 3rem; align-items: start;
}
.rmm-faq-aside { position: sticky; top: 1.5rem; }
.rmm-faq-title--left { text-align: left; margin-bottom: 1rem; }
.rmm-faq-sub--left { text-align: left; margin: 0 0 1.5rem; }
.rmm-faq-aside-link {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--primary); font-weight: 700; text-decoration: none;
  padding-bottom: 0.25rem; border-bottom: 2px solid var(--primary);
}
.rmm-faq-list--wide { max-width: none; }
@media (max-width: 720px) {
  .rmm-faq-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .rmm-faq-aside { position: static; }
}