@charset "UTF-8";
:root {
  --color-black: #000000;
  --color-grey: #b5bbc0;
  --color-purple: #7d01fc;
  --color-light-grey: rgba(255, 255, 255, 0.82);
  --color-royal: #fcc001;
  --layout-section-gap: clamp(1rem, 2vw, 2rem);
}

/* Minimizer/reset baseline */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
html,
body {
  inline-size: 100%;
  min-block-size: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-inline-size: 100%;
}

/* Content structure: article > section > block(s) */
article > section {
  max-width: calc(100% - 24px);
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 480px) {
  article > section {
    max-width: calc(100% - 32px);
  }
}
@media (min-width: 768px) {
  article > section {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  article > section {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  article > section {
    max-width: 1200px;
  }
}
@media (min-width: 1440px) {
  article > section {
    max-width: 1320px;
  }
}
@media (min-width: 1920px) {
  article > section {
    max-width: 1600px;
  }
}
@font-face {
  font-family: "Qs_Iranyekan";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Qs_Iranyekan light.ttf") format("truetype");
}
@font-face {
  font-family: "Qs_Iranyekan";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Qs_Iranyekan.ttf") format("truetype");
}
@font-face {
  font-family: "Qs_Iranyekan";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Qs_Iranyekan medium.ttf") format("truetype");
}
@font-face {
  font-family: "Qs_Iranyekan";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Qs_Iranyekan bold.ttf") format("truetype");
}
@font-face {
  font-family: "Qs_Iranyekan";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Qs_Iranyekan extrabold.ttf") format("truetype");
}
@font-face {
  font-family: "Qs_Iranyekan";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Qs_Iranyekan black.ttf") format("truetype");
}
@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Alexandria-Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/Alexandria-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Alexandria-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Alexandria-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Alexandria-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Alexandria-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Alexandria-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Alexandria-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Alexandria-Black.ttf") format("truetype");
}
.site-header {
  border-bottom: 1px solid #e5e7eb;
  background-color: #ffffff;
}

.oneroyal-header-inner {
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.oneroyal-header-logo img {
  width: 100px;
  height: auto;
}

.oneroyal-main-navigation {
  width: auto;
  flex: 1;
}

@media (min-width: 961px) {
  .oneroyal-main-navigation ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .oneroyal-mobile-drawer-shell {
    display: contents;
  }
  .oneroyal-mobile-drawer-branding,
  .oneroyal-mobile-drawer-footer {
    display: none !important;
  }
}
.oneroyal-main-navigation a {
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.3s ease;
}
.oneroyal-main-navigation a:hover, .oneroyal-main-navigation a:focus {
  color: var(--color-royal) !important;
}

.oneroyal-menu-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.oneroyal-main-navigation .menu-item-has-children:hover > a .oneroyal-menu-chevron,
.oneroyal-main-navigation .menu-item-has-children.focus > a .oneroyal-menu-chevron {
  transform: rotate(90deg);
}

.oneroyal-main-navigation .menu-item-has-children,
.oneroyal-main-navigation .page_item_has_children {
  position: relative;
}

.oneroyal-main-navigation ul#primary-menu > .menu-item-has-children::after,
.oneroyal-main-navigation ul#primary-menu > .page_item_has_children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  z-index: 199;
}

.oneroyal-main-navigation ul ul .menu-item-has-children::after,
.oneroyal-main-navigation ul ul .page_item_has_children::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 12px;
  height: 100%;
  min-height: 44px;
  z-index: 199;
}

.oneroyal-main-navigation ul ul.sub-menu,
.oneroyal-main-navigation ul ul.children {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 220px;
  max-width: min(320px, 90vw);
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.oneroyal-main-navigation ul ul.sub-menu::before,
.oneroyal-main-navigation ul ul.children::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  transform: rotate(45deg);
}

.oneroyal-main-navigation ul ul li {
  margin: 0;
  padding: 0;
}

.oneroyal-main-navigation ul ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #111827;
  white-space: normal;
  border-radius: 0;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.oneroyal-main-navigation ul ul a:hover,
.oneroyal-main-navigation ul ul a:focus {
  background-color: #f9fafb;
  color: var(--color-purple) !important;
}

.oneroyal-main-navigation ul ul .menu-item:not(.menu-item-has-children) > a .oneroyal-menu-chevron {
  display: none;
}

.oneroyal-main-navigation ul ul .menu-item-has-children > a .oneroyal-menu-chevron {
  margin-left: auto;
  transform: rotate(0deg);
}

.oneroyal-main-navigation ul ul .menu-item-has-children:hover > a .oneroyal-menu-chevron,
.oneroyal-main-navigation ul ul .menu-item-has-children.focus > a .oneroyal-menu-chevron {
  transform: rotate(-90deg);
}

.oneroyal-main-navigation ul ul ul.sub-menu,
.oneroyal-main-navigation ul ul ul.children {
  top: 0;
  left: calc(100% + 2px);
  margin-top: 0;
}

.oneroyal-main-navigation ul ul ul.sub-menu::before,
.oneroyal-main-navigation ul ul ul.children::before {
  display: none;
}

@media (min-width: 961px) {
  .oneroyal-main-navigation ul li:hover > ul,
  .oneroyal-main-navigation ul li.focus > ul,
  .oneroyal-main-navigation ul ul li:hover > ul,
  .oneroyal-main-navigation ul ul li.focus > ul {
    display: flex;
  }
}
.oneroyal-main-navigation a:hover,
.oneroyal-main-navigation a:focus {
  color: #000000;
}

.oneroyal-header-search-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.oneroyal-header-create-account {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  min-height: 34px;
  box-sizing: border-box;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 120%;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.oneroyal-header-create-account:link, .oneroyal-header-create-account:visited, .oneroyal-header-create-account:hover, .oneroyal-header-create-account:focus, .oneroyal-header-create-account:active {
  color: #000;
}
.oneroyal-header-create-account:hover, .oneroyal-header-create-account:focus {
  background: #f3f4f6;
  border-color: #000;
}
.oneroyal-header-create-account:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 2px;
}

.oneroyal-header-search-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  min-width: 34px;
  min-height: 0;
}

.oneroyal-header-search-trigger {
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border-radius: 10px;
  border: none;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, opacity 0.28s ease;
}
.oneroyal-header-search-trigger:hover, .oneroyal-header-search-trigger:focus {
  border-color: var(--color-royal);
  background: #fafafa;
}
.oneroyal-header-search-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #7d01fc;
}

.oneroyal-header-search-trigger-icon {
  width: 19px;
  height: 19px;
  display: block;
  filter: brightness(0);
}

.oneroyal-header-search {
  flex-shrink: 1;
  position: relative;
  min-width: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  margin: 0;
  transition: max-width 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.oneroyal-header-search-cluster.oneroyal-header-search-cluster--open .oneroyal-header-search-trigger {
  display: none;
}

.oneroyal-header-search-cluster.oneroyal-header-search-cluster--open .oneroyal-header-search {
  max-width: clamp(180px, 22vw, 280px);
  opacity: 1;
  pointer-events: auto;
}

.oneroyal-header-search-cluster:not(.oneroyal-header-search-cluster--open) .oneroyal-header-search input[type=search] {
  width: 100%;
  min-width: 0;
  padding: 0;
  border-color: transparent;
  background: transparent;
}

.oneroyal-header-search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

.oneroyal-header-search input[type=search] {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background-color: #f3f4f6;
  color: #6b7280;
  font-size: 13px;
  padding: 0 14px 0 34px;
  box-sizing: border-box;
}

.oneroyal-header-search input[type=search]::placeholder {
  color: #9ca3af;
}

.oneroyal-header-search input[type=search]:focus {
  outline: none;
  border-color: #9ca3af;
  background-color: #ffffff;
}

.oneroyal-header-language {
  position: relative;
  flex-shrink: 0;
}

.oneroyal-header-language-toggle {
  width: 34px;
  height: 34px;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.oneroyal-header-language-toggle img {
  width: 20px;
  height: 20px;
  display: block;
}

.oneroyal-header-language-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
}

.oneroyal-header-language-menu.active {
  display: block;
}

.oneroyal-header-language-menu .trp-language-switcher {
  display: block !important;
}

.oneroyal-header-end {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.oneroyal-menu-toggle {
  display: none;
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-black);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.oneroyal-menu-toggle:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 2px;
}

.oneroyal-menu-toggle__icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.oneroyal-menu-toggle[aria-expanded=true] .oneroyal-menu-toggle__icon {
  box-shadow: none;
  transform: rotate(45deg);
  background-color: currentColor;
}

.oneroyal-menu-toggle[aria-expanded=true] .oneroyal-menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transform: rotate(-90deg);
}

@media (min-width: 961px) {
  .oneroyal-menu-toggle {
    display: none !important;
  }
  .oneroyal-menu-backdrop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  body.oneroyal-menu-open {
    overflow: unset;
    touch-action: unset;
  }
}
.oneroyal-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.oneroyal-menu-backdrop.is-visible {
  display: block;
  opacity: 1;
  visibility: visible;
}

body.oneroyal-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 960px) {
  .oneroyal-header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 16px;
    padding: 10px 16px;
  }
  .oneroyal-header-logo {
    order: 1;
  }
  .oneroyal-header-end {
    order: 2;
  }
  #oneroyal-header-create-account {
    display: none !important;
  }
  .oneroyal-mobile-drawer-shell {
    position: fixed;
    z-index: 1001;
    inset: 0 0 0 auto;
    display: flex;
    flex-direction: column;
    width: min(22rem, 90vw);
    max-width: 100%;
    height: 100%;
    min-height: 100dvh;
    margin: 0;
    padding: calc(1rem + env(safe-area-inset-top, 0)) 1.25rem calc(1rem + env(safe-area-inset-bottom, 0));
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s;
  }
  .oneroyal-main-navigation.toggled .oneroyal-mobile-drawer-shell {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }
  .oneroyal-mobile-drawer-branding {
    flex-shrink: 0;
    padding-bottom: 1rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #e5e7eb;
  }
  .oneroyal-mobile-drawer-logo {
    display: inline-block;
    line-height: 0;
  }
  .oneroyal-mobile-drawer-logo img {
    width: 100px;
    height: auto;
    display: block;
  }
  .oneroyal-mobile-drawer-footer {
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
  }
  .oneroyal-mobile-drawer-footer .oneroyal-header-create-account--drawer {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .oneroyal-menu-toggle {
    display: inline-flex;
  }
  .oneroyal-main-navigation ul#primary-menu,
  .oneroyal-main-navigation > div > ul.menu,
  .oneroyal-main-navigation > ul.menu {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.25rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    display: flex !important;
  }
  .oneroyal-header-search-cluster {
    order: 3;
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .oneroyal-header-search-shell {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
  }
  /* Mobile: full-width pill search always visible (no lens toggle). */
  .oneroyal-header-search-trigger {
    display: none !important;
  }
  .oneroyal-header-search {
    max-width: none !important;
    opacity: 1 !important;
    flex: 1 1 auto !important;
    width: 100%;
    pointer-events: auto !important;
  }
  .oneroyal-header-search input[type=search] {
    width: 100%;
    max-width: none;
    border: 1px solid #e5e7eb !important;
    background-color: #f3f4f6 !important;
    color: #6b7280 !important;
    padding: 0 14px 0 34px !important;
  }
  .oneroyal-main-navigation {
    order: 4;
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  .oneroyal-main-navigation ul#primary-menu > li > a,
  .oneroyal-main-navigation > div > ul.menu > li > a,
  .oneroyal-main-navigation > ul.menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 10px;
    transition: background-color 0.15s ease, color 0.15s ease;
  }
  .oneroyal-main-navigation ul#primary-menu > li > a:hover,
  .oneroyal-main-navigation ul#primary-menu > li > a:focus,
  .oneroyal-main-navigation > div > ul.menu > li > a:hover,
  .oneroyal-main-navigation > div > ul.menu > li > a:focus,
  .oneroyal-main-navigation > ul.menu > li > a:hover,
  .oneroyal-main-navigation > ul.menu > li > a:focus {
    background-color: #f3f4f6;
  }
  .oneroyal-main-navigation ul {
    flex-wrap: nowrap;
    gap: 0;
  }
  .oneroyal-main-navigation ul ul.sub-menu,
  .oneroyal-main-navigation ul ul.children {
    position: static;
    max-width: none;
    width: 100%;
    margin: 8px 0 4px;
    padding: 4px 0;
    border-radius: 10px;
    box-shadow: none;
    background-color: #f9fafb;
  }
  .oneroyal-main-navigation ul ul.sub-menu::before,
  .oneroyal-main-navigation ul ul.children::before {
    display: none;
  }
  .oneroyal-main-navigation ul ul ul.sub-menu,
  .oneroyal-main-navigation ul ul ul.children {
    left: auto;
    width: 100%;
    margin: 6px 0 0;
    padding-left: 10px;
    border: none;
    border-left: 2px solid #e5e7eb;
    background-color: transparent;
    border-radius: 0;
  }
  .oneroyal-main-navigation ul li.focus > ul.sub-menu,
  .oneroyal-main-navigation ul li.focus > ul.children {
    display: flex;
  }
  .oneroyal-main-navigation ul li:not(.focus) > ul.sub-menu,
  .oneroyal-main-navigation ul li:not(.focus) > ul.children {
    display: none !important;
  }
  .oneroyal-main-navigation ul#primary-menu > .menu-item-has-children::after,
  .oneroyal-main-navigation ul#primary-menu > .page_item_has_children::after,
  .oneroyal-main-navigation ul ul .menu-item-has-children::after,
  .oneroyal-main-navigation ul ul .page_item_has_children::after {
    display: none;
  }
}
.oneroyal-home-hero {
  min-height: clamp(240px, 34vw, 360px);
  border-radius: 20px;
  overflow: hidden;
  background-color: #dbe8f0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-top: 40px;
  position: relative;
}

.oneroyal-home-hero--has-desktop-bg {
  background-image: var(--oneroyal-hero-bg);
}

.oneroyal-home-hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58%;
  box-sizing: border-box;
  z-index: 1;
  inset-inline-start: 42%;
}

