/* ============================================================
   OVEX — base.css
   ریست سبک، تایپوگرافی فارسی، RTL، فرم‌ها، اسکرول‌بار، یوتیلیتی‌ها
   ============================================================ */

/* ---------- ریست سبک ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ovex-header-h) + 16px);
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd,
ul, ol, pre {
  margin: 0;
}

ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
  border: 0;
}

button,
input,
select,
textarea,
optgroup {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

hr {
  border: 0;
  border-top: 1px solid var(--ovex-line);
  margin: 20px 0;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/* حذف انیمیشن برای کاربرانی که ترجیح می‌دهند حرکت کمتری ببینند */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- بدنه و تایپوگرافی فارسی ---------- */

html,
body {
  direction: rtl;
}

body {
  font-family: var(--ovex-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--ovex-ink);
  background: var(--ovex-bg);
  min-height: 100vh;
  overflow-x: hidden;
  text-align: right;
  font-feature-settings: "ss01" on, "ss02" on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* هنگام باز بودن کشو/مودال اسکرول بدنه قفل می‌شود */
body.ovex-locked {
  overflow: hidden;
  touch-action: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.55;
  color: var(--ovex-ink);
}

h1 { font-size: 26px; }
h2 { font-size: 22px; }
h3 { font-size: 19px; }
h4 { font-size: 17px; }
h5 { font-size: 15px; }
h6 { font-size: 14px; }

p {
  margin-block-end: 12px;
}

p:last-child {
  margin-block-end: 0;
}

small,
.ovex-small {
  font-size: 12px;
  color: var(--ovex-ink-3);
}

strong,
b {
  font-weight: 700;
}

/* اعداد فارسی نیازی به tabular ندارند، اما قیمت‌ها هم‌عرض بهتر است */
.ovex-num,
.ovex-price__now,
.ovex-price__old,
.ovex-deal__unit b {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" on;
}

blockquote {
  padding-inline-start: 14px;
  border-inline-start: 3px solid var(--ovex-primary);
  color: var(--ovex-ink-2);
  background: var(--ovex-primary-50);
  border-radius: var(--ovex-r-sm);
  padding-block: 10px;
  padding-inline-end: 12px;
  margin-block: 14px;
}

code,
kbd,
pre,
samp {
  font-family: "Fira Mono", "Consolas", "Courier New", monospace;
  font-size: 12.5px;
  direction: ltr;
  unicode-bidi: embed;
}

code {
  background: var(--ovex-ink-bg);
  padding: 2px 6px;
  border-radius: var(--ovex-r-sm);
}

pre {
  background: var(--ovex-ink-bg);
  padding: 12px 14px;
  border-radius: var(--ovex-r);
  overflow-x: auto;
  text-align: left;
}

mark {
  background: var(--ovex-primary-100);
  color: var(--ovex-primary-700);
  padding: 0 3px;
  border-radius: 4px;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

sup,
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup { top: -.5em; }
sub { bottom: -.25em; }

/* ---------- لینک‌ها ---------- */

a {
  color: var(--ovex-ink);
  text-decoration: none;
  transition: color var(--ovex-t-fast) var(--ovex-ease);
}

a:hover {
  color: var(--ovex-primary);
}

a.ovex-link {
  color: var(--ovex-primary);
}

a.ovex-link:hover {
  color: var(--ovex-primary-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- محتوای متنی (صفحات ثابت، توضیح محصول) ---------- */

.ovex-prose {
  color: var(--ovex-ink-2);
  line-height: 2.05;
  font-size: 14.5px;
}

.ovex-prose h2,
.ovex-prose h3,
.ovex-prose h4 {
  color: var(--ovex-ink);
  margin-block: 22px 10px;
}

.ovex-prose h2 {
  position: relative;
  padding-inline-start: 12px;
}

.ovex-prose h2::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  border-radius: var(--ovex-r-pill);
  background: var(--ovex-primary-grad);
}

.ovex-prose ul,
.ovex-prose ol {
  padding-inline-start: 22px;
  margin-block: 10px;
}

.ovex-prose ul li {
  list-style: none;
  position: relative;
  padding-inline-start: 18px;
  margin-block-end: 6px;
}

.ovex-prose ul li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ovex-primary);
}

.ovex-prose ol li {
  margin-block-end: 6px;
}

.ovex-prose img {
  border-radius: var(--ovex-r);
  margin-block: 14px;
}

.ovex-prose a {
  color: var(--ovex-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ovex-prose table {
  margin-block: 14px;
  border: 1px solid var(--ovex-line);
  border-radius: var(--ovex-r);
  overflow: hidden;
}

.ovex-prose th,
.ovex-prose td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--ovex-line);
  text-align: right;
}

.ovex-prose th {
  background: var(--ovex-bg);
  font-weight: 700;
}

.ovex-prose tr:last-child td {
  border-bottom: 0;
}

/* ---------- فرم‌ها ---------- */

input[type="text"],
input[type="search"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="date"],
select,
textarea,
.ovex-input {
  width: 100%;
  background: var(--ovex-surface);
  border: 1px solid var(--ovex-line-2);
  border-radius: var(--ovex-r);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ovex-ink);
  line-height: 1.8;
  transition:
    border-color var(--ovex-t-fast) var(--ovex-ease),
    box-shadow var(--ovex-t-fast) var(--ovex-ease),
    background-color var(--ovex-t-fast) var(--ovex-ease);
  appearance: none;
  -webkit-appearance: none;
}

