/* ============================================
   RV — Design System
   Light Engagement, soft blue & pink
   Mobile-first
   ============================================ */

/* --- Font: Nunito (headings, 600-700) --- */
@font-face {
  font-family: 'Nunito';
  src: url('/assets/fonts/nunito-cyrillic.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Nunito';
  src: url('/assets/fonts/nunito-latin.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Font: Inter (body, 400-500) --- */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-cyrillic.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- CSS Variables --- */
:root {
  --rv-primary: #4C73B8;
  --rv-primary-hover: #3D62A3;
  --rv-primary-light: #EBF1FA;
  --rv-accent: #FF8A9B;
  --rv-accent-hover: #E8768A;
  --rv-bg: #F7FAFF;
  --rv-surface: #FFFFFF;
  --rv-text: #1F2A3A;
  --rv-body: #4A5568;
  --rv-muted: #8A97A6;
  --rv-border: #E6EAF0;
  --rv-border-hover: #CDD4E0;
  --rv-footer-bg: #1F2A3A;
  --rv-footer-text: #8A97A6;
  --rv-teal: #5EC4B8;
  --rv-sky: #64B5F6;
  --rv-pink: #FF8A9B;
  --rv-radius-sm: 8px;
  --rv-radius-md: 12px;
  --rv-radius-lg: 16px;
  --rv-radius-xl: 20px;
  --rv-shadow-subtle: 0 2px 8px rgba(76,115,184,0.06);
  --rv-shadow-medium: 0 8px 24px rgba(76,115,184,0.10);
  --rv-shadow-heavy: 0 4px 16px rgba(76,115,184,0.20);
  --rv-font-heading: 'Nunito', system-ui, -apple-system, sans-serif;
  --rv-font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }

body {
  font-family: var(--rv-font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--rv-text);
  background: var(--rv-bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* --- Container --- */
.rv-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 12px; }
@media (min-width: 768px) { .rv-container { padding: 0 24px; } }
@media (min-width: 1200px) { .rv-container { padding: 0 40px; } }

/* ==============================================
   HEADER — Fixed, white, clean border
   ============================================== */
.rv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--rv-surface);
  box-shadow: 0 1px 4px rgba(76,115,184,0.06);
}

.rv-header__top {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 16px;
}

.rv-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.15s;
}

.rv-header__logo:hover { opacity: 0.8; }

.rv-header__logo-icon {
  flex-shrink: 0;
  color: var(--rv-primary);
}

.rv-header__logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--rv-primary);
  letter-spacing: 0.06em;
}

.rv-header__city {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px 12px;
  background: var(--rv-primary-light);
  border-radius: 20px;
  color: var(--rv-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.rv-header__city:hover { background: #D8E4F5; }

/* --- Lucide icons global --- */
.lucide { display: inline-block; vertical-align: middle; }

.rv-header__city-icon { display: inline-flex; flex-shrink: 0; }
.rv-header__city-icon svg { width: 14px; height: 14px; }

.rv-header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--rv-radius-md);
  transition: background 0.15s;
  color: var(--rv-text);
}

.rv-header__burger:hover { background: var(--rv-primary-light); }
.rv-header__burger svg, .rv-header__burger .lucide { width: 22px; height: 22px; }

/* --- Quick Navigation (navLinks) --- */
.rv-nav__quick {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
}
.rv-nav__quick::-webkit-scrollbar { display: none; }
.rv-nav__quick-wrap { position: relative; }
.rv-nav__quick-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, var(--rv-surface));
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) { .rv-nav__quick-wrap::after { display: none; } }
.rv-nav__quick-chip {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--rv-primary-light);
  color: var(--rv-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.rv-nav__quick-chip:hover {
  background: var(--rv-primary);
  color: #fff;
}

@media (min-width: 768px) {
  .rv-header__top { height: 60px; }
}

/* --- Geo + Filter Bar (nav__bar) --- */
.rv-nav__bar {
  background: var(--rv-bg);
  border-top: 1px solid var(--rv-border);
  position: relative;
}
.rv-nav__bar-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 8px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 1280px;
  margin: 0 auto;
}
.rv-nav__bar-scroll::-webkit-scrollbar { display: none; }
.rv-nav__bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, var(--rv-bg));
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) { .rv-nav__bar::after { display: none; } }
.rv-nav__bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--rv-surface);
  border: 1px solid var(--rv-border);
  color: var(--rv-body);
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.rv-nav__bar-btn:hover { border-color: var(--rv-border-hover); background: var(--rv-primary-light); }
.rv-nav__bar-btn svg { width: 14px; height: 14px; }
.rv-nav__bar-btn--filter {
  background: var(--rv-primary);
  color: #fff;
  border-color: var(--rv-primary);
}
.rv-nav__bar-btn--filter:hover { background: var(--rv-primary-hover); border-color: var(--rv-primary-hover); }
.rv-nav__bar-btn[aria-expanded="true"] { background: var(--rv-primary-light); border-color: var(--rv-primary); color: var(--rv-primary); }