.oneroyal-home-hero-title {
  color: #000;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  max-width: 420px;
}
.oneroyal-home-hero-title strong {
  font-weight: 700;
}
.oneroyal-home-hero-title p {
  margin: 0;
}

.oneroyal-home-hero-button {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  background: #7d01fc;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.oneroyal-home-hero-button:hover, .oneroyal-home-hero-button:focus, .oneroyal-home-hero-button:active, .oneroyal-home-hero-button:visited {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(125, 1, 252, 0.25);
  color: #ffffff;
}

.oneroyal-home-hero-button-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 960px) {
  .oneroyal-home-hero {
    min-height: 420px;
    background-position: center bottom;
    align-items: start;
  }
  .oneroyal-home-hero--has-mob-bg {
    background-image: var(--oneroyal-hero-bg-mob);
  }
  .oneroyal-home-hero-content {
    position: relative;
    top: auto;
    transform: none;
    inset-inline: auto;
    width: 100%;
    padding: 40px 20px 20px;
  }
  .oneroyal-home-hero-title {
    font-size: clamp(1.35rem, 5vw, 2rem);
  }
}
.oneroyal-home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 40px;
}
.oneroyal-home-news-layout > :not(.oneroyal-home-news-sidebar) {
  min-width: 0;
}

.oneroyal-home-news-main {
  min-width: 0;
}

.oneroyal-home-news-block + .oneroyal-home-news-block {
  margin-top: 28px;
}

.oneroyal-home-news-title {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  color: #000;
  margin-top: 40px;
  margin-bottom: 20px;
}
.oneroyal-home-news-title span {
  color: #B5BBC0;
  font-weight: 500;
}
.oneroyal-home-news-title.trading-news-title {
  margin-top: 0;
  margin-bottom: 60px;
}

.oneroyal-home-hot-news-widget-wrap {
  min-height: 270px;
}
.oneroyal-home-hot-news-widget-wrap [class*=AcuityNews__wrapper] > div:nth-child(2),
.oneroyal-home-hot-news-widget-wrap [class*=AcuityNews__wrapper] > div:nth-child(3),
.oneroyal-home-hot-news-widget-wrap [class*=TrendingInstruments_wrapper],
.oneroyal-home-hot-news-widget-wrap [class*=Selected_wrapper],
.oneroyal-home-hot-news-widget-wrap [class*=SelectedInstruments_wrapper] {
  display: none !important;
}

.oneroyal-home-article--newsworthy-instruments .oneroyal-home-hot-news-widget-wrap--newsworthy [class*=AcuityNews__wrapper] > div:nth-child(1),
.oneroyal-home-article--newsworthy-instruments .oneroyal-home-hot-news-widget-wrap--newsworthy [class*=AcuityNews__wrapper] > div:nth-child(3) {
  display: none !important;
}
.oneroyal-home-article--newsworthy-instruments .oneroyal-home-hot-news-widget-wrap--newsworthy [class*=AcuityNews__wrapper] > div:nth-child(2),
.oneroyal-home-article--newsworthy-instruments .oneroyal-home-hot-news-widget-wrap--newsworthy [class*=TrendingInstruments_wrapper],
.oneroyal-home-article--newsworthy-instruments .oneroyal-home-hot-news-widget-wrap--newsworthy [class*=TrendingInstruments__wrapper] {
  display: block !important;
}
.oneroyal-home-article--newsworthy-instruments .oneroyal-home-hot-news-widget-wrap--newsworthy [class*=Selected_wrapper],
.oneroyal-home-article--newsworthy-instruments .oneroyal-home-hot-news-widget-wrap--newsworthy [class*=Selected__wrapper],
.oneroyal-home-article--newsworthy-instruments .oneroyal-home-hot-news-widget-wrap--newsworthy [class*=SelectedInstruments_wrapper],
.oneroyal-home-article--newsworthy-instruments .oneroyal-home-hot-news-widget-wrap--newsworthy [class*=SelectedInstruments__wrapper] {
  display: none !important;
}

.oneroyal-home-news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 370px;
  width: 370px;
  max-width: 100%;
  padding-top: 120px;
}

.oneroyal-company-news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.oneroyal-company-news-header .oneroyal-home-news-title {
  margin-bottom: 0;
}

.oneroyal-company-news-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #7D01FC;
  color: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 12px 24px;
  text-decoration: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.oneroyal-company-news-view-all:hover, .oneroyal-company-news-view-all:focus, .oneroyal-company-news-view-all:active, .oneroyal-company-news-view-all:visited {
  color: #fff;
}

.oneroyal-company-news-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.oneroyal-company-news-card {
  min-width: 0;
}

.oneroyal-company-news-thumb-link {
  display: block;
}

.oneroyal-company-news-thumb {
  width: 100%;
  aspect-ratio: 1.2/0.85;
  border-radius: 18px;
  overflow: hidden;
  background: #e5e5e5;
}
.oneroyal-company-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oneroyal-company-news-title-link {
  display: block;
  margin-top: 12px;
  color: #000;
  text-decoration: none;
}
.oneroyal-company-news-title-link:link, .oneroyal-company-news-title-link:visited {
  color: #000;
}
.oneroyal-company-news-title-link:hover, .oneroyal-company-news-title-link:focus {
  color: var(--color-royal);
}

.oneroyal-company-news-title {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  line-height: 120%;
  font-weight: 700;
  margin: 0;
}

.oneroyal-company-news-excerpt {
  margin: 8px 0 0;
  color: #4b5563;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.oneroyal-home-banner-placeholder {
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
}
.oneroyal-home-banner-placeholder a,
.oneroyal-home-banner-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
}
.oneroyal-home-banner-placeholder img {
  object-fit: contain;
}

.oneroyal-home-banner-placeholder--large {
  min-height: 310px;
}

.oneroyal-home-news-sidebar > .oneroyal-home-banner-placeholder:nth-child(1) {
  min-height: 440px;
}

.oneroyal-home-news-sidebar > .oneroyal-home-banner-placeholder:nth-child(2) {
  min-height: 440px;
}

.oneroyal-home-news-sidebar > .oneroyal-home-banner-placeholder:nth-child(3) {
  min-height: 230px;
}

.oneroyal-home-news-sidebar > .oneroyal-home-banner-placeholder:nth-child(4),
.oneroyal-home-news-sidebar > .oneroyal-home-banner-placeholder:nth-child(5),
.oneroyal-home-news-sidebar > .oneroyal-home-banner-placeholder:nth-child(6) {
  min-height: 535px;
}

.oneroyal-trading-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.oneroyal-trading-news-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.oneroyal-trading-news-column:not(.oneroyal-trading-news-column-main) {
  justify-content: space-between;
}
.oneroyal-trading-news-column:not(.oneroyal-trading-news-column-main) .oneroyal-trading-news-card + .oneroyal-trading-news-card {
  margin-top: 0;
}
@media (max-width: 820px) {
  .oneroyal-trading-news-column:not(.oneroyal-trading-news-column-main) .oneroyal-trading-news-thumb {
    min-height: 250px;
  }
}

.oneroyal-trading-news-column-main {
  align-self: stretch;
  border-bottom: 1px solid #000;
  padding-bottom: 12px;
}
@media (max-width: 820px) {
  .oneroyal-trading-news-column-main {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 12px;
    border-bottom: none;
  }
  .oneroyal-trading-news-column-main .oneroyal-trading-news-thumb {
    border-radius: 8px;
  }
}

.oneroyal-trading-news-card {
  display: block;
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 12px;
}
.oneroyal-trading-news-card + .oneroyal-trading-news-card {
  margin-top: 30px;
}

.oneroyal-trading-news-title-link {
  color: inherit;
  text-decoration: none;
}
.oneroyal-trading-news-title-link:link, .oneroyal-trading-news-title-link:visited {
  color: inherit;
}
.oneroyal-trading-news-title-link:hover .oneroyal-trading-news-card-title, .oneroyal-trading-news-title-link:focus .oneroyal-trading-news-card-title {
  text-decoration: underline;
}

.oneroyal-trading-news-thumb-link {
  display: block;
}

.oneroyal-trading-news-thumb {
  width: 100%;
  height: 155px;
  overflow: hidden;
  background: #e5e7eb;
  object-fit: cover;
}
.oneroyal-trading-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oneroyal-trading-news-card-featured {
  border-bottom: none;
  padding-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.oneroyal-trading-news-card-featured .oneroyal-trading-news-thumb {
  flex: 1;
  height: auto;
  min-height: 200px;
  margin-bottom: 14px;
}

.oneroyal-trading-news-card-body {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

.oneroyal-trading-news-tag-badge {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #000;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 3px 10px;
  width: fit-content;
  text-decoration: none;
  margin: 16px 0 24px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.oneroyal-trading-news-tag-badge:hover, .oneroyal-trading-news-tag-badge:focus, .oneroyal-trading-news-tag-badge:active, .oneroyal-trading-news-tag-badge:visited {
  color: #111827;
  border-color: #9ca3af;
}

.oneroyal-trading-news-card-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 160%;
  font-weight: 600;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.oneroyal-trading-news-card-featured .oneroyal-trading-news-card-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
  -webkit-line-clamp: 3;
}

.oneroyal-trading-news-card-author {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 4px;
}

.oneroyal-home-banners-mobile {
  display: none;
  flex-direction: column;
  align-items: stretch;
}

.oneroyal-home-banners-dots {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  align-self: center;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
  width: max-content;
  max-width: 100%;
}

.oneroyal-home-banners-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.oneroyal-home-banners-dot::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}
.oneroyal-home-banners-dot:focus-visible {
  outline: none;
}
.oneroyal-home-banners-dot:focus-visible::before {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #7d01fc;
}
.oneroyal-home-banners-dot.is-active::before, .oneroyal-home-banners-dot[aria-current=true]::before {
  width: 10px;
  height: 10px;
  background: #7d01fc;
}

@media (prefers-reduced-motion: reduce) {
  .oneroyal-home-banners-dot::before {
    transition: none;
  }
}
.oneroyal-home-banners-scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 12px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 4px 2px 10px;
  outline: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.oneroyal-home-banners-scroll::-webkit-scrollbar {
  display: none;
}
.oneroyal-home-banners-scroll:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #7D01FC;
  border-radius: 12px;
}