textarea,
.ovex-input--area {
  min-height: 120px;
  resize: vertical;
  line-height: 2;
}

input::placeholder,
textarea::placeholder {
  color: var(--ovex-ink-3);
  opacity: 1;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--ovex-ink-3);
}

input:focus,
select:focus,
textarea:focus,
.ovex-input:focus {
  outline: none;
  border-color: var(--ovex-primary);
  box-shadow: 0 0 0 3px var(--ovex-primary-100);
  background: var(--ovex-surface);
}

input:disabled,
select:disabled,
textarea:disabled {
  background: var(--ovex-bg);
  color: var(--ovex-ink-3);
  cursor: not-allowed;
}

input[aria-invalid="true"],
.ovex-input.is-error,
textarea.is-error {
  border-color: var(--ovex-danger);
  box-shadow: 0 0 0 3px var(--ovex-danger-bg);
}

/* فلش سفارشی برای select در حالت RTL */
select {
  background-image:
    url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237A7A7A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-inline-start: 36px;
  cursor: pointer;
}

/* شماره‌ها بدون دکمه‌ی بالا/پایین */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* پاک‌کردن آیکن پیش‌فرض جست‌وجو */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ovex-ink-2);
  margin-block-end: 6px;
}

.ovex-field {
  margin-block-end: 14px;
}

.ovex-field__hint {
  display: block;
  font-size: 12px;
  color: var(--ovex-ink-3);
  margin-block-start: 5px;
}

.ovex-field__error {
  display: block;
  font-size: 12px;
  color: var(--ovex-danger);
  margin-block-start: 5px;
}

.ovex-required {
  color: var(--ovex-danger);
  margin-inline-start: 3px;
}

/* چک‌باکس و رادیو سفارشی */
input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  border: 1.5px solid var(--ovex-line-2);
  background: var(--ovex-surface);
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  vertical-align: -3px;
  transition:
    background-color var(--ovex-t-fast) var(--ovex-ease),
    border-color var(--ovex-t-fast) var(--ovex-ease);
}

input[type="checkbox"] {
  border-radius: 5px;
}

input[type="radio"] {
  border-radius: 50%;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background: var(--ovex-primary);
  border-color: var(--ovex-primary);
}

input[type="checkbox"]:checked::before {
  content: "";
  width: 10px;
  height: 6px;
  border: 2px solid var(--ovex-white);
  border-top: 0;
  border-inline-end: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

input[type="radio"]:checked::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ovex-white);
}