/* --- Geo Dropdowns --- */
.rv-nav__bar-item { position: relative; flex-shrink: 0; }

/* Backdrop */
.rv-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  animation: rvFadeIn 0.2s ease;
}
.rv-backdrop.is-visible { display: block; }

/* Dropdown panel — desktop */
.rv-nav__dropdown {
  position: fixed;
  z-index: 100;
  min-width: 320px;
  max-width: 460px;
  background: var(--rv-surface);
  border-radius: var(--rv-radius-lg);
  box-shadow: var(--rv-shadow-medium);
  padding: 12px;
  display: none;
  flex-direction: column;
}
.rv-nav__dropdown.is-open { display: flex; }

/* Header */
.rv-nav__dropdown-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--rv-border);
}
.rv-nav__dropdown-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--rv-text);
}
.rv-nav__dropdown-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--rv-bg);
  border-radius: 50%;
  cursor: pointer;
  color: var(--rv-muted);
  transition: background 0.15s;
}
.rv-nav__dropdown-close:hover { background: var(--rv-border); }
.rv-nav__dropdown-close svg { width: 18px; height: 18px; }

/* Search */
.rv-nav__dropdown-search {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-md);
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  flex-shrink: 0;
  font-family: var(--rv-font);
}
.rv-nav__dropdown-search:focus { border-color: var(--rv-primary); }

/* Body — scrollable list */
.rv-nav__dropdown-body {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  overflow-y: auto;
  max-height: 45vh;
  min-height: 120px;
}

/* Links */
.rv-nav__dropdown-link {
  display: inline-block;
  padding: 7px 12px;
  border-radius: var(--rv-radius-sm);
  font-size: 13px;
  color: var(--rv-body);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.rv-nav__dropdown-link:hover { background: var(--rv-primary-light); color: var(--rv-primary); }
.rv-nav__dropdown-link[hidden] { display: none; }

/* Mobile — bottom sheet */
@media (max-width: 580px) {
  .rv-nav__dropdown {
    top: auto !important;
    bottom: 0;
    left: 0 !important;
    right: 0;
    min-width: auto;
    max-width: none;
    border-radius: 20px 20px 0 0;
    padding: 16px;
    animation: rvSlideUp 0.25s ease;
  }
  .rv-nav__dropdown-header { display: flex; }
  .rv-nav__dropdown-body {
    max-height: 55vh;
    min-height: 200px;
  }
  .rv-nav__dropdown-search {
    font-size: 16px;
    padding: 12px 14px;
  }
  .rv-nav__dropdown-link {
    padding: 8px 14px;
    font-size: 14px;
  }
}

/* --- Animations --- */
@keyframes rvFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rvSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes rvSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ==============================================
   BOTTOM SHEET (mobile menu)
   ============================================== */
.rv-bottom-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
}

.rv-bottom-sheet.is-open { display: block; }

.rv-bottom-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  animation: rvFadeIn 0.2s ease;
}

.rv-bottom-sheet__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  background: var(--rv-surface);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: rvSlideUp 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.12);
}

.rv-bottom-sheet__handle {
  width: 40px;
  height: 4px;
  background: var(--rv-border-hover);
  border-radius: 2px;
  margin: 12px auto 0;
}

.rv-bottom-sheet__title {
  padding: 12px 20px 4px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rv-text);
}

.rv-bottom-sheet__category { border-bottom: 2px solid var(--rv-border); }
.rv-bottom-sheet__category:last-child { border-bottom: none; }