.oneroyal-home-banners-slide {
  display: flex;
  flex-direction: column;
  flex: 0 0 min(88vw, 340px);
  max-width: 340px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
}

.oneroyal-home-banners-mobile .oneroyal-home-banner-placeholder {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  width: 100%;
}
.oneroyal-home-banners-mobile .oneroyal-home-banner-placeholder a {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  text-decoration: none;
}
.oneroyal-home-banners-mobile .oneroyal-home-banner-placeholder img {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  object-fit: contain;
}

.oneroyal-home-banners-mobile .oneroyal-home-banner-placeholder--large {
  min-height: 180px;
}

@media (max-width: 1100px) {
  .oneroyal-home-news-layout {
    grid-template-columns: 1fr;
  }
  .oneroyal-home-news-layout > .oneroyal-home-news-sidebar {
    display: none;
  }
  .oneroyal-home-banners-mobile {
    display: flex;
    width: 100%;
    margin: 8px 0 28px;
  }
}
@media (max-width: 960px) {
  .oneroyal-home-news-title {
    font-size: clamp(1.375rem, 5.2vw, 1.75rem);
    margin-top: 28px;
    margin-bottom: 14px;
  }
  .oneroyal-home-news-title.trading-news-title {
    margin-bottom: 28px;
  }
  .oneroyal-trading-news-card-featured .oneroyal-trading-news-card-title {
    font-size: clamp(1.1rem, 4vw, 1.35rem);
  }
}
@media (max-width: 820px) {
  .oneroyal-company-news-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .oneroyal-company-news-grid {
    grid-template-columns: 1fr;
  }
  .oneroyal-trading-news-grid {
    grid-template-columns: 1fr;
  }
  .oneroyal-trading-news-column {
    grid-template-rows: auto;
  }
}
.Title__title__pm9nN {
  display: none;
}

.AcuityResearchTerminalWidget__padding__S4eul,
.AcuityNews__wrapper__cG1lX {
  padding: 0 !important;
}

.site-footer {
  margin-top: 80px;
  background: #f5f5f5;
  border-top: 1px solid #d1d5db;
}

.oneroyal-footer-article {
  padding-top: 0;
  padding-bottom: 0;
}