/* برچسب کنار چک‌باکس */
.ovex-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ovex-ink-2);
  margin-block-end: 0;
  user-select: none;
}

.ovex-check:hover {
  color: var(--ovex-ink);
}

/* ---------- انتخاب متن ---------- */

::selection {
  background: var(--ovex-primary);
  color: var(--ovex-white);
}

::-moz-selection {
  background: var(--ovex-primary);
  color: var(--ovex-white);
}

/* ---------- اسکرول‌بار نارنجی ---------- */

* {
  scrollbar-width: thin;
  scrollbar-color: var(--ovex-primary) var(--ovex-line);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ovex-line);
  border-radius: var(--ovex-r-pill);
}

::-webkit-scrollbar-thumb {
  background: var(--ovex-primary-grad);
  border-radius: var(--ovex-r-pill);
  border: 2px solid var(--ovex-line);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ovex-primary-700);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* اسکرول‌بار نازک برای نوارهای افقی داخلی */
.ovex-scroll-x {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ovex-scroll-x::-webkit-scrollbar {
  height: 0;
  display: none;
}

/* ---------- فوکوس قابل دسترس ---------- */

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--ovex-primary);
  outline-offset: 2px;
  border-radius: var(--ovex-r-sm);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--ovex-primary);
  outline-offset: 3px;
}

/* پرش به محتوا (Skip link) */
.ovex-skip {
  position: absolute;
  inset-inline-start: 50%;
  top: -60px;
  transform: translateX(50%);
  z-index: 2000;
  background: var(--ovex-primary);
  color: var(--ovex-white);
  padding: 10px 20px;
  border-radius: 0 0 var(--ovex-r) var(--ovex-r);
  font-weight: 700;
  transition: top var(--ovex-t) var(--ovex-ease);
}

.ovex-skip:focus {
  top: 0;
  color: var(--ovex-white);
}

/* ---------- یوتیلیتی‌های کوچک ---------- */

.ovex-hide {
  display: none !important;
}

.ovex-hide-mobile {
  display: initial;
}

.ovex-hide-desktop {
  display: none;
}

.ovex-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ovex-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.ovex-flex {
  display: flex;
}

.ovex-flex--center {
  align-items: center;
}

.ovex-flex--between {
  justify-content: space-between;
}

.ovex-flex--wrap {
  flex-wrap: wrap;
}

.ovex-flex--col {
  flex-direction: column;
}

.ovex-gap {
  gap: var(--ovex-gap);
}

.ovex-gap-sm {
  gap: var(--ovex-gap-sm);
}

.ovex-gap-lg {
  gap: var(--ovex-gap-lg);
}

.ovex-grow {
  flex: 1 1 auto;
  min-width: 0;
}

.ovex-center {
  text-align: center;
}

.ovex-start {
  text-align: start;
}

.ovex-end {
  text-align: end;
}

.ovex-ltr {
  direction: ltr;
  unicode-bidi: embed;
}

.ovex-rtl {
  direction: rtl;
}

.ovex-nowrap {
  white-space: nowrap;
}

.ovex-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ovex-clamp-1,
.ovex-clamp-2,
.ovex-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ovex-clamp-1 { -webkit-line-clamp: 1; line-clamp: 1; }
.ovex-clamp-2 { -webkit-line-clamp: 2; line-clamp: 2; }
.ovex-clamp-3 { -webkit-line-clamp: 3; line-clamp: 3; }

.ovex-muted {
  color: var(--ovex-ink-3);
}

.ovex-ink-2 {
  color: var(--ovex-ink-2);
}

.ovex-accent {
  color: var(--ovex-primary);
}

.ovex-danger {
  color: var(--ovex-danger);
}

.ovex-success {
  color: var(--ovex-success);
}

.ovex-bold {
  font-weight: 700;
}

.ovex-black {
  font-weight: 900;
}

.ovex-relative {
  position: relative;
}

.ovex-block {
  display: block;
}

.ovex-inline-block {
  display: inline-block;
}

.ovex-w-100 {
  width: 100%;
}