.rv-bottom-sheet__category-title {
  padding: 12px 20px 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rv-muted);
}

.rv-bottom-sheet__group { border-bottom: 1px solid #f0f1f3; }

.rv-bottom-sheet__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--rv-text);
  text-align: left;
}

.rv-bottom-sheet__group-toggle svg,
.rv-bottom-sheet__group-toggle .lucide {
  width: 18px;
  height: 18px;
  color: var(--rv-muted);
  transition: transform 0.25s;
}

.rv-bottom-sheet__group.is-expanded .rv-bottom-sheet__group-toggle svg,
.rv-bottom-sheet__group.is-expanded .rv-bottom-sheet__group-toggle .lucide { transform: rotate(180deg); }
.rv-bottom-sheet__group.is-expanded .rv-bottom-sheet__group-toggle { color: var(--rv-primary); }

.rv-bottom-sheet__items {
  display: none;
  padding: 0 20px 14px;
  flex-wrap: wrap;
  gap: 6px;
}

.rv-bottom-sheet__group.is-expanded .rv-bottom-sheet__items { display: flex; }

.rv-bottom-sheet__link {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8125rem;
  color: var(--rv-body);
  background: var(--rv-bg);
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
}

.rv-bottom-sheet__link:hover { background: var(--rv-primary); color: #fff; }

.rv-bottom-sheet__static {
  padding: 16px 20px;
  border-top: 2px solid var(--rv-border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rv-bottom-sheet__static a {
  font-size: 0.8125rem;
  color: var(--rv-body);
  padding: 6px 14px;
  background: var(--rv-bg);
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
}

.rv-bottom-sheet__static a:hover { background: var(--rv-primary); color: #fff; }

/* ==============================================
   MAIN CONTENT
   ============================================== */
.rv-main {
  flex: 1;
  padding: 16px 0 32px;
  margin-top: 140px;
}

@media (min-width: 768px) { .rv-main { padding: 24px 0 48px; margin-top: 148px; } }

/* --- Breadcrumb / Page Title --- */
.rv-page-header {
  margin-bottom: 16px;
}

.rv-page-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--rv-text);
  line-height: 1.25;
}

@media (min-width: 768px) {
  .rv-page-title { font-size: 1.75rem; }
  .rv-page-header { margin-bottom: 20px; }
}

/* --- Counter Badge --- */
.rv-cards-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rv-primary);
  background: var(--rv-primary-light);
  border-radius: 20px;
  margin-bottom: 16px;
}

.rv-cards-count__icon { display: inline-flex; }
.rv-cards-count__icon svg { width: 14px; height: 14px; }

/* --- SEO Blocks --- */
.rv-seo-blocks {
  margin-top: 40px;
  background: var(--rv-surface);
  border-radius: var(--rv-radius-lg);
  padding: 24px 20px;
  box-shadow: var(--rv-shadow-subtle);
}

.rv-seo-block { margin-bottom: 14px; }
.rv-seo-block:last-child { margin-bottom: 0; }

.rv-seo-block--h1 { font-size: 1.25rem; font-weight: 700; color: var(--rv-text); }
.rv-seo-block--h2 { font-size: 1.05rem; font-weight: 600; color: var(--rv-text); margin-top: 20px; }
.rv-seo-block--text { font-size: 0.875rem; color: var(--rv-muted); line-height: 1.75; }

@media (min-width: 768px) {
  .rv-seo-blocks { padding: 32px; margin-top: 48px; }
  .rv-seo-block--h1 { font-size: 1.5rem; }
  .rv-seo-block--h2 { font-size: 1.2rem; }
  .rv-seo-block--text { font-size: 0.9375rem; }
}

/* ==============================================
   TRUST BAR
   ============================================== */
.rv-trust-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 16px 0 8px;
  background: var(--rv-primary-light);
  border-radius: var(--rv-radius-lg);
  border: 1px solid #C8E6DC;
  overflow: hidden;
}

.rv-trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 12px 8px;
  border-right: 1px solid #C8E6DC;
}

.rv-trust-bar__item:last-child { border-right: none; }

