/**
 * Enterprise news shell — layout, header, boxes, responsive.
 * Tokens: --cm-* from child theme news.css / style.css
 */

*, *::before, *::after { box-sizing: border-box; }

.rn-enterprise {
  margin: 0;
  background: var(--cm-bg, #f7f5f3);
  color: var(--cm-text, #1a1a1a);
  font-family: var(--cm-font, Vazirmatn, Tahoma, sans-serif);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
}

.rn-enterprise img { max-width: 100%; height: auto; display: block; }
.rn-enterprise a { color: var(--cm-accent, #c62828); text-decoration: none; }
.rn-enterprise a:hover { filter: brightness(0.92); }
.rn-enterprise a:focus-visible,
.rn-enterprise button:focus-visible,
.rn-enterprise input:focus-visible {
  outline: 2px solid var(--cm-accent, #c62828);
  outline-offset: 2px;
}

.screen-reader-text,
.rn-skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
.rn-skip-link:focus {
  position: fixed;
  top: 8px; right: 8px;
  z-index: 9999;
  width: auto; height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--cm-surface, #fff);
  color: var(--cm-text);
  box-shadow: var(--cm-shadow, 0 2px 10px rgba(0,0,0,.08));
  border-radius: var(--cm-radius, 8px);
}

.rn-container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

/* Header */
.rn-header {
  background: var(--cm-surface, #fff);
  border-bottom: 3px solid var(--cm-accent, #c62828);
  box-shadow: var(--cm-shadow, none);
}
.rn-header-top {
  background: color-mix(in srgb, var(--cm-accent, #c62828) 8%, var(--cm-bg, #f7f5f3));
  font-size: 0.85rem;
  color: var(--cm-muted, #5c5c5c);
}
.rn-header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0;
}
.rn-header-brand-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}
.rn-site-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--cm-text);
}
.custom-logo-link img { max-height: 52px; width: auto; }

.rn-search {
  display: flex;
  align-items: stretch;
  max-width: 320px;
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--cm-text) 12%, transparent);
  border-radius: var(--cm-radius, 8px);
  overflow: hidden;
  background: var(--cm-surface, #fff);
}
.rn-search input {
  flex: 1;
  border: 0;
  padding: 0.65rem 0.85rem;
  font: inherit;
  background: transparent;
  color: var(--cm-text);
  min-width: 0;
}
.rn-search button {
  border: 0;
  background: var(--cm-accent, #c62828);
  color: #fff;
  padding: 0 0.85rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.rn-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.rn-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cm-text);
  border-radius: 1px;
}

.rn-nav { border-top: 1px solid color-mix(in srgb, var(--cm-text) 8%, transparent); }
.rn-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}
.rn-menu a {
  display: block;
  padding: 0.75rem 0.25rem;
  color: var(--cm-text);
  font-weight: 600;
  min-height: 44px;
}

.rn-main { padding: 1.25rem 0 2rem; }

/* Home top row */
.rn-top-row {
  display: grid;
  gap: var(--cm-gap, 1rem);
  margin-bottom: 1.5rem;
}
.rn-top-ratio-70-30 { grid-template-columns: 1fr; }
.rn-top-no-side { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .rn-top-ratio-70-30:not(.rn-top-no-side) {
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    align-items: start;
  }
}

.rn-home-body { display: block; }
.rn-home-body.rn-has-sidebar {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .rn-home-body.rn-has-sidebar {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }
}

/* Sections */
.rn-section { margin-bottom: 2rem; }
.rn-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid color-mix(in srgb, var(--cm-accent) 25%, transparent);
}
.rn-section-title {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.rn-section-title a { color: var(--cm-text); }
.rn-section-more { font-size: 0.95rem; font-weight: 600; }

/* Hero slider */
.rn-hero-slider { position: relative; border-radius: var(--cm-radius, 12px); overflow: hidden; background: #111; }
.rn-slide { display: none; }
.rn-slide.is-active { display: block; }
.rn-slide-link { display: block; color: #fff; position: relative; }
.rn-slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.rn-slide-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
}
.rn-slide-title { margin: 0.35rem 0; font-size: clamp(1.1rem, 2.5vw, 1.6rem); color: #fff; }
.rn-cat-badge {
  display: inline-block;
  background: var(--cm-accent);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
}
.rn-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--cm-surface, #fff);
}
.rn-slider-prev, .rn-slider-next, .rn-slider-dots button {
  min-width: 44px; min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--cm-text);
}
.rn-slider-dots { display: flex; gap: 0.35rem; }
.rn-slider-dots button {
  width: 10px; height: 10px; min-width: 10px; min-height: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cm-text) 25%, transparent);
  padding: 0;
}
.rn-slider-dots button[aria-selected="true"] { background: var(--cm-accent); }

/* Top2 */
.rn-top2-stack { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.rn-top2-link {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--cm-text);
  background: var(--cm-surface, #fff);
  padding: 0.5rem;
  border-radius: var(--cm-radius, 8px);
  box-shadow: var(--cm-shadow, none);
}
.rn-top2-thumb img { aspect-ratio: 16/10; object-fit: cover; border-radius: calc(var(--cm-radius, 8px) * 0.75); }
.rn-top2-title { display: block; font-weight: 700; line-height: 1.35; }

/* Boxes */
.rn-one-plus-three {
  display: grid;
  gap: var(--cm-gap, 1rem);
}
@media (min-width: 768px) {
  .rn-one-plus-three { grid-template-columns: 1.2fr 1fr; }
}
.rn-op-large img, .rn-op-small img { aspect-ratio: 16/10; object-fit: cover; border-radius: var(--cm-radius, 8px); width: 100%; }
.rn-op-small { display: grid; gap: 0.65rem; }

.rn-mosaic {
  display: grid;
  gap: var(--cm-gap, 1rem);
  grid-template-columns: repeat(2, 1fr);
}
.rn-mosaic-lg { grid-column: 1 / -1; }
.rn-mosaic img { aspect-ratio: 16/10; object-fit: cover; border-radius: var(--cm-radius, 8px); width: 100%; }

.rn-gallery-grid {
  display: grid;
  gap: var(--cm-gap, 1rem);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.rn-gallery-grid img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--cm-radius, 8px); width: 100%; }

.rn-cinema-posters {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 180px);
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}
.rn-poster img { aspect-ratio: 2/3; object-fit: cover; border-radius: var(--cm-radius, 4px); width: 100%; }
.rn-poster a { display: block; color: var(--cm-text); }
.rn-poster-title { margin: 0.5rem 0 0; font-size: 0.9rem; line-height: 1.35; font-weight: 700; }

.rn-thumb-list { list-style: none; margin: 0; padding: 0; }
.rn-thumb-list li + li { border-top: 1px solid color-mix(in srgb, var(--cm-text) 8%, transparent); }
.rn-thumb-list a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.65rem;
  padding: 0.65rem 0;
  color: var(--cm-text);
  align-items: center;
}
.rn-thumb img { aspect-ratio: 1; object-fit: cover; border-radius: calc(var(--cm-radius, 8px) * 0.5); }