.ovex-mt-0  { margin-block-start: 0; }
.ovex-mt-8  { margin-block-start: 8px; }
.ovex-mt-12 { margin-block-start: 12px; }
.ovex-mt-16 { margin-block-start: 16px; }
.ovex-mt-24 { margin-block-start: 24px; }
.ovex-mb-0  { margin-block-end: 0; }
.ovex-mb-8  { margin-block-end: 8px; }
.ovex-mb-12 { margin-block-end: 12px; }
.ovex-mb-16 { margin-block-end: 16px; }
.ovex-mb-24 { margin-block-end: 24px; }

.ovex-surface {
  background: var(--ovex-surface);
  border-radius: var(--ovex-r);
  box-shadow: var(--ovex-sh-1);
}

.ovex-divider {
  height: 1px;
  background: var(--ovex-line);
  margin-block: 16px;
  border: 0;
}

/* آیکن‌های SVG درون‌خطی */
.ovex-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.ovex-icon--sm { width: 16px; height: 16px; }
.ovex-icon--lg { width: 24px; height: 24px; }
.ovex-icon--xl { width: 30px; height: 30px; }
.ovex-icon--fill { fill: currentColor; stroke: none; }

/* آیکن‌های جهت‌دار در RTL باید آینه شوند */
.ovex-icon--flip {
  transform: scaleX(-1);
}

/* تصویر با نسبت ثابت */
.ovex-ratio {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--ovex-r);
  background: var(--ovex-bg);
}

.ovex-ratio::before {
  content: "";
  display: block;
  padding-block-start: 100%;
}

.ovex-ratio > img,
.ovex-ratio > iframe,
.ovex-ratio > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ovex-ratio--4x3::before { padding-block-start: 75%; }
.ovex-ratio--16x9::before { padding-block-start: 56.25%; }
.ovex-ratio--3x4::before { padding-block-start: 133.33%; }

/* نوار پیشرفت خطی ساده */
.ovex-bar {
  height: 6px;
  border-radius: var(--ovex-r-pill);
  background: var(--ovex-line);
  overflow: hidden;
}

.ovex-bar__fill {
  height: 100%;
  background: var(--ovex-primary-grad);
  border-radius: var(--ovex-r-pill);
  transition: width var(--ovex-t-slow) var(--ovex-ease);
}

/* چاپ */
@media print {
  .ovex-topbar,
  .ovex-header,
  .ovex-nav,
  .ovex-mobilebar,
  .ovex-footer,
  .ovex-drawer,
  .ovex-toast {
    display: none !important;
  }

  body {
    background: var(--ovex-white);
  }
}

/* ============================================================
   ۹۹) کلاس‌هایی که جاوااسکریپت می‌سازد یا روی ریشه می‌گذارد
   (assets/js/ovex.js) — این بخش توسط ایجنت یکپارچه‌سازی افزوده شد
   ============================================================ */

/* قفل اسکرول هنگام باز بودن کشو/مودال.
   ovex.js کلاس ovex-noscroll را روی <body> می‌گذارد؛ ovex-locked هم برای
   سازگاری با نسخه‌ی قبلی نگه داشته شده است. */
body.ovex-noscroll {
  overflow: hidden;
  touch-action: none;
}

/* وقتی کشو باز است، نوار اسکرول صفحه جمع نشود تا چیدمان نپرد */
html.ovex-drawer-open {
  scrollbar-gutter: stable;
}

/* جست‌وجوی تمام‌صفحه‌ی موبایل */
html.ovex-search-open body,
html.ovex-msearch-open body {
  overflow: hidden;
}

html.ovex-msearch-open .ovex-header__search {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: var(--ovex-z-modal);
  max-width: none;
  padding: 12px var(--ovex-pad-x);
  background: var(--ovex-surface);
  box-shadow: var(--ovex-sh-3);
}

/* احترام به تنظیم کاهش حرکت — ovex.js این کلاس را روی <html> می‌گذارد */
html.ovex-reduced-motion *,
html.ovex-reduced-motion *::before,
html.ovex-reduced-motion *::after {
  animation-duration: .001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .001ms !important;
  scroll-behavior: auto !important;
}