.rv-trust-bar__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  justify-content: center;
  background: var(--rv-surface);
  border-radius: var(--rv-radius-sm);
  color: var(--rv-primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.rv-trust-bar__icon svg { width: 16px; height: 16px; }

.rv-trust-bar__text,
.rv-trust-bar__item > span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rv-body);
  line-height: 1.3;
}

@media (max-width: 580px) {
  .rv-trust-bar { flex-direction: column; border-radius: var(--rv-radius-md); }
  .rv-trust-bar__item {
    flex: none;
    border-right: none;
    border-bottom: 1px solid #C8E6DC;
    padding: 10px 14px;
    justify-content: flex-start;
  }
  .rv-trust-bar__item:last-child { border-bottom: none; }
}

@media (min-width: 768px) {
  .rv-trust-bar__icon { width: 34px; height: 34px; }
  .rv-trust-bar__icon svg { width: 18px; height: 18px; }
  .rv-trust-bar__text { font-size: 0.8125rem; }
  .rv-trust-bar__item { padding: 14px 12px; }
}

/* ==============================================
   LOCATION INFO
   ============================================== */
.rv-location-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--rv-primary-light);
  border-radius: var(--rv-radius-md);
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: var(--rv-primary);
  font-weight: 500;
}

.rv-location-info__icon { display: inline-flex; flex-shrink: 0; }
.rv-location-info__icon svg { width: 16px; height: 16px; }
.rv-location-info__name { font-weight: 700; }

/* ==============================================
   FOOTER — Dark
   ============================================== */
.rv-footer {
  background: var(--rv-footer-bg);
  padding: 32px 0 24px;
  margin-top: auto;
}

.rv-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rv-footer__brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

.rv-footer__links { display: flex; flex-wrap: wrap; gap: 20px; }

.rv-footer__link {
  font-size: 0.8125rem;
  color: var(--rv-footer-text);
  transition: color 0.15s;
}

.rv-footer__link:hover { color: #fff; }

.rv-footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rv-footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .rv-footer { padding: 48px 0 32px; }
  .rv-footer__inner { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}

/* ==============================================
   BUTTONS
   ============================================== */
.rv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--rv-radius-md);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  gap: 8px;
}

.rv-btn:active { transform: scale(0.97); }

.rv-btn--primary {
  background: var(--rv-primary);
  color: #fff;
  box-shadow: var(--rv-shadow-heavy);
}

.rv-btn--primary:hover {
  background: var(--rv-primary-hover);
  box-shadow: 0 6px 20px rgba(27,77,62,0.3);
  transform: translateY(-1px);
}

.rv-btn--accent {
  background: var(--rv-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,80,91,0.25);
}

.rv-btn--accent:hover {
  background: var(--rv-accent-hover);
  box-shadow: 0 6px 20px rgba(232,80,91,0.3);
  transform: translateY(-1px);
}

.rv-btn--outline {
  background: transparent;
  color: var(--rv-primary);
  border: 1.5px solid var(--rv-primary);
}

.rv-btn--outline:hover {
  background: var(--rv-primary-light);
}

.rv-btn--block { display: flex; width: 100%; }

.rv-btn--sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
  border-radius: var(--rv-radius-sm);
}

.rv-btn--lg {
  padding: 16px 24px;
  font-size: 1.0625rem;
  border-radius: var(--rv-radius-lg);
  gap: 10px;
}

.rv-btn__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.rv-btn__icon svg {
  width: 20px;
  height: 20px;
}

/* --- Card Stats & Voting (shared between listing and profile) --- */
.rv-card__stats {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0 2px;
  font-size: 0.8rem;
  color: var(--rv-muted);
}
.rv-card__stat {
  display: flex;
  align-items: center;
  gap: 3px;
}
.rv-card__stat svg { width: 14px; height: 14px; }

.rv-card__actions-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0 0;
  border-top: 1px solid var(--rv-border);
}
/* Vote buttons (shared class rv-vote used in cards and profile) */
.rv-vote.is-active svg { fill: currentColor; }
.rv-vote--like.is-active { color: #22c55e; }
.rv-vote--dislike.is-active { color: #ef4444; }
.rv-vote--fav.is-active { color: #f59e0b; }
.rv-vote__count { font-weight: 500; }

/* --- Utility --- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