.rn-breaking-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cm-accent);
  color: #fff;
  padding: 0.5rem 1rem;
  overflow: hidden;
}
.rn-ticker-label { font-weight: 800; white-space: nowrap; }
.rn-ticker-track { display: flex; gap: 1.5rem; overflow-x: auto; }
.rn-ticker-track a { color: #fff; white-space: nowrap; }

.rn-stat-grid {
  display: grid;
  gap: var(--cm-gap, 1rem);
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.rn-stat-card {
  background: var(--cm-surface, #fff);
  border-radius: var(--cm-radius, 8px);
  padding: 1rem;
  box-shadow: var(--cm-shadow, none);
}
.rn-stat-num { font-size: 1.75rem; font-weight: 800; color: var(--cm-accent); display: block; }
.rn-stat-label { display: block; font-size: 0.75rem; color: var(--cm-muted); margin-top: 0.15rem; font-weight: 600; }
.rn-stat-card h3 { margin: 0.5rem 0 0.25rem; font-size: 0.95rem; line-height: 1.4; }
.rn-stat-card time { font-size: 0.78rem; color: var(--cm-muted); }
.rn-stat-card a { display: block; color: var(--cm-text); }

/* Cards */
.rn-grid { display: grid; gap: var(--cm-gap, 1rem); }
.rn-grid-2 { grid-template-columns: 1fr; }
.rn-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
@media (min-width: 768px) { .rn-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.rn-card {
  background: var(--cm-surface, #fff);
  border-radius: var(--cm-radius, 12px);
  overflow: hidden;
  box-shadow: var(--cm-shadow, 0 2px 10px rgba(0,0,0,.06));
}
.rn-card-thumb img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.rn-card-body { padding: 0.85rem 1rem 1rem; }
.rn-card-title { margin: 0.35rem 0; font-size: 1.05rem; line-height: 1.4; }
.rn-card-title a { color: var(--cm-text); }
.rn-card-h {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
}
.rn-card-h .rn-card-thumb img { height: 100%; min-height: 100px; }

/* Single */
.rn-article-title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0.5rem 0; line-height: 1.25; }
.rn-article-featured { margin: 1rem 0; border-radius: var(--cm-radius, 12px); overflow: hidden; }
.rn-article-featured img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.rn-entry-content { max-width: 42rem; font-size: 1.05rem; line-height: 1.85; }
.rn-entry-content p { margin: 0 0 1rem; }
.rn-entry-content blockquote {
  margin: 1.25rem 0;
  padding: 0.85rem 1rem;
  border-right: 4px solid var(--cm-accent);
  background: color-mix(in srgb, var(--cm-accent) 8%, var(--cm-bg));
  border-radius: calc(var(--cm-radius, 8px) * 0.5);
}

.rn-author-box {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--cm-surface, #fff);
  border-radius: var(--cm-radius, 12px);
}

.rn-breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.85rem;
  color: var(--cm-muted);
}
.rn-breadcrumbs a { color: var(--cm-muted); }

/* Sidebar / widgets */
.rn-sidebar .rn-widget {
  background: var(--cm-surface, #fff);
  border-radius: var(--cm-radius, 12px);
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--cm-shadow, none);
}
.rn-widget-title { margin: 0 0 0.75rem; font-size: 1.05rem; border-right: 4px solid var(--cm-accent); padding-right: 0.5rem; }

/* Footer */
.rn-footer {
  background: color-mix(in srgb, var(--cm-text) 92%, #000);
  color: #f5f5f5;
  margin-top: 2rem;
}
.rn-footer a { color: #fff; }
.rn-footer-grid {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.rn-footer-title { font-size: 1rem; margin: 0 0 0.75rem; }
.rn-footer-links { list-style: none; margin: 0; padding: 0; }
.rn-footer-links li + li { margin-top: 0.35rem; }
.rn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.75);
}
.rn-social { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.5rem; }

/* Mobile nav */
@media (max-width: 767px) {
  .rn-header-brand-inner { grid-template-columns: 1fr auto; }
  .rn-search { display: none; grid-column: 1 / -1; max-width: none; }
  .rn-header-brand-inner.is-search-open .rn-search { display: flex; }
  .rn-nav-toggle { display: flex; }
  .rn-nav { display: none; }
  .rn-nav.is-open { display: block; }
  .rn-menu { flex-direction: column; }
  .rn-card-h { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* === Layout languages (shared polish v2.1.2) === */

/* Cinema — poster-first, wide hero, horizontal top2 */
body.rooyesh-layout-cinema .rn-hero-slider img,
body.rooyesh-layout-cinema .rn-slide img {
  aspect-ratio: 21 / 9;
}
body.rooyesh-layout-cinema .rn-slide-caption {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  padding: 1.5rem 1.25rem 1.25rem;
}
body.rooyesh-layout-cinema .rn-top-row.rn-top-ratio-100-0 {
  grid-template-columns: 1fr;
}
body.rooyesh-layout-cinema .rn-top-secondary .rn-top2-stack {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 200px);
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
}
body.rooyesh-layout-cinema .rn-top-secondary .rn-top2-link {
  grid-template-columns: 1fr;
  scroll-snap-align: start;
  padding: 0;
  overflow: hidden;
}
body.rooyesh-layout-cinema .rn-top-secondary .rn-top2-thumb img {
  aspect-ratio: 2 / 3;
  width: 100%;
}
body.rooyesh-layout-cinema .rn-top-secondary .rn-top2-text {
  padding: 0.5rem;
}
body.rooyesh-layout-cinema .rn-home-body.rn-has-sidebar {
  display: block;
}
body.rooyesh-layout-cinema .rn-poster {
  scroll-snap-align: start;
}
@media (hover: hover) {
  body.rooyesh-layout-cinema .rn-poster img {
    transition: transform 0.25s ease;
  }
  body.rooyesh-layout-cinema .rn-poster:hover img {
    transform: scale(1.03);
  }
}

/* Neon — dark shell integration + accent glow */
body.rooyesh-layout-neon.rn-enterprise {
  background: var(--cm-bg);
  color: var(--cm-text);
}
body.rooyesh-layout-neon .rn-header {
  background: var(--cm-header-dark, #111);
  border-bottom: 2px solid var(--cm-accent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--cm-accent) 35%, transparent);
}
body.rooyesh-layout-neon .rn-header-top {
  background: color-mix(in srgb, var(--cm-header-dark, #111) 88%, #000);
  color: rgba(255, 255, 255, 0.85);
}
body.rooyesh-layout-neon .rn-header .rn-site-title,
body.rooyesh-layout-neon .rn-menu a,
body.rooyesh-layout-neon .rn-nav-toggle span,
body.rooyesh-layout-neon .rn-search input {
  color: #fff;
}
body.rooyesh-layout-neon .rn-search {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
body.rooyesh-layout-neon .rn-nav {
  border-top-color: rgba(255, 255, 255, 0.12);
}
body.rooyesh-layout-neon .rn-card,
body.rooyesh-layout-neon .rn-top2-link,
body.rooyesh-layout-neon .rn-sidebar .rn-widget {
  background: var(--cm-surface, #242424);
  border: 1px solid color-mix(in srgb, var(--cm-accent) 35%, transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--cm-accent) 18%, transparent);
}
body.rooyesh-layout-neon .rn-section-title a,
body.rooyesh-layout-neon .rn-card-title a,
body.rooyesh-layout-neon .rn-top2-title {
  color: var(--cm-text);
}
body.rooyesh-layout-neon .rn-section-title a:hover,
body.rooyesh-layout-neon .rn-card-title a:hover {
  color: var(--cm-accent);
  text-shadow: 0 0 12px color-mix(in srgb, var(--cm-accent) 45%, transparent);
}
body.rooyesh-layout-neon .rn-slider-controls {
  background: var(--cm-surface, #242424);
  border-top: 1px solid color-mix(in srgb, var(--cm-accent) 25%, transparent);
}
body.rooyesh-layout-neon .rn-section-head {
  border-bottom-color: color-mix(in srgb, var(--cm-accent) 40%, transparent);
}

/* Stats — number-forward cards and section markers */
body.rooyesh-layout-stats .rn-section-head::before {
  content: "◆";
  color: var(--cm-accent);
  font-size: 0.75em;
  margin-left: 0.35rem;
}
body.rooyesh-layout-stats .rn-stat-num {
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1;
}
body.rooyesh-layout-stats .rn-stat-card {
  border-right: 3px solid var(--cm-accent);
}
body.rooyesh-layout-stats .rn-stat-card time {
  font-variant-numeric: tabular-nums;
}
body.rooyesh-layout-stats .rn-header {
  border-bottom-width: 2px;
}

/* Soft — gentle magazine */
body.rooyesh-layout-soft .rn-card,
body.rooyesh-layout-soft .rn-top2-link {
  box-shadow: var(--cm-shadow, 0 2px 10px rgba(0, 0, 0, 0.06));
  border-radius: var(--cm-radius, 12px);
}
body.rooyesh-layout-soft .rn-hero-slider {
  border-radius: var(--cm-radius, 12px);
}
body.rooyesh-layout-soft .rn-section-head {
  border-bottom-width: 1px;
  border-bottom-color: color-mix(in srgb, var(--cm-accent) 20%, transparent);
}

/* Breaking — urgent, sharp edges + ticker emphasis */
body.rooyesh-layout-breaking .rn-header {
  border-bottom-width: 4px;
}
body.rooyesh-layout-breaking .rn-card,
body.rooyesh-layout-breaking .rn-top2-link,
body.rooyesh-layout-breaking .rn-hero-slider {
  border-radius: 0;
  box-shadow: none;
}
body.rooyesh-layout-breaking .rn-breaking-ticker {
  border-radius: 0;
}
body.rooyesh-layout-breaking .rn-ticker-label {
  background: rgba(0, 0, 0, 0.15);
  padding: 0.15rem 0.5rem;
}
body.rooyesh-layout-breaking .rn-section-head {
  border-bottom-width: 3px;
  border-bottom-color: var(--cm-accent);
}

/* Broadsheet — newspaper formal, four-column top2 */
body.rooyesh-layout-broadsheet .rn-hero-slider,
body.rooyesh-layout-broadsheet .rn-card,
body.rooyesh-layout-broadsheet .rn-top2-link {
  border-radius: 0;
  box-shadow: none;
}
@media (min-width: 768px) {
  body.rooyesh-layout-broadsheet .rn-top-secondary .rn-top2-stack {
    grid-template-columns: repeat(4, 1fr);
  }
}
body.rooyesh-layout-broadsheet .rn-section-title {
  font-weight: 800;
}

/* Tech — bordered cards, pill nav */
body.rooyesh-layout-tech .rn-menu a {
  border-radius: 6px;
  margin: 0 2px;
}
body.rooyesh-layout-tech .rn-menu a:hover,
body.rooyesh-layout-tech .rn-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}
body.rooyesh-layout-tech .rn-card,
body.rooyesh-layout-tech .rn-top2-link,
body.rooyesh-layout-tech .rn-sidebar .rn-widget {
  border: 1px solid color-mix(in srgb, var(--cm-accent) 18%, transparent);
  box-shadow: var(--cm-shadow, none);
  border-radius: var(--cm-radius, 8px);
}

/* Gallery — wide hero, image grids, full width */
body.rooyesh-layout-gallery .rn-hero-slider img,
body.rooyesh-layout-gallery .rn-slide img {
  aspect-ratio: 21 / 9;
}
body.rooyesh-layout-gallery .rn-gallery-grid img {
  aspect-ratio: 4 / 3;
}
body.rooyesh-layout-gallery .rn-home-body.rn-has-sidebar {
  display: block;
}

/* Bulletin — notice-board framing */
body.rooyesh-layout-bulletin .rn-hero-slider {
  border: 1px solid color-mix(in srgb, var(--cm-accent) 25%, transparent);
}
body.rooyesh-layout-bulletin .rn-card {
  border: 1px solid color-mix(in srgb, var(--cm-text) 10%, transparent);
  box-shadow: none;
}
body.rooyesh-layout-bulletin .rn-top-row.rn-top-no-side {
  grid-template-columns: 1fr;
}

/* Literary — reading column, double rule sections */
body.rooyesh-layout-literary .rn-entry-content {
  max-width: 40rem;
}
body.rooyesh-layout-literary .rn-section-head {
  border-bottom-style: double;
  border-bottom-width: 3px;
}
body.rooyesh-layout-literary .rn-card-title {
  font-weight: 600;
  line-height: 1.5;
}
body.rooyesh-layout-literary .rn-article-title {
  letter-spacing: -0.02em;
}