/* نام مستعار .ovex-sr-only که جاوااسکریپت تولید می‌کند */
.ovex-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* تصویر تنبل پیش از بارگذاری */
.ovex-lazy {
  opacity: 0;
  transition: opacity var(--ovex-t) var(--ovex-ease);
}

.ovex-lazy.is-loaded {
  opacity: 1;
}

/* دکمه‌ی کپی (شماره تماس، کد پستی، کد رهگیری) */
.ovex-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border: 1px dashed var(--ovex-line-2);
  border-radius: var(--ovex-r-sm);
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color var(--ovex-t-fast) var(--ovex-ease), color var(--ovex-t-fast) var(--ovex-ease);
}

.ovex-copy:hover {
  border-color: var(--ovex-primary);
  color: var(--ovex-primary);
}

.ovex-copy.is-active {
  border-style: solid;
  border-color: var(--ovex-success);
  color: var(--ovex-success);
}

/* آیکن چرخانده (فلش بازگشت به بالا از فلش پایین ساخته می‌شود) */
.ovex-icon--up {
  transform: rotate(180deg);
}

/* ----------------------------------------------------------
   آکاردئونی که ovex.js می‌سازد (نام مستعار .ovex-acc)
   ---------------------------------------------------------- */

.ovex-accordion {
  border: 1px solid var(--ovex-line);
  border-radius: var(--ovex-r);
  overflow: hidden;
  background: var(--ovex-surface);
}

.ovex-accordion__item + .ovex-accordion__item {
  border-top: 1px solid var(--ovex-line);
}

.ovex-accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: var(--ovex-ink);
  text-align: start;
  cursor: pointer;
}

.ovex-accordion__head::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-inline-end: 2px solid var(--ovex-ink-3);
  border-block-end: 2px solid var(--ovex-ink-3);
  transform: rotate(45deg);
  transition: transform var(--ovex-t) var(--ovex-ease);
}

.ovex-accordion__item.is-open .ovex-accordion__head::after {
  transform: rotate(-135deg);
}

.ovex-accordion__body {
  display: none;
  padding: 0 16px 16px;
  color: var(--ovex-ink-2);
  line-height: 2;
}

.ovex-accordion__item.is-open .ovex-accordion__body {
  display: block;
}

/* ----------------------------------------------------------
   بدنه‌ی محتوای نوشته/برگه
   ---------------------------------------------------------- */

.ovex-content {
  min-height: 40vh;
}

.ovex-entry {
  color: var(--ovex-ink-2);
  line-height: 2.05;
  font-size: 15px;
}

.ovex-entry > * + * {
  margin-block-start: 1em;
}

.ovex-entry h1,
.ovex-entry h2,
.ovex-entry h3,
.ovex-entry h4 {
  color: var(--ovex-ink);
  font-weight: 800;
  line-height: 1.6;
  margin-block: 1.4em .6em;
}

.ovex-entry h2 { font-size: 21px; }
.ovex-entry h3 { font-size: 18px; }
.ovex-entry h4 { font-size: 16px; }

.ovex-entry a {
  color: var(--ovex-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ovex-entry ul,
.ovex-entry ol {
  padding-inline-start: 1.4em;
}

.ovex-entry li + li {
  margin-block-start: .4em;
}

.ovex-entry img {
  max-width: 100%;
  height: auto;
  border-radius: var(--ovex-r);
}

.ovex-entry blockquote {
  margin: 0;
  padding: 14px 18px;
  border-inline-start: 4px solid var(--ovex-primary);
  background: var(--ovex-primary-50);
  border-radius: var(--ovex-r-sm);
  color: var(--ovex-ink);
}

.ovex-entry table {
  width: 100%;
  border-collapse: collapse;
}

.ovex-entry th,
.ovex-entry td {
  padding: 10px 12px;
  border: 1px solid var(--ovex-line);
  text-align: start;
}
