/*
 * RTL Stylesheet - Loaded automatically by WordPress when site language is RTL.
 *
 * Since this theme defaults to RTL, this file contains minimal overrides.
 * The main LTR overrides are in ltr.css, loaded when is_rtl() is false.
 *
 * @package Ihyaa
 */

/* Ensure RTL direction is applied */
html {
  direction: rtl;
}

/* Line decoration - underline on the right side */
.line-decoration {
  position: relative;
}
.line-decoration::after {
  right: 0;
  left: auto;
}

/* Nav link underline from right */
.nav-link::after {
  right: 0;
  left: auto;
}

/* Breadcrumb separators */
.breadcrumb-sep {
  transform: scaleX(1);
}

/* FAQ card border accent on right */
.faq-card[open] {
  border-inline-start-width: 3px;
  border-inline-start-color: #603b17;
}

/* Mobile menu slides from left in RTL */
.mobile-menu {
  transform: translateX(100%);
  inset-inline-start: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}

/* Post content list padding */
.post-content ul,
.post-content ol {
  padding-inline-start: 1.5em;
  padding-inline-end: 0;
}

/* Post content blockquote border */
.post-content blockquote {
  border-inline-start: 4px solid #603b17;
  border-inline-end: none;
  padding-inline-start: 1em;
  padding-inline-end: 0;
}