.oneroyal-footer-article--bottom {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.oneroyal-footer-section {
  padding-top: 35px;
  padding-bottom: 35px;
}

.oneroyal-footer-head {
  padding-bottom: 20px;
  border-bottom: 1px solid #cfd2d6;
}

.oneroyal-footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.oneroyal-footer-brand img {
  width: 140px;
}

.oneroyal-footer-nav-columns {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.25fr 1.25fr 1.25fr 1fr;
  gap: 22px;
}

.oneroyal-footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.oneroyal-footer-nav-group a {
  color: #2f343d;
  text-decoration: none;
  font-size: 22px;
  line-height: 1.2;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oneroyal-footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.oneroyal-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.oneroyal-footer-socials img {
  width: 18px;
  height: 18px;
}

.oneroyal-footer-section--bottom {
  padding-top: 14px;
  padding-bottom: 14px;
}

.oneroyal-footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.oneroyal-footer-copyright {
  margin: 0;
  color: #2f343d;
  font-size: 14px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oneroyal-footer-policy-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.oneroyal-footer-policy-links a {
  color: #2f343d;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  font-weight: 500;
}
.oneroyal-footer-policy-links a + a::before {
  content: "|";
  color: #9ca3af;
  position: absolute;
  left: -11px;
  top: 0;
}

.oneroyal-footer-legal {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.oneroyal-footer-legal p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oneroyal-footer-partners {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid #d9dde1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 30px;
}
.oneroyal-footer-partners img {
  width: auto;
  height: 24px;
  opacity: 0.72;
}

@media (max-width: 1200px) {
  .oneroyal-footer-nav-group a {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .oneroyal-footer-nav-columns {
    grid-template-columns: 1fr 1fr;
  }
  .oneroyal-footer-nav-group a {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .oneroyal-footer-nav-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .oneroyal-footer-policy-links a {
    font-size: 14px;
  }
  .oneroyal-footer-legal p {
    font-size: 12px;
  }
  .oneroyal-footer-partners img {
    height: 20px;
  }
  .oneroyal-footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.oneroyal-home-article--market-holidays .oneroyal-market-content-section {
  margin-top: 34px;
}
.oneroyal-home-article--market-holidays .oneroyal-market-hero {
  margin-top: 40px;
  min-height: clamp(260px, 38vw, 420px);
  border-radius: 20px;
  overflow: hidden;
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oneroyal-home-article--market-holidays .oneroyal-market-hero-overlay {
  max-width: 650px;
  text-align: center;
}
@media (max-width: 620px) {
  .oneroyal-home-article--market-holidays .oneroyal-market-hero-overlay {
    padding: 40px;
  }
}
.oneroyal-home-article--market-holidays .oneroyal-market-hero-title {
  color: #fff;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}
@media (max-width: 620px) {
  .oneroyal-home-article--market-holidays .oneroyal-market-hero-title {
    font-size: 38px;
    line-height: 120%;
    margin-bottom: 16px;
  }
}
.oneroyal-home-article--market-holidays .oneroyal-market-hero-subtitle {
  color: #fff;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 620px) {
  .oneroyal-home-article--market-holidays .oneroyal-market-hero-subtitle {
    font-size: 18px;
  }
}
.oneroyal-home-article--market-holidays .oneroyal-acf-page-header {
  margin-bottom: 8px;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-page-title {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.125rem);
  line-height: 120%;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-page-intro {
  margin-bottom: 28px;
  max-width: 900px;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-page-intro p {
  margin: 0 0 12px;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-page-intro p:last-child {
  margin-bottom: 0;
}
.oneroyal-home-article--market-holidays .oneroyal-market-info-block {
  margin: auto;
  padding: 70px 0;
  max-width: 1200px;
  display: flex;
  gap: 70px;
  align-items: center;
  justify-content: space-between;
}
.oneroyal-home-article--market-holidays .oneroyal-market-info-media {
  flex: 0 0 50%;
  max-width: 50%;
}
.oneroyal-home-article--market-holidays .oneroyal-market-info-media img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.oneroyal-home-article--market-holidays .oneroyal-market-info-text {
  width: 50%;
  max-width: 50%;
}
.oneroyal-home-article--market-holidays .oneroyal-market-info-title {
  margin: 0 0 16px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 36px;
  line-height: 140%;
  color: #000;
}
.oneroyal-home-article--market-holidays .oneroyal-market-info-description {
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
.oneroyal-home-article--market-holidays .oneroyal-market-info-description p {
  margin: 0 0 12px;
}
.oneroyal-home-article--market-holidays .oneroyal-market-info-description p:last-child {
  margin-bottom: 0;
}
.oneroyal-home-article--market-holidays .oneroyal-market-table-title {
  margin: 50px 0 50px;
  text-align: center;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
  color: #000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table-scroll {
  position: relative;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e8defe;
  border-radius: 14px;
  background: #fff;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table-hint {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.35;
  color: #9ca3af;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #6b7280;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  text-align: left;
  font-weight: 700;
  color: #4a1a8c;
  background: linear-gradient(180deg, #f7f2ff 0%, #efe6ff 100%);
  padding: 12px 14px;
  border-bottom: 1px solid #e2d2ff;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 -1px 0 #e2d2ff;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table tbody td {
  padding: 13px 14px;
  border-bottom: 1px solid #edf1f5;
  vertical-align: middle;
  font-size: 14px;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table tbody tr:nth-child(even) {
  background: #fcfcfd;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table tbody tr:hover {
  background: #f8fafc;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table thead th:first-child,
.oneroyal-home-article--market-holidays .oneroyal-acf-table tbody td:first-child {
  color: #111827;
  font-weight: 600;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table thead th:nth-child(3),
.oneroyal-home-article--market-holidays .oneroyal-acf-table tbody td:nth-child(3) {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table tbody tr:last-child td {
  border-bottom: 1px solid #edf1f5;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table .oneroyal-acf-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table .oneroyal-acf-date-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
  opacity: 0.75;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table .oneroyal-acf-date-chip.is-closed {
  background: linear-gradient(180deg, #fff5f5 0%, #ffeaea 100%);
  border-color: #fecaca;
  color: #991b1b;
  font-weight: 600;
}
.oneroyal-home-article--market-holidays .oneroyal-acf-table .oneroyal-acf-date-chip.is-closed::before {
  background: #ef4444;
  opacity: 1;
}
@media (max-width: 820px) {
  .oneroyal-home-article--market-holidays .oneroyal-market-info-block {
    padding: 42px 0;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .oneroyal-home-article--market-holidays .oneroyal-market-info-media,
  .oneroyal-home-article--market-holidays .oneroyal-market-info-text {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .oneroyal-home-article--market-holidays .oneroyal-market-info-description {
    font-size: 16px;
  }
  .oneroyal-home-article--market-holidays .oneroyal-market-table-title {
    margin-bottom: 18px;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.25;
  }
  .oneroyal-home-article--market-holidays .oneroyal-acf-table {
    font-size: 13px;
  }
  .oneroyal-home-article--market-holidays .oneroyal-acf-table thead th,
  .oneroyal-home-article--market-holidays .oneroyal-acf-table tbody td {
    padding: 10px 12px;
  }
  .oneroyal-home-article--market-holidays .oneroyal-acf-table tbody td {
    font-size: 13px;
  }
  .oneroyal-home-article--market-holidays .oneroyal-acf-table .oneroyal-acf-date-chip {
    padding: 3px 8px;
    font-size: 12px;
  }
  .oneroyal-home-article--market-holidays .oneroyal-acf-table-scroll::before,
  .oneroyal-home-article--market-holidays .oneroyal-acf-table-scroll::after {
    content: "";
    position: sticky;
    top: 0;
    bottom: 0;
    width: 18px;
    display: block;
    pointer-events: none;
    z-index: 3;
  }
  .oneroyal-home-article--market-holidays .oneroyal-acf-table-scroll::before {
    float: left;
    left: 0;
    background: linear-gradient(to right, #fff 35%, rgba(255, 255, 255, 0));
  }
  .oneroyal-home-article--market-holidays .oneroyal-acf-table-scroll::after {
    float: right;
    right: 0;
    background: linear-gradient(to left, #fff 35%, rgba(255, 255, 255, 0));
  }
}

.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-content-section {
  margin-top: 34px;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-hero {
  margin-top: 40px;
  min-height: clamp(260px, 38vw, 420px);
  border-radius: 20px;
  overflow: hidden;
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-hero-overlay {
  max-width: 650px;
  text-align: center;
}
@media (max-width: 620px) {
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-hero-overlay {
    padding: 40px;
  }
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-hero-title {
  color: #fff;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}
@media (max-width: 620px) {
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-hero-title {
    font-size: 38px;
    line-height: 120%;
    margin-bottom: 16px;
  }
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-hero-subtitle {
  color: #fff;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 620px) {
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-hero-subtitle {
    font-size: 18px;
  }
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-page-header {
  margin-bottom: 8px;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-page-title {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.125rem);
  line-height: 120%;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-page-intro {
  margin-bottom: 28px;
  max-width: 900px;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-page-intro p {
  margin: 0 0 12px;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-page-intro p:last-child {
  margin-bottom: 0;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-block {
  margin: auto;
  padding: 70px 0;
  max-width: 1200px;
  display: flex;
  gap: 70px;
  align-items: center;
  justify-content: space-between;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-media {
  flex: 0 0 50%;
  max-width: 50%;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-media img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-text {
  width: 50%;
  max-width: 50%;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-title {
  margin: 0 0 16px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 36px;
  line-height: 140%;
  color: #000;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-description {
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-description p {
  margin: 0 0 12px;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-description p:last-child {
  margin-bottom: 0;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-table-title {
  margin: 50px 0 50px;
  text-align: center;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
  color: #000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table-scroll {
  position: relative;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e8defe;
  border-radius: 14px;
  background: #fff;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table-hint {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.35;
  color: #9ca3af;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #6b7280;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  text-align: left;
  font-weight: 700;
  color: #4a1a8c;
  background: linear-gradient(180deg, #f7f2ff 0%, #efe6ff 100%);
  padding: 12px 14px;
  border-bottom: 1px solid #e2d2ff;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 -1px 0 #e2d2ff;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table thead th:first-child {
  border-top-left-radius: 14px;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table tbody td {
  padding: 13px 14px;
  border-bottom: 1px solid #edf1f5;
  vertical-align: middle;
  font-size: 14px;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table tbody tr:nth-child(even) {
  background: #fcfcfd;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table tbody tr:hover {
  background: #f8fafc;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table thead th:first-child,
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table tbody td:first-child {
  color: #111827;
  font-weight: 600;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table thead th:nth-child(3),
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table thead th:nth-child(4),
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table tbody td:nth-child(3),
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table tbody td:nth-child(4) {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table tbody tr:last-child td {
  border-bottom: 1px solid #edf1f5;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table .oneroyal-acf-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table .oneroyal-acf-date-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
  opacity: 0.75;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table .oneroyal-acf-date-chip.is-closed {
  background: linear-gradient(180deg, #fff5f5 0%, #ffeaea 100%);
  border-color: #fecaca;
  color: #991b1b;
  font-weight: 600;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table .oneroyal-acf-date-chip.is-closed::before {
  background: #ef4444;
  opacity: 1;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-disclaimers {
  margin-top: 48px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.55;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-disclaimers p {
  margin: 0 0 8px;
}
.oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-disclaimers p:last-child {
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-block {
    padding: 42px 0;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-media,
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-text {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-info-description {
    font-size: 16px;
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-table-title {
    margin-bottom: 18px;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.25;
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table {
    font-size: 13px;
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table thead th,
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table tbody td {
    padding: 10px 12px;
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table tbody td {
    font-size: 13px;
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table .oneroyal-acf-date-chip {
    padding: 3px 8px;
    font-size: 12px;
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table-scroll::before,
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table-scroll::after {
    content: "";
    position: sticky;
    top: 0;
    bottom: 0;
    width: 18px;
    display: block;
    pointer-events: none;
    z-index: 3;
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table-scroll::before {
    float: left;
    left: 0;
    background: linear-gradient(to right, #fff 35%, rgba(255, 255, 255, 0));
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-acf-table-scroll::after {
    float: right;
    right: 0;
    background: linear-gradient(to left, #fff 35%, rgba(255, 255, 255, 0));
  }
  .oneroyal-home-article--cfd-expiration-dates .oneroyal-cfd-disclaimers {
    margin-top: 28px;
    font-size: 14px;
  }
}

.oneroyal-home-article--abuse-warnings .oneroyal-abuse-hero {
  margin-top: 40px;
  min-height: clamp(260px, 38vw, 420px);
  border-radius: 20px;
  overflow: hidden;
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-hero-overlay {
  max-width: 650px;
  text-align: center;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-hero-overlay {
    padding: 40px;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-hero-title {
  color: #fff;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-hero-title {
    font-size: 38px;
    line-height: 120%;
    margin-bottom: 16px;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-hero-subtitle {
  color: #fff;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-hero-subtitle {
    font-size: 18px;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content-section {
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content {
  max-width: 980px;
  color: #111827;
  font-size: 16px;
  line-height: 1.75;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content h1,
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content h2,
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content h3,
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content h4 {
  margin: 28px 0 14px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.2;
  color: #020617;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content h1 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content h3,
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content h4 {
  font-size: clamp(1.12rem, 1.5vw, 1.3rem);
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content p {
  margin-bottom: 14px;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content ul {
  margin: 12px 0 20px;
  padding-left: 0;
  list-style: none;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content ul > li {
  position: relative;
  margin: 10px 0;
  padding-left: 1.75rem;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content ul > li::before {
  content: "X";
  position: absolute;
  left: 0;
  top: 0.16em;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff5f5 0%, #ffeaea 100%);
  border: 1px solid #fecaca;
  box-shadow: 0 1px 2px rgba(153, 27, 27, 0.08);
  color: #991b1b;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2rem;
  text-align: center;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content ul ul {
  margin: 8px 0 4px;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content ul ul > li::before {
  width: 1.05rem;
  height: 1.05rem;
  font-size: 0.56rem;
  line-height: 1.05rem;
  border-color: #fca5a5;
  box-shadow: 0 1px 2px rgba(153, 27, 27, 0.08);
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content ol {
  margin: 10px 0 18px;
  padding-left: 1.5em;
  list-style: decimal;
  list-style-position: outside;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content ol li {
  margin: 8px 0;
  padding-left: 0.35em;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content ol li::marker {
  color: #7d01fc;
  font-weight: 600;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content a {
  color: #7d01fc;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-content strong {
  color: #000;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-block {
  margin: auto;
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  max-width: 1200px;
  display: flex;
  gap: 70px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-block {
    padding: 20px 0 0;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-media {
  flex: 0 0 50%;
  max-width: 50%;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-media img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-media {
    display: none;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-text {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-text {
    width: 100%;
    max-width: 100%;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-title {
  margin: 0 0 16px 0;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 36px;
  line-height: 150%;
  color: #000;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-title {
    line-height: 120%;
    text-align: center;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-description {
  color: #000;
  font-size: 18px;
  line-height: 150%;
  margin: 0;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-description {
    text-align: center;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify {
  margin: clamp(3.5rem, 6vw, 5.5rem) auto 0;
  padding: 0 0 clamp(3rem, 5vw, 4.5rem);
  max-width: 1200px;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__title {
  margin: 0 0 40px;
  text-align: center;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: #020617;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__title {
    font-size: 28px;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__col {
    align-items: center;
    text-align: center;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 12px;
  background-color: #f3f4f6;
  color: #374151;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__icon {
  display: block;
  width: 24px;
  height: 24px;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__heading {
  margin: 0 0 10px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: #020617;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #6b7280;
}
@media (max-width: 1024px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud {
  margin: clamp(3rem, 5.5vw, 4.75rem) auto 0;
  padding: 0 0 clamp(2.75rem, 4.5vw, 4rem);
  max-width: 1200px;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__title {
  margin: 0 0 40px;
  text-align: center;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: #020617;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__title {
    font-size: 28px;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 48px);
  align-items: start;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__col {
    align-items: center;
    text-align: center;
  }
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 12px;
  background-color: #f3f4f6;
  color: #374151;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__icon {
  display: block;
  width: 24px;
  height: 24px;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__heading {
  margin: 0 0 10px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: #020617;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #6b7280;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__mailto {
  color: #c9a227;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__mailto:hover,
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__mailto:focus {
  color: #a88420;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites {
  margin: clamp(2.75rem, 5vw, 4.25rem) auto 0;
  padding: 0 0 clamp(3rem, 5vw, 4.5rem);
  max-width: 1200px;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: start;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__copy {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  text-align: left;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__content {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__title {
  margin: 0 0 18px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: #020617;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__text {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__text:last-child {
  margin-bottom: 0;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__intro {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #020617;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__content .oneroyal-abuse-content {
  max-width: none;
  color: #111827;
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__content .oneroyal-abuse-content ul {
  margin-top: 0;
  margin-bottom: 0;
  column-count: 3;
  column-gap: clamp(18px, 2.4vw, 32px);
}
.oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__content .oneroyal-abuse-content ul > li {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
@media (max-width: 900px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-block {
    flex-direction: column;
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-content {
    font-size: 15px;
    line-height: 1.7;
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-media,
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-info-text {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2.25rem, 4vw, 3rem);
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__title {
    margin-bottom: 28px;
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-identify__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud {
    margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
    padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__title {
    margin-bottom: 28px;
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2.25rem, 4vw, 3rem);
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__content {
    border-radius: 12px;
    padding: 20px;
  }
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__content .oneroyal-abuse-content ul {
    column-count: 2;
    column-gap: 20px;
  }
}
@media (max-width: 620px) {
  .oneroyal-home-article--abuse-warnings .oneroyal-abuse-fraud-sites__content .oneroyal-abuse-content ul {
    column-count: 1;
  }
}

.oneroyal-home-article--careers-board .oneroyal-careers-content-section {
  margin-top: 34px;
}
.oneroyal-home-article--careers-board .oneroyal-careers-hero {
  margin-top: 40px;
  min-height: clamp(260px, 38vw, 420px);
  border-radius: 20px;
  overflow: hidden;
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.oneroyal-home-article--careers-board .oneroyal-careers-hero__overlay {
  position: relative;
  z-index: 1;
  max-width: 768px;
  padding: 40px 24px;
}
@media (min-width: 768px) {
  .oneroyal-home-article--careers-board .oneroyal-careers-hero__overlay {
    padding: 56px 40px;
  }
}
.oneroyal-home-article--careers-board .oneroyal-careers-hero__title {
  margin: 0 0 24px;
  color: #fff;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3.125rem);
  font-weight: 600;
  line-height: 1.2;
}
.oneroyal-home-article--careers-board .oneroyal-careers-hero__subtitle {
  margin: 0 auto;
  max-width: 590px;
  color: #e5e7eb;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.5;
}
.oneroyal-home-article--careers-board .oneroyal-careers-main {
  width: 100%;
}
.oneroyal-home-article--careers-board .oneroyal-careers-intro {
  max-width: 768px;
  margin: 0 auto 40px;
  text-align: center;
}
.oneroyal-home-article--careers-board .oneroyal-careers-intro__title {
  margin: 0 0 16px;
  color: #111827;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
}
.oneroyal-home-article--careers-board .oneroyal-careers-intro__description {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}
.oneroyal-home-article--careers-board .oneroyal-careers-intro__description p {
  margin: 0 0 12px;
}
.oneroyal-home-article--careers-board .oneroyal-careers-intro__description p:last-child {
  margin-bottom: 0;
}
.oneroyal-home-article--careers-board .oneroyal-careers-page-content {
  max-width: 768px;
  margin: 0 auto 32px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}
.oneroyal-home-article--careers-board .oneroyal-careers-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 768px;
  margin: 0 auto 48px;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__title {
  margin: 0;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__title a {
  color: #111827;
  text-decoration: none;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__title a:hover, .oneroyal-home-article--careers-board .oneroyal-careers-card__title a:focus {
  color: #7d01fc;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__department {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 2px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background-color: #f9fafb;
  color: #374151;
  font-size: 14px;
  line-height: 1.4;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__description {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__description p {
  margin: 0;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 15px;
  line-height: 1.4;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__detail-icon {
  display: inline-flex;
  color: #fcc001;
  flex-shrink: 0;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #bb6b02;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.oneroyal-home-article--careers-board .oneroyal-careers-card__apply:hover, .oneroyal-home-article--careers-board .oneroyal-careers-card__apply:focus {
  border-color: #fcc001;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  color: #bb6b02;
}
.oneroyal-home-article--careers-board .oneroyal-careers-bamboohr {
  max-width: 768px;
  margin: 0 auto;
  padding-top: 8px;
}
.oneroyal-home-article--careers-board #BambooHR {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.oneroyal-home-article--careers-board .BambooHR-ATS-board h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  border-bottom: 2px solid #fcc001 !important;
  padding-bottom: 10px !important;
  margin-bottom: 20px !important;
}
.oneroyal-home-article--careers-board .BambooHR-ATS-Department-Header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fcc001;
  margin-bottom: 6px;
  padding: 0;
}
.oneroyal-home-article--careers-board .BambooHR-ATS-Jobs-List {
  padding: 0 !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
.oneroyal-home-article--careers-board .BambooHR-ATS-Jobs-Item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 14px 20px !important;
  margin-bottom: 10px !important;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.oneroyal-home-article--careers-board .BambooHR-ATS-Jobs-Item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #fcc001;
}
.oneroyal-home-article--careers-board .BambooHR-ATS-board a {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
  line-height: 1.4em !important;
  transition: color 0.2s;
}
.oneroyal-home-article--careers-board .BambooHR-ATS-board a:hover {
  color: #fcc001 !important;
}
.oneroyal-home-article--careers-board .BambooHR-ATS-Location {
  float: none !important;
  padding-top: 0 !important;
  font-size: 12px !important;
  color: #666 !important;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 3px 10px !important;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}
.oneroyal-home-article--careers-board .BambooHR-ATS-Department-Item {
  margin-bottom: 24px !important;
}
.oneroyal-home-article--careers-board #BambooHR-Footer {
  display: none;
}
.oneroyal-home-article--careers-board #BambooHR > div:last-child {
  display: none;
}
@media (max-width: 768px) {
  .oneroyal-home-article--careers-board .oneroyal-careers-hero {
    margin-top: 24px;
    min-height: 240px;
  }
  .oneroyal-home-article--careers-board .oneroyal-careers-card {
    padding: 20px 16px;
  }
  .oneroyal-home-article--careers-board .BambooHR-ATS-Jobs-Item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px;
  }
  .oneroyal-home-article--careers-board .BambooHR-ATS-Location {
    margin-left: 0 !important;
  }
}

.oneroyal-home-news-layout.oneroyal-home-news-layout--calculator-page {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.oneroyal-home-article--calculator {
  /* Embedded calculator form — matches currency converter reference */
  /*
   * Currency converter: reference layout = 2 cols (Amount | Currency), hints under each,
   * full-width result row. Styling = clean white panel + OneRoyal purple on focus/icon only.
   */
  /*
   * Margin calculator: 3-col row (account, pair, conversion price), 2-col (leverage, size), result.
   */
  /*
   * Pip calculator: 3-col row (account, trade size, pair), result.
   */
  /*
   * Profit calculator: account / pair / size, trade side radios, prices + days, swaps, result.
   */
}
.oneroyal-home-article--calculator .oneroyal-calculator-hero {
  margin: auto;
  padding: 70px 0;
  display: flex;
  gap: 70px;
  align-items: center;
  justify-content: space-between;
}
.oneroyal-home-article--calculator .oneroyal-calculator-hero-content {
  width: 50%;
  max-width: 50%;
}
.oneroyal-home-article--calculator .oneroyal-calculator-hero-title {
  margin: 0 0 16px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.oneroyal-home-article--calculator .oneroyal-calculator-hero-subtitle {
  color: #4b5563;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}
.oneroyal-home-article--calculator .oneroyal-calculator-hero-media {
  flex: 0 0 50%;
  max-width: 50%;
}
.oneroyal-home-article--calculator .oneroyal-calculator-hero-media img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.oneroyal-home-article--calculator .oneroyal-market-content-section {
  margin-top: 34px;
}
.oneroyal-home-article--calculator .oneroyal-acf-page-intro {
  margin-bottom: 28px;
  max-width: 900px;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}
.oneroyal-home-article--calculator .oneroyal-acf-page-intro p {
  margin: 0 0 12px;
}
.oneroyal-home-article--calculator .oneroyal-acf-page-intro p:last-child {
  margin-bottom: 0;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-wrap {
  margin-bottom: 40px;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-header {
  margin-bottom: 24px;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-title {
  margin: 0 0 16px;
  font-family: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-subtitle {
  margin: 0 0 36px;
  font-family: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: #666;
}
.oneroyal-home-article--calculator .oneroyal-calculator-split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 48px;
  align-items: start;
}
.oneroyal-home-article--calculator .oneroyal-calculator-split--single {
  grid-template-columns: minmax(0, 1fr);
}
.oneroyal-home-article--calculator .oneroyal-calculator-split__main {
  min-width: 0;
}
.oneroyal-home-article--calculator .oneroyal-calculator-split__aside {
  min-width: 0;
}
.oneroyal-home-article--calculator .oneroyal-calculator-info-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.oneroyal-home-article--calculator .oneroyal-calculator-info-box__icon {
  display: flex;
  align-items: center;
  color: #666;
}
.oneroyal-home-article--calculator .oneroyal-calculator-info-box__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #666;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-body {
  margin-top: 0;
  font-family: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  /* Amount row: number + currency in one bordered control */
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-body label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-body input[type=text],
.oneroyal-home-article--calculator .oneroyal-calculator-script-body input[type=number],
.oneroyal-home-article--calculator .oneroyal-calculator-script-body input[type=tel] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  box-shadow: none;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-body select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 36px 12px 14px;
  font-size: 16px;
  font-family: inherit;
  color: #1a1a1a;
  background-color: #fff;
  box-shadow: none;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-body small,
.oneroyal-home-article--calculator .oneroyal-calculator-script-body .help,
.oneroyal-home-article--calculator .oneroyal-calculator-script-body .hint,
.oneroyal-home-article--calculator .oneroyal-calculator-script-body .field-hint {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  font-weight: 400;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-body div:has(> input[type=text]):has(> select),
.oneroyal-home-article--calculator .oneroyal-calculator-script-body div:has(> input[type=number]):has(> select) {
  display: flex;
  align-items: stretch;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-body div:has(> input[type=text]):has(> select) input[type=text],
.oneroyal-home-article--calculator .oneroyal-calculator-script-body div:has(> input[type=text]):has(> select) input[type=number],
.oneroyal-home-article--calculator .oneroyal-calculator-script-body div:has(> input[type=number]):has(> select) input[type=text],
.oneroyal-home-article--calculator .oneroyal-calculator-script-body div:has(> input[type=number]):has(> select) input[type=number] {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.oneroyal-home-article--calculator .oneroyal-calculator-script-body div:has(> input[type=text]):has(> select) select,
.oneroyal-home-article--calculator .oneroyal-calculator-script-body div:has(> input[type=number]):has(> select) select {
  flex: 0 0 auto;
  min-width: 5.5rem;
  width: auto;
  border: none;
  border-left: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-split__main {
  position: relative;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-info-box {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-info-box__icon {
  color: #7d01fc;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-info-box__text {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  /*
   * Embed: .calc-row with .calc-field (amount input) + .calc-field (fromCurrency select)
   */
  /* Target currency: one full-width select in a row */
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .currency-converter-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  align-items: start;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .currency-converter-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body label {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #374151;
  margin: 0 0 8px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=text],
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=number],
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=tel] {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=text]::placeholder,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=number]::placeholder,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=tel]::placeholder {
  color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=text]:hover,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=number]:hover,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=tel]:hover {
  border-color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=text]:focus,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=number]:focus,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body input[type=tel]:focus {
  outline: none;
  border-color: #7d01fc;
  box-shadow: 0 0 0 3px rgba(125, 1, 252, 0.15);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 38px 12px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body select:hover {
  border-color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body select:focus {
  outline: none;
  border-color: #7d01fc;
  box-shadow: 0 0 0 3px rgba(125, 1, 252, 0.15);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select),
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select) {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select):focus-within,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select):focus-within {
  border-color: #7d01fc;
  box-shadow: 0 0 0 3px rgba(125, 1, 252, 0.15);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select) .calc-field,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select) .calc-field {
  margin: 0;
  padding: 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select) .calc-field:first-child,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select) .calc-field:first-child {
  flex: 1 1 auto;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select) .calc-field:last-child,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select) .calc-field:last-child {
  flex: 0 0 auto;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select) input[type=text],
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select) input[type=number],
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select) input[type=text],
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select) input[type=number] {
  width: 100%;
  min-width: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select) input[type=text]:focus,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select) input[type=number]:focus,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select) input[type=text]:focus,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select) input[type=number]:focus {
  outline: none;
  box-shadow: none;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select) select,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select) select {
  min-width: 5.75rem;
  width: auto;
  max-width: 100%;
  border: none;
  border-left: 1px solid #e5e7eb;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding-right: 34px;
  background-position: right 10px center;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=number]):has(> .calc-field select) select:focus,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field input[type=text]):has(> .calc-field select) select:focus {
  outline: none;
  box-shadow: none;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field.full-width:only-child) {
  display: block;
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field.full-width:only-child):focus-within {
  border-color: #7d01fc;
  box-shadow: 0 0 0 3px rgba(125, 1, 252, 0.15);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field.full-width:only-child) .calc-field {
  margin: 0;
  padding: 0;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field.full-width:only-child) select {
  width: 100%;
  max-width: 100%;
  border: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-row:has(> .calc-field.full-width:only-child) select:focus {
  outline: none;
  box-shadow: none;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .instructions,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body small,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .help,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .hint,
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .field-hint {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
  font-weight: 400;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .calc-field.result {
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #e5e7eb;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .result-box {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em 0.5em;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .result-label {
  margin: 0;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .result-value {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #7d01fc;
  letter-spacing: -0.02em;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .currency-converter.loading .result-value {
  opacity: 0.65;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .error-message {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fcd34d;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-split__main {
  position: relative;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-info-box {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-info-box__icon {
  color: #7d01fc;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-info-box__text {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .calc-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .calc-row--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .calc-row--2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .calc-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  margin: 0;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .calc-field.result {
  margin-top: 4px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body label {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #374151;
  margin: 0 0 8px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body input[type=number] {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body input[type=number]::placeholder {
  color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body input[type=number]:hover:not(:read-only) {
  border-color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body input[type=number]:focus:not(:read-only) {
  outline: none;
  border-color: #7d01fc;
  box-shadow: 0 0 0 3px rgba(125, 1, 252, 0.15);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body input[type=number]:read-only {
  background: #f9fafb;
  color: #6b7280;
  cursor: default;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 38px 12px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body select:hover {
  border-color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body select:focus {
  outline: none;
  border-color: #7d01fc;
  box-shadow: 0 0 0 3px rgba(125, 1, 252, 0.15);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .result-box {
  margin-top: 8px;
  padding: 20px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(125, 1, 252, 0.06) 0%, rgba(125, 1, 252, 0.02) 100%);
  border: 1px solid rgba(125, 1, 252, 0.12);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .result-label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .result-value {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #7d01fc;
  letter-spacing: -0.02em;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .margin-calculator.loading .result-value {
  opacity: 0.65;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .error-message {
  display: none;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fcd34d;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-split__main {
  position: relative;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-info-box {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-info-box__icon {
  color: #7d01fc;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-info-box__text {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body .calc-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body .calc-row--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body .calc-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  margin: 0;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body .calc-field.result {
  margin-top: 4px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body label {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #374151;
  margin: 0 0 8px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body input[type=number] {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body input[type=number]::placeholder {
  color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body input[type=number]:hover {
  border-color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body input[type=number]:focus {
  outline: none;
  border-color: #7d01fc;
  box-shadow: 0 0 0 3px rgba(125, 1, 252, 0.15);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 38px 12px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body select:hover {
  border-color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body select:focus {
  outline: none;
  border-color: #7d01fc;
  box-shadow: 0 0 0 3px rgba(125, 1, 252, 0.15);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body .result-box {
  margin-top: 8px;
  padding: 20px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(125, 1, 252, 0.06) 0%, rgba(125, 1, 252, 0.02) 100%);
  border: 1px solid rgba(125, 1, 252, 0.12);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body .result-label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body .result-value {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #7d01fc;
  letter-spacing: -0.02em;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body .pip-calculator.loading .result-value {
  opacity: 0.65;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body .error-message {
  display: none;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fcd34d;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-split__main {
  position: relative;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-info-box {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-info-box__icon {
  color: #7d01fc;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-info-box__text {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-row--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-row--2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-row--radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 4px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .trade-direction {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .trade-direction__label {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #374151;
  margin: 0 0 4px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  margin: 0;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-field--radio {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: auto;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-field--radio input[type=radio] {
  width: auto;
  min-width: 1rem;
  margin: 0;
  accent-color: #7d01fc;
  cursor: pointer;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-field--radio label {
  margin: 0;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-field.result {
  margin-top: 4px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body label {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #374151;
  margin: 0 0 8px;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body input[type=number] {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body input[type=number]::placeholder {
  color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body input[type=number]:hover:not(:read-only) {
  border-color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body input[type=number]:focus:not(:read-only) {
  outline: none;
  border-color: #7d01fc;
  box-shadow: 0 0 0 3px rgba(125, 1, 252, 0.15);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body input[type=number]:read-only {
  background: #f9fafb;
  color: #6b7280;
  cursor: default;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 38px 12px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body select:hover {
  border-color: #9ca3af;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body select:focus {
  outline: none;
  border-color: #7d01fc;
  box-shadow: 0 0 0 3px rgba(125, 1, 252, 0.15);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .result-box {
  margin-top: 8px;
  padding: 20px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(125, 1, 252, 0.06) 0%, rgba(125, 1, 252, 0.02) 100%);
  border: 1px solid rgba(125, 1, 252, 0.12);
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .result-label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .result-value {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #7d01fc;
  letter-spacing: -0.02em;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .profit-calculator.loading .result-value {
  opacity: 0.65;
}
.oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .error-message {
  display: none;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fcd34d;
}
@media (max-width: 900px) {
  .oneroyal-home-article--calculator .oneroyal-calculator-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .oneroyal-home-article--calculator.oneroyal-home-article--calculator-currency-converter .oneroyal-calculator-script-body .currency-converter-columns {
    grid-template-columns: 1fr;
  }
  .oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .calc-row--3, .oneroyal-home-article--calculator.oneroyal-home-article--calculator-margin .oneroyal-calculator-script-body .calc-row--2 {
    grid-template-columns: 1fr;
  }
  .oneroyal-home-article--calculator.oneroyal-home-article--calculator-pip .oneroyal-calculator-script-body .calc-row--3 {
    grid-template-columns: 1fr;
  }
  .oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-row--3, .oneroyal-home-article--calculator.oneroyal-home-article--calculator-profit .oneroyal-calculator-script-body .calc-row--2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .oneroyal-home-article--calculator .oneroyal-calculator-hero {
    flex-direction: column;
    padding: 42px 0;
    gap: 24px;
  }
  .oneroyal-home-article--calculator .oneroyal-calculator-hero-content,
  .oneroyal-home-article--calculator .oneroyal-calculator-hero-media {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .oneroyal-home-article--calculator .oneroyal-calculator-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .oneroyal-home-article--calculator .oneroyal-calculator-hero-subtitle {
    font-size: 1rem;
  }
}

.oneroyal-single-article {
  padding-top: 70px;
  padding-bottom: 0;
}

.oneroyal-single-section {
  padding-top: 0;
  padding-bottom: 40px;
}

.oneroyal-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 40px;
  align-items: start;
}
.oneroyal-single-layout > :not(.oneroyal-single-sidebar) {
  min-width: 0;
}

.oneroyal-single-main {
  min-width: 0;
}

.oneroyal-single-category {
  margin: 0 0 14px;
  max-width: 1000px;
}

.oneroyal-single-category-link {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 7px 16px;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.oneroyal-single-category-link:hover, .oneroyal-single-category-link:focus {
  color: #7d01fc;
  border-color: #7d01fc;
  background-color: rgba(125, 1, 252, 0.06);
}
.oneroyal-single-category-link:focus-visible {
  outline: 2px solid #7d01fc;
  outline-offset: 3px;
}

.oneroyal-single-title {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  max-width: 1000px;
  font-size: 50px;
  font-weight: 600;
  line-height: 140%;
  color: #000;
  margin: 0 0 40px;
}

.oneroyal-single-featured-image {
  width: 100%;
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
}
.oneroyal-single-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  max-height: 570px;
  object-fit: cover;
  object-position: center;
}

.oneroyal-single-content {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 150%;
  color: #000;
}
.oneroyal-single-content p {
  margin: 0 0 40px;
}
.oneroyal-single-content b {
  font-size: 25px;
}
.oneroyal-single-content h2 {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: #000;
  margin: 2em 0 0.75em;
  line-height: 1.25;
}
.oneroyal-single-content h3 {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: #000;
  margin: 1.75em 0 0.6em;
  line-height: 1.3;
}
.oneroyal-single-content ul,
.oneroyal-single-content ol {
  padding-left: 1.5em;
  margin: 0 0 1.4em;
}
.oneroyal-single-content li {
  margin-bottom: 0.4em;
}
.oneroyal-single-content a {
  color: #7d01fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.oneroyal-single-content a:hover, .oneroyal-single-content a:focus {
  color: #5a01b8;
}
.oneroyal-single-content strong,
.oneroyal-single-content b {
  font-weight: 700;
}
.oneroyal-single-content em,
.oneroyal-single-content i {
  font-style: italic;
}
.oneroyal-single-content blockquote {
  border-left: 3px solid #7d01fc;
  margin: 1.5em 0;
  padding: 0.75em 0 0.75em 1.25em;
  color: #4b5563;
  font-style: italic;
}
.oneroyal-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1em 0;
}
.oneroyal-single-content figure {
  margin: 1.5em 0;
}
.oneroyal-single-content figcaption {
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
  text-align: center;
}
.oneroyal-single-content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2em 0;
}

.oneroyal-single-author-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 28px;
}

.oneroyal-single-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.oneroyal-single-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.oneroyal-single-author-label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.oneroyal-single-author-name {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  line-height: 1.3;
}
.oneroyal-single-author-name:hover, .oneroyal-single-author-name:focus {
  color: #7d01fc;
}
.oneroyal-single-author-name:visited {
  color: #000;
}

.oneroyal-related-posts {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #000;
}

.oneroyal-related-title {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #000;
  margin: 0 0 28px;
  line-height: 1.15;
}

.oneroyal-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.oneroyal-related-card {
  min-width: 0;
}

.oneroyal-related-thumb-link {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
}

.oneroyal-related-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 14px;
  background: #e5e7eb;
}
.oneroyal-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.oneroyal-related-thumb-link:hover .oneroyal-related-thumb img,
.oneroyal-related-thumb-link:focus .oneroyal-related-thumb img {
  transform: scale(1.04);
}

.oneroyal-related-post-title-link {
  display: block;
  margin-top: 14px;
  text-decoration: none;
  color: #000;
}
.oneroyal-related-post-title-link:link, .oneroyal-related-post-title-link:visited {
  color: #000;
}
.oneroyal-related-post-title-link:hover .oneroyal-related-post-title, .oneroyal-related-post-title-link:focus .oneroyal-related-post-title {
  color: #7d01fc;
}

.oneroyal-related-post-title {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin: 0;
  transition: color 0.25s ease;
}

.oneroyal-related-post-excerpt {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #6b7280;
  margin: 8px 0 0;
}

.oneroyal-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 370px;
  max-width: 100%;
  position: sticky;
  top: 24px;
}
.oneroyal-single-sidebar .widget {
  border-radius: 16px;
  overflow: hidden;
}

.single .oneroyal-home-news-sidebar {
  padding-top: 0;
}

@media (max-width: 1100px) {
  .oneroyal-single-layout {
    grid-template-columns: 1fr;
  }
  .oneroyal-single-sidebar {
    position: static;
    display: none;
  }
}
@media (max-width: 768px) {
  .oneroyal-related-grid {
    grid-template-columns: 1fr;
  }
  .oneroyal-single-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}
@media (max-width: 560px) {
  .oneroyal-related-grid {
    grid-template-columns: 1fr;
  }
}
.oneroyal-single-content .margin-section {
  margin: 2.5em 0;
  padding: 0;
  border: none;
  border-radius: 0;
}
.oneroyal-single-content .margin-section > h2:first-child {
  margin-top: 0;
}
.oneroyal-single-content .tab {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 28px;
}
.oneroyal-single-content .tab .tablinks {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid #000;
  border-radius: 10px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.oneroyal-single-content .tab .tablinks:hover, .oneroyal-single-content .tab .tablinks:focus {
  border-color: #7d01fc;
  color: #7d01fc;
}
.oneroyal-single-content .tab .tablinks:focus-visible {
  outline: 2px solid #7d01fc;
  outline-offset: 2px;
}
.oneroyal-single-content .tab .tablinks.active {
  background: #7d01fc;
  border-color: #000;
  color: #fff;
}
.oneroyal-single-content .tab .tablinks.active:hover, .oneroyal-single-content .tab .tablinks.active:focus {
  background: #6b01d6;
  border-color: #000;
  color: #fff;
}
.oneroyal-single-content .tabcontent {
  display: none;
}
.oneroyal-single-content .tabcontent.active {
  display: block;
}
.oneroyal-single-content .tabcontent > strong:first-child {
  display: block;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: #000;
  margin: 0 0 12px;
  line-height: 1.3;
}
.oneroyal-single-content .tabcontent em {
  display: block;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #374151;
  font-style: normal;
}
.oneroyal-single-content .table_component {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25em 0 0;
  border: 1px solid #e8defe;
  border-radius: 14px;
  background: #fff;
}
.oneroyal-single-content .table_component table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #6b7280;
}
.oneroyal-single-content .table_component caption {
  padding: 14px 14px 0;
  text-align: left;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #111827;
}
.oneroyal-single-content .table_component thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 12px 14px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a1a8c;
  white-space: nowrap;
  background: linear-gradient(180deg, #f7f2ff 0%, #efe6ff 100%);
  border-bottom: 1px solid #e2d2ff;
  box-shadow: inset 0 -1px 0 #e2d2ff;
}
.oneroyal-single-content .table_component tbody td {
  padding: 13px 14px;
  border-bottom: 1px solid #edf1f5;
  vertical-align: middle;
}
.oneroyal-single-content .table_component tbody tr:nth-child(even) {
  background: #fcfcfd;
}
.oneroyal-single-content .table_component tbody tr:hover {
  background: #f8fafc;
}
.oneroyal-single-content .table_component tbody tr:last-child td {
  border-bottom: 1px solid #edf1f5;
}
.oneroyal-single-content .table_component thead th:first-child,
.oneroyal-single-content .table_component tbody td:first-child {
  color: #111827;
  font-weight: 600;
}
.oneroyal-single-content .table_component tbody td b,
.oneroyal-single-content .table_component tbody td strong {
  font-size: inherit;
  font-weight: 700;
  color: #111827;
}
.oneroyal-single-content .table_component thead th:nth-child(n+2),
.oneroyal-single-content .table_component tbody td:nth-child(n+2) {
  font-variant-numeric: tabular-nums;
}
@media (max-width: 820px) {
  .oneroyal-single-content .table_component table {
    min-width: 680px;
  }
  .oneroyal-single-content .tab .tablinks {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }
}

.oneroyal-single-main:has(.or-academy-article) .oneroyal-single-featured-image:has(.logo-fallback-thumbnail) {
  display: none;
}

.oneroyal-single-content:has(.blog-author) + .oneroyal-single-author-block {
  display: none;
}

.oneroyal-single-content .or-academy-article > h1:first-child {
  display: none;
}
.oneroyal-single-content .or-academy-article .or-section-lead {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: #374151;
  margin: 0 0 28px;
  max-width: 920px;
}
.oneroyal-single-content .or-academy-article > hr {
  display: none;
}
.oneroyal-single-content .or-academy-article .or-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 36px;
}
.oneroyal-single-content .or-academy-article .or-btns br {
  display: none;
}
.oneroyal-single-content .or-academy-article .or-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid #000;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-single-content .or-academy-article .or-btn:hover, .oneroyal-single-content .or-academy-article .or-btn:focus {
  border-color: var(--color-purple, #7d01fc);
  color: var(--color-purple, #7d01fc);
  background: rgba(125, 1, 252, 0.04);
}
.oneroyal-single-content .or-academy-article .or-btn:focus-visible {
  outline: 2px solid var(--color-purple, #7d01fc);
  outline-offset: 2px;
}
.oneroyal-single-content .or-academy-article .or-btn--primary {
  background: var(--color-purple, #7d01fc);
  border-color: #000;
  color: #fff;
}
.oneroyal-single-content .or-academy-article .or-btn--primary:hover, .oneroyal-single-content .or-academy-article .or-btn--primary:focus {
  background: #6b01d6;
  border-color: #000;
  color: #fff;
  box-shadow: 0 8px 20px rgba(125, 1, 252, 0.28);
}
.oneroyal-single-content .or-academy-article .or-toc {
  margin: 0 0 40px;
  padding: 24px 28px;
  border: 1px solid #e8defe;
  border-inline-start: 4px solid var(--color-purple, #7d01fc);
  border-radius: 14px;
  background: linear-gradient(180deg, #f7f2ff 0%, #fff 100%);
}
.oneroyal-single-content .or-academy-article .or-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.oneroyal-single-content .or-academy-article .or-toc li {
  margin: 0;
  padding: 0;
}
.oneroyal-single-content .or-academy-article .or-toc a {
  display: inline-block;
  padding: 5px 0;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  text-underline-offset: 3px;
}
.oneroyal-single-content .or-academy-article .or-toc a:hover, .oneroyal-single-content .or-academy-article .or-toc a:focus {
  color: var(--color-purple, #7d01fc);
  text-decoration: underline;
}
.oneroyal-single-content .or-academy-article .or-toc > ul > li > ul {
  margin-top: 4px;
  padding-inline-start: 18px;
}
.oneroyal-single-content .or-academy-article .or-toc > ul > li > ul > li > ul {
  padding-inline-start: 18px;
}
.oneroyal-single-content .or-academy-article .or-toc-title {
  margin: 0 0 14px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a1a8c;
}
.oneroyal-single-content .or-academy-article .solo-link {
  margin: 28px 0 36px;
  padding: 18px 22px;
  border-radius: 12px;
  background: #f7f2ff;
  border: 1px solid #e8defe;
  font-size: 18px;
  line-height: 1.5;
  color: #374151;
}
.oneroyal-single-content .or-academy-article .solo-link a {
  font-weight: 700;
  color: var(--color-purple, #7d01fc);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.oneroyal-single-content .or-academy-article .solo-link a:hover, .oneroyal-single-content .or-academy-article .solo-link a:focus {
  color: #5a01b8;
}
.oneroyal-single-content .or-academy-article h2.or-anchor {
  scroll-margin-top: 100px;
  padding-top: 8px;
  margin-top: 2.75em;
  margin-bottom: 0.85em;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
}
.oneroyal-single-content .or-academy-article h2.or-anchor:target {
  animation: or-anchor-highlight 1.2s ease;
}
.oneroyal-single-content .or-academy-article h3.or-anchor {
  scroll-margin-top: 100px;
  margin-top: 2em;
  margin-bottom: 0.65em;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
}
.oneroyal-single-content .or-academy-article h3.or-anchor:target {
  animation: or-anchor-highlight 1.2s ease;
}
.oneroyal-single-content .or-academy-article p strong:first-child {
  display: block;
  margin-top: 0.5em;
  font-size: inherit;
  font-weight: 700;
  color: #111827;
}
.oneroyal-single-content .or-academy-article .or-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 0;
  margin: 40px 0;
  border: 1px solid #e8defe;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(125, 1, 252, 0.08);
}
.oneroyal-single-content .or-academy-article .or-cta > div:empty {
  display: none;
}
.oneroyal-single-content .or-academy-article .or-cta > .or-cta-image {
  grid-column: 1;
  grid-row: 1;
}
.oneroyal-single-content .or-academy-article .or-cta > .or-cta-details {
  grid-column: 2;
  grid-row: 1;
}
.oneroyal-single-content .or-academy-article .or-cta-image {
  min-height: 220px;
  background: #1a1028;
}
.oneroyal-single-content .or-academy-article .or-cta-image .image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background-image: linear-gradient(90deg, rgba(26, 16, 40, 0.35) 0%, transparent 55%), url("../gold-cta-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.oneroyal-single-content .or-academy-article .or-cta-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(180deg, #fff 0%, #f7f2ff 100%);
}
.oneroyal-single-content .or-academy-article .or-cta-details h3 {
  margin: 0 0 12px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
}
.oneroyal-single-content .or-academy-article .or-cta-details > p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.55;
  color: #374151;
}
.oneroyal-single-content .or-academy-article .or-cta-details .or-btns {
  margin: 0;
}
.oneroyal-single-content .or-academy-article .blog-author {
  margin: 40px 0 36px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}
.oneroyal-single-content .or-academy-article .blog-author .or-blog-author-details {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.oneroyal-single-content .or-academy-article .blog-author .blog-author-image {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  border-radius: 50%;
  background-color: #f7f2ff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #e8defe;
}
.oneroyal-single-content .or-academy-article .blog-author .or-blog-author-name {
  margin: 0 0 4px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.oneroyal-single-content .or-academy-article .blog-author .or-blog-author-name a {
  color: #111827;
  text-decoration: none;
}
.oneroyal-single-content .or-academy-article .blog-author .or-blog-author-name a:hover, .oneroyal-single-content .or-academy-article .blog-author .or-blog-author-name a:focus {
  color: var(--color-purple, #7d01fc);
}
.oneroyal-single-content .or-academy-article .blog-author .or-blog-author-role {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-purple, #7d01fc);
}
.oneroyal-single-content .or-academy-article .blog-author .or-blog-author-description {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.55;
  color: #374151;
}
.oneroyal-single-content .or-academy-article .blog-author .or-blog-author-more {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.oneroyal-single-content .or-academy-article .blog-author .or-blog-author-more a {
  color: var(--color-purple, #7d01fc);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.oneroyal-single-content .or-academy-article .blog-author .or-blog-author-more a:hover, .oneroyal-single-content .or-academy-article .blog-author .or-blog-author-more a:focus {
  color: #5a01b8;
}
.oneroyal-single-content .or-academy-article h2#gold-trading-faqs.or-anchor {
  margin-bottom: 20px;
}
.oneroyal-single-content .or-academy-article .or-faq {
  margin: 0 0 40px;
}
.oneroyal-single-content .or-academy-article .or-faq details {
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.oneroyal-single-content .or-academy-article .or-faq details[open] {
  border-color: #e8defe;
  box-shadow: 0 4px 16px rgba(125, 1, 252, 0.08);
}
.oneroyal-single-content .or-academy-article .or-faq details[open] .or-faq-ico {
  transform: rotate(45deg);
  color: var(--color-purple, #7d01fc);
}
.oneroyal-single-content .or-academy-article .or-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}
.oneroyal-single-content .or-academy-article .or-faq summary::-webkit-details-marker {
  display: none;
}
.oneroyal-single-content .or-academy-article .or-faq summary br {
  display: none;
}
.oneroyal-single-content .or-academy-article .or-faq .or-faq-q {
  flex: 1;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #111827;
}
.oneroyal-single-content .or-academy-article .or-faq .or-faq-ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f7f2ff;
  color: #4a1a8c;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}
.oneroyal-single-content .or-academy-article .or-faq .or-faq-a {
  padding: 0 20px 18px;
}
.oneroyal-single-content .or-academy-article .or-faq .or-faq-a p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #374151;
}
.oneroyal-single-content .or-academy-article .or-sep {
  height: 1px;
  margin: 40px 0;
  background: linear-gradient(90deg, transparent, #e8defe 20%, #e8defe 80%, transparent);
}
.oneroyal-single-content .or-academy-article .or-gold-page-source {
  margin-bottom: 8px;
}
.oneroyal-single-content .or-academy-article .or-gold-page-source-title {
  margin: 0 0 20px;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #111827;
}
.oneroyal-single-content .or-academy-article .or-gold-page-source-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.oneroyal-single-content .or-academy-article .or-gold-page-source-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fcfcfd;
}
.oneroyal-single-content .or-academy-article .or-gold-page-source-item-span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-purple, #7d01fc);
  color: #fff;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.oneroyal-single-content .or-academy-article .or-gold-page-source-item-content p {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.45;
  color: #374151;
}
.oneroyal-single-content .or-academy-article .or-gold-page-source-item-content p:first-child {
  font-weight: 600;
  color: #111827;
}
.oneroyal-single-content .or-academy-article .or-gold-page-source-item-content p:last-child {
  margin-bottom: 0;
}
.oneroyal-single-content .or-academy-article .or-gold-page-source-item-content a {
  font-size: 14px;
  word-break: break-word;
}
.oneroyal-single-content .or-academy-article img.aligncenter {
  border-radius: 14px;
  margin: 1.5em auto;
}

@keyframes or-anchor-highlight {
  0% {
    background-color: rgba(125, 1, 252, 0.12);
  }
  100% {
    background-color: transparent;
  }
}
@media (max-width: 900px) {
  .oneroyal-single-content .or-academy-article .or-cta {
    grid-template-columns: 1fr;
  }
  .oneroyal-single-content .or-academy-article .or-cta-image .image {
    min-height: 180px;
  }
}
@media (max-width: 600px) {
  .oneroyal-single-content .or-academy-article .or-toc {
    padding: 18px 20px;
  }
  .oneroyal-single-content .or-academy-article .or-btn {
    width: 100%;
  }
  .oneroyal-single-content .or-academy-article .or-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .oneroyal-single-content .or-academy-article .or-cta-details {
    padding: 20px;
  }
  .oneroyal-single-content .or-academy-article .blog-author {
    padding: 18px;
  }
}
/* Search & category archive: title row full width; sidebar aligns with grid. */
.oneroyal-home-news-layout.oneroyal-home-news-layout--search > .oneroyal-search-page-header-wrap,
.oneroyal-home-news-layout.oneroyal-home-news-layout--search > .oneroyal-category-archive-header-wrap,
.oneroyal-home-news-layout.oneroyal-home-news-layout--category > .oneroyal-search-page-header-wrap,
.oneroyal-home-news-layout.oneroyal-home-news-layout--category > .oneroyal-category-archive-header-wrap {
  grid-column: 1/-1;
}
.oneroyal-home-news-layout.oneroyal-home-news-layout--search > .oneroyal-home-news-main,
.oneroyal-home-news-layout.oneroyal-home-news-layout--category > .oneroyal-home-news-main {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}
.oneroyal-home-news-layout.oneroyal-home-news-layout--search > .oneroyal-home-news-sidebar,
.oneroyal-home-news-layout.oneroyal-home-news-layout--category > .oneroyal-home-news-sidebar {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  padding-top: 0;
}

@media (max-width: 1100px) {
  .oneroyal-home-news-layout.oneroyal-home-news-layout--search > .oneroyal-search-page-header-wrap,
  .oneroyal-home-news-layout.oneroyal-home-news-layout--search > .oneroyal-category-archive-header-wrap,
  .oneroyal-home-news-layout.oneroyal-home-news-layout--category > .oneroyal-search-page-header-wrap,
  .oneroyal-home-news-layout.oneroyal-home-news-layout--category > .oneroyal-category-archive-header-wrap {
    grid-column: 1;
  }
  .oneroyal-home-news-layout.oneroyal-home-news-layout--search > .oneroyal-home-news-main,
  .oneroyal-home-news-layout.oneroyal-home-news-layout--category > .oneroyal-home-news-main {
    grid-row: auto;
  }
  .oneroyal-home-news-layout.oneroyal-home-news-layout--search > .oneroyal-home-news-sidebar,
  .oneroyal-home-news-layout.oneroyal-home-news-layout--category > .oneroyal-home-news-sidebar {
    grid-column: 1;
    grid-row: auto;
  }
}
.oneroyal-search-page-header {
  margin-bottom: 24px;
}

.oneroyal-search-page-title.oneroyal-home-news-title {
  margin-top: 0;
  margin-bottom: 0;
}

/* Category archive: page title, All + Category controls, current category heading */
.oneroyal-category-archive-header {
  margin-bottom: 0;
}

.oneroyal-category-archive-page-title.oneroyal-home-news-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.oneroyal-category-archive-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.oneroyal-category-filter-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 40px;
  border: 1px solid #000;
  border-radius: 10px;
  background: #7d01fc;
  color: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.oneroyal-category-filter-all:link, .oneroyal-category-filter-all:visited, .oneroyal-category-filter-all:hover, .oneroyal-category-filter-all:focus, .oneroyal-category-filter-all:active {
  background: #6b01d6;
  color: #fff;
}
.oneroyal-category-filter-all:focus-visible {
  outline: 2px solid #7d01fc;
  outline-offset: 2px;
}

.oneroyal-category-filter-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.oneroyal-category-filter-dropdown__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 46px;
  margin: 0;
  padding: 0 44px 0 16px;
  border: 1px solid #000;
  border-radius: 10px;
  background: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  cursor: pointer;
  box-sizing: border-box;
  white-space: nowrap;
}
.oneroyal-category-filter-dropdown__trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 14px;
  height: 10px;
  background: url("../icons/category-page-arrow-down.svg") center/contain no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.15s ease;
}
.oneroyal-category-filter-dropdown__trigger:focus-visible {
  outline: 2px solid #7d01fc;
  outline-offset: 2px;
}

.oneroyal-category-filter-dropdown.is-open .oneroyal-category-filter-dropdown__trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.oneroyal-category-filter-dropdown__label {
  display: block;
}

.oneroyal-category-filter-dropdown__menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  border: 1px solid #000;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  max-height: min(320px, 50vh);
  overflow-y: auto;
  box-sizing: border-box;
}

.oneroyal-category-filter-dropdown__item {
  margin: 0;
  padding: 0;
}

.oneroyal-category-filter-dropdown__option {
  display: block;
  padding: 10px 16px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}
.oneroyal-category-filter-dropdown__option:link, .oneroyal-category-filter-dropdown__option:visited {
  color: #000;
}
.oneroyal-category-filter-dropdown__option:hover, .oneroyal-category-filter-dropdown__option:focus-visible {
  background: #f5f5f5;
  color: #000;
  outline: none;
}
.oneroyal-category-filter-dropdown__option.is-selected {
  font-weight: 600;
  background: #f3e8ff;
  color: #000;
}

.oneroyal-category-archive-section-title {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  font-weight: 700;
  line-height: 120%;
  color: #000;
  margin: 0 0 8px;
}

@media (max-width: 600px) {
  .oneroyal-category-archive-filters {
    align-items: stretch;
  }
  .oneroyal-category-filter-all,
  .oneroyal-category-filter-dropdown,
  .oneroyal-category-filter-dropdown__trigger {
    width: 100%;
  }
}
.oneroyal-search-results-grid {
  margin-top: 0;
}

.oneroyal-search-page,
.oneroyal-category-archive-page {
  padding-top: 80px;
}
.oneroyal-search-page .oneroyal-company-news-title,
.oneroyal-category-archive-page .oneroyal-company-news-title {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-top: 20px;
  margin-bottom: 30px;
}
.oneroyal-search-page .oneroyal-company-news-excerpt,
.oneroyal-category-archive-page .oneroyal-company-news-excerpt {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0;
}

.oneroyal-search-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  /* Pipe separators between items (not before the first). */
  /* If dots is first child (unusual), no leading pipe */
}
.oneroyal-search-pagination .navigation.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oneroyal-search-pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1;
}
.oneroyal-search-pagination a.page-numbers,
.oneroyal-search-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 6px 14px;
  margin: 0;
  text-decoration: none;
  border-radius: 0;
  background: transparent;
  font-weight: 500;
  transition: color 0.15s ease;
}
.oneroyal-search-pagination a.page-numbers {
  color: #4b5563;
}
.oneroyal-search-pagination a.page-numbers:hover, .oneroyal-search-pagination a.page-numbers:focus {
  color: #7d01fc;
  background: transparent;
}
.oneroyal-search-pagination span.page-numbers.current {
  color: #7d01fc;
  font-weight: 600;
  background: transparent;
}
.oneroyal-search-pagination .nav-links > .page-numbers:not(:first-child) {
  border-left: 1px solid #e5e7eb;
}
.oneroyal-search-pagination span.page-numbers.dots {
  color: #9ca3af;
  background: transparent;
}
.oneroyal-search-pagination .nav-links > span.page-numbers.dots:first-child {
  padding-left: 0;
}

.oneroyal-search-no-results {
  margin-top: 0;
  width: 100%;
}
.oneroyal-search-no-results .page-content {
  margin: 0;
  padding: 0;
}
.oneroyal-search-no-results .page-content > p {
  margin: 0 0 20px;
  max-width: 42rem;
  color: #4b5563;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.oneroyal-search-no-results__title {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 120%;
  color: #000;
  margin: 0 0 12px;
}

.oneroyal-search-form {
  margin-top: 4px;
  max-width: 560px;
}

.oneroyal-search-form__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

.oneroyal-search-form__input-wrap {
  flex: 1 1 220px;
  min-width: 0;
}

.oneroyal-search-form__input {
  width: 100%;
  height: 46px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background-color: #f3f4f6;
  color: #111827;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  padding: 0 18px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.oneroyal-search-form__input::placeholder {
  color: #9ca3af;
}
.oneroyal-search-form__input:focus {
  outline: none;
  border-color: #9ca3af;
  background-color: #fff;
}

.oneroyal-search-form__submit {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 28px;
  border: 1px solid #000;
  border-radius: 10px;
  background: #7d01fc;
  color: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.oneroyal-search-form__submit:hover, .oneroyal-search-form__submit:focus {
  background: #6b01d6;
  color: #fff;
}
.oneroyal-search-form__submit:focus-visible {
  outline: 2px solid #7d01fc;
  outline-offset: 2px;
}

.oneroyal-home-article--404 .oneroyal-home-section {
  padding-top: 0;
}

.oneroyal-home-article--404 .oneroyal-home-news-layout {
  min-height: 100vh;
}

.oneroyal-home-article--404 .oneroyal-home-news-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(0.25rem, 3vh, 2rem);
}

@media (min-width: 1101px) {
  .oneroyal-home-article--404 .oneroyal-home-news-sidebar {
    padding-top: clamp(0.5rem, 2vw, 1.25rem);
    align-self: start;
  }
}
.oneroyal-404 {
  position: relative;
  width: 100%;
}

.oneroyal-404__inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.35rem, 3.5vw, 2.25rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.oneroyal-404__code {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0 0 0.35em;
  background: linear-gradient(135deg, #7d01fc 0%, #9b4dff 40%, #fcc001 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 40px rgba(125, 1, 252, 0.15);
}

.oneroyal-404__title {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin: 0 0 0.65em;
}

.oneroyal-404__lead {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  color: #475569;
  margin: 0 auto 1.75rem;
  max-width: 28rem;
}

.oneroyal-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.oneroyal-404__btn {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.oneroyal-404__btn:focus {
  outline: none;
}

.oneroyal-404__btn:focus-visible {
  outline: 3px solid rgba(125, 1, 252, 0.45);
  outline-offset: 3px;
}

.oneroyal-404__btn--primary {
  background: #7d01fc;
  color: #ffffff;
  border-color: #7d01fc;
}

.oneroyal-404__btn--primary:hover,
.oneroyal-404__btn--primary:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(125, 1, 252, 0.35);
  color: #ffffff;
}

.oneroyal-404__btn--primary:visited {
  color: #ffffff;
}

.oneroyal-404__btn--ghost {
  background: transparent;
  color: #1e293b;
  border-color: rgba(15, 23, 42, 0.2);
}

.oneroyal-404__btn--ghost:hover,
.oneroyal-404__btn--ghost:active {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(125, 1, 252, 0.35);
  color: #7d01fc;
  box-shadow: none;
}

@media (max-width: 600px) {
  .oneroyal-404__actions {
    flex-direction: column;
    width: 100%;
  }
  .oneroyal-404__btn {
    width: 100%;
    max-width: 280px;
  }
}
html[data-lang=ar] *,
html[data-lang=ar] *::before,
html[data-lang=ar] *::after {
  font-family: "Alexandria", sans-serif !important;
  line-height: 170%;
}

html[data-lang=fa] *,
html[data-lang=fa] *::before,
html[data-lang=fa] *::after {
  font-family: "Qs_Iranyekan", sans-serif !important;
  line-height: 170%;
}

html[dir=rtl] .oneroyal-home-hero-content {
  inset-inline-end: start;
}
html[dir=rtl] .oneroyal-home-hero-content .oneroyal-home-hero-title {
  max-width: 550px;
}

html[dir=rtl] .oneroyal-home-hero.oneroyal-home-hero--has-mob-bg,
html[dir=rtl] .oneroyal-home-hero.oneroyal-home-hero--has-desktop-bg {
  background-image: none;
}
html[dir=rtl] .oneroyal-home-hero.oneroyal-home-hero--has-mob-bg::before,
html[dir=rtl] .oneroyal-home-hero.oneroyal-home-hero--has-desktop-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--oneroyal-hero-bg-mob);
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);
  z-index: 0;
}

html[dir=rtl] .oneroyal-home-hero.oneroyal-home-hero--has-desktop-bg::before {
  background-image: var(--oneroyal-hero-bg);
}

@media (max-width: 960px) {
  html[dir=rtl] .oneroyal-home-hero::before {
    background-position: center bottom;
  }
}
html[dir=rtl] .oneroyal-company-news-view-all span[aria-hidden=true] {
  display: inline-block;
  transform: scaleX(-1);
}

body {
  color: #1f2937;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
