/*
Theme Name: Vivvo AlyoumTV
Theme URI: https://alyoumtv.com
Author: Vivvo
Description: Thème WordPress professionnel pour journal d'information marocain - style alyaoum24 - RTL Arabic
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: vivvo-alyoumtv
Tags: rtl-language, arabic, news, magazine
*/

/* ============================================================
   VIVVO_R — DESIGN TOKENS v2 (harmonisé, modern soft)
   ============================================================ */
:root {
  /* Couleur principale */
  --vivvo_R-primary:        #c8102e;
  --vivvo_R-primary-dark:   #a00d24;
  --vivvo_R-primary-light:  #fceef1;
  --vivvo_R-primary-muted:  rgba(200,16,46,0.08);

  /* Neutrals doux */
  --vivvo_R-black:   #18181b;
  --vivvo_R-dark:    #1c1c1f;
  --vivvo_R-dark2:   #27272a;
  --vivvo_R-gray:    #3f3f46;
  --vivvo_R-gray2:   #71717a;
  --vivvo_R-gray3:   #a1a1aa;
  --vivvo_R-gray4:   #d4d4d8;
  --vivvo_R-light:   #f8f8f9;
  --vivvo_R-light2:  #f2f2f4;
  --vivvo_R-white:   #ffffff;

  /* Bordures */
  --vivvo_R-border:      #e4e4e7;
  --vivvo_R-border-dark: #3f3f46;

  /* Sémantiques */
  --vivvo_R-green:  #16a34a;
  --vivvo_R-orange: #ea580c;
  --vivvo_R-blue:   #2563eb;

  /* Typographie */
  --vivvo_R-font-ar: 'Cairo', 'Tajawal', Arial, sans-serif;

  /* Rayons */
  --vivvo_R-r-sm:  6px;
  --vivvo_R-r-md:  10px;
  --vivvo_R-r-lg:  16px;
  --vivvo_R-r-xl:  24px;
  --vivvo_R-radius: var(--vivvo_R-r-md);

  /* Ombres douces */
  --vivvo_R-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --vivvo_R-shadow:    0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --vivvo_R-shadow-md: 0 8px 24px rgba(0,0,0,0.09), 0 4px 8px rgba(0,0,0,0.05);
  --vivvo_R-shadow-lg: 0 20px 48px rgba(0,0,0,0.11);

  /* Transitions */
  --vivvo_R-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --vivvo_R-duration: 0.22s;

  /* Espacement */
  --vivvo_R-section-gap: 48px;
  --vivvo_R-section-pad: 36px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--vivvo_R-font-ar);
  background: var(--vivvo_R-light);
  color: var(--vivvo_R-black);
  direction: rtl;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color var(--vivvo_R-duration) var(--vivvo_R-ease); }
a:hover { color: var(--vivvo_R-primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.vivvo_R-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.vivvo_R-topbar {
  background: var(--vivvo_R-dark);
  color: var(--vivvo_R-gray3);
  font-size: 12px;
  padding: 7px 0;
}

.vivvo_R-topbar .vivvo_R-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vivvo_R-topbar-date { color: var(--vivvo_R-gray3); font-size: 12px; }

.vivvo_R-topbar-social { display: flex; gap: 8px; }
.vivvo_R-topbar-social a {
  color: var(--vivvo_R-gray3);
  font-size: 13px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-topbar-social a:hover { background: var(--vivvo_R-primary); color: white; }

/* ============================================================
   HEADER
   ============================================================ */
.vivvo_R-header {
  background: var(--vivvo_R-white);
  border-bottom: 2px solid var(--vivvo_R-primary);
  box-shadow: var(--vivvo_R-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.vivvo_R-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.vivvo_R-logo img { height: 52px; width: auto; }
.vivvo_R-logo-text {
  font-size: 26px;
  font-weight: 900;
  color: var(--vivvo_R-primary);
  letter-spacing: -0.5px;
}

.vivvo_R-header-actions { display: flex; align-items: center; gap: 10px; }

.vivvo_R-btn-subscribe {
  background: var(--vivvo_R-primary);
  color: white;
  padding: 8px 20px;
  border-radius: var(--vivvo_R-r-lg);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--vivvo_R-font-ar);
  cursor: pointer;
  border: none;
  transition: all var(--vivvo_R-duration);
  display: inline-flex;
}
.vivvo_R-btn-subscribe:hover { background: var(--vivvo_R-primary-dark); color: white; transform: translateY(-1px); box-shadow: var(--vivvo_R-shadow); }

.vivvo_R-btn-login {
  background: transparent;
  color: var(--vivvo_R-gray);
  padding: 8px 16px;
  border-radius: var(--vivvo_R-r-lg);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--vivvo_R-border);
  cursor: pointer;
  font-family: var(--vivvo_R-font-ar);
  transition: all var(--vivvo_R-duration);
  display: inline-flex !important;
}
.vivvo_R-btn-login:hover { border-color: var(--vivvo_R-primary); color: var(--vivvo_R-primary); background: var(--vivvo_R-primary-muted); }

.vivvo_R-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--vivvo_R-gray2);
  font-size: 17px;
  padding: 6px;
  transition: color var(--vivvo_R-duration);
  display: flex;
  align-items: center;
}
.vivvo_R-search-btn:hover { color: var(--vivvo_R-primary); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.vivvo_R-nav { background: var(--vivvo_R-dark); }

.vivvo_R-nav-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.vivvo_R-nav-inner::-webkit-scrollbar { display: none; }

.vivvo_R-nav-inner a {
  color: var(--vivvo_R-gray3);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 18px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--vivvo_R-duration);
  display: block;
}
.vivvo_R-nav-inner a:hover,
.vivvo_R-nav-inner a.vivvo_R-active { color: white; border-bottom-color: var(--vivvo_R-primary); }

.vivvo_R-nav-inner a.vivvo_R-live { color: #4ade80; }
.vivvo_R-nav-inner a.vivvo_R-live::before { content: '● '; font-size: 10px; animation: vivvo_R-blink 1s infinite; }

@keyframes vivvo_R-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ============================================================
   BREAKING NEWS TICKER
   ============================================================ */
.vivvo_R-ticker {
  background: var(--vivvo_R-primary);
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 36px;
}

.vivvo_R-ticker-label {
  background: var(--vivvo_R-primary-dark);
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.vivvo_R-ticker-track { overflow: hidden; flex: 1; }

.vivvo_R-ticker-items {
  display: flex;
  gap: 60px;
  animation: vivvo_R-ticker 40s linear infinite;
  white-space: nowrap;
  align-items: center;
  height: 36px;
}

.vivvo_R-ticker-items a { color: white; font-size: 13px; font-weight: 600; }

@keyframes vivvo_R-ticker { 0%{transform:translateX(-50%)} 100%{transform:translateX(0%)} }

/* ============================================================
   VIDEO STRIP
   ============================================================ */
.vivvo_R-video-strip {
  background: var(--vivvo_R-white);
  padding: 10px 0;
  border-bottom: 1px solid var(--vivvo_R-border);
}

.vivvo_R-video-strip-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.vivvo_R-video-strip-inner::-webkit-scrollbar { display: none; }

.vivvo_R-video-thumb {
  flex-shrink: 0;
  width: 116px;
  position: relative;
  border-radius: var(--vivvo_R-r-sm);
  overflow: hidden;
  cursor: pointer;
}

.vivvo_R-video-thumb img { width: 116px; height: 66px; object-fit: cover; }
.vivvo_R-video-thumb-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--vivvo_R-primary);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
}

/* ============================================================
   SPORTS BAR
   ============================================================ */
.vivvo_R-sports-bar {
  background: var(--vivvo_R-dark);
  padding: 8px 0;
  overflow: hidden;
}

.vivvo_R-sports-bar-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.vivvo_R-sports-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-left: 1px solid var(--vivvo_R-border-dark);
  white-space: nowrap;
  font-size: 12px;
  color: var(--vivvo_R-gray3);
}

.vivvo_R-sports-bar-teams { font-weight: 700; color: var(--vivvo_R-gray4); }

.vivvo_R-sports-bar-score {
  background: var(--vivvo_R-primary);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 13px;
}

.vivvo_R-sports-bar-live {
  color: #4ade80;
  font-size: 10px;
  font-weight: 700;
  animation: vivvo_R-blink 1s infinite;
}

/* ============================================================
   SECTION TITLES (unifié)
   ============================================================ */
.vivvo_R-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--vivvo_R-border);
  position: relative;
}

.vivvo_R-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 48px;
  height: 2px;
  background: var(--vivvo_R-primary);
}

.vivvo_R-section-title-icon {
  width: 28px;
  height: 28px;
  background: var(--vivvo_R-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
}

.vivvo_R-section-title h2 {
  font-size: 19px;
  font-weight: 900;
  color: var(--vivvo_R-black);
  letter-spacing: -0.3px;
}

.vivvo_R-section-title-link {
  margin-right: auto;
  font-size: 12px;
  color: var(--vivvo_R-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid var(--vivvo_R-primary-light);
  border-radius: 20px;
  background: var(--vivvo_R-primary-muted);
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-section-title-link:hover { background: var(--vivvo_R-primary); color: white; border-color: var(--vivvo_R-primary); }

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.vivvo_R-main { padding: 24px 0; }

.vivvo_R-layout-primary {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

/* ============================================================
   HERO ROW — Pub | Slider numéroté | Flash News
   ============================================================ */
.vivvo_R-hero-row {
  display: grid;
  grid-template-columns: 300px 1fr 268px;
  gap: 14px;
  margin-bottom: 28px;
  align-items: stretch;
}

/* Pub gauche */
.vivvo_R-hero-pub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0;
  background: var(--vivvo_R-white);
  border-radius: var(--vivvo_R-r-md);
  border: 1px solid var(--vivvo_R-border);
}

.vivvo_R-pub-label { font-size: 10px; color: var(--vivvo_R-gray3); text-transform: uppercase; letter-spacing: 1px; }
.vivvo_R-pub-slot { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.vivvo_R-pub-placeholder {
  background: var(--vivvo_R-light);
  border: 1px dashed var(--vivvo_R-gray4);
  border-radius: var(--vivvo_R-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--vivvo_R-gray3);
}

/* ============================================================
   HSLIDER
   ============================================================ */
.vivvo_R-hslider {
  position: relative;
  border-radius: var(--vivvo_R-r-md);
  overflow: hidden;
  background: var(--vivvo_R-dark);
  height: 420px;
}

.vivvo_R-hslide {
  position: absolute;
  inset: 0;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--vivvo_R-dark);
  opacity: 0;
  transition: opacity 0.65s var(--vivvo_R-ease);
  z-index: 1;
}

.vivvo_R-hslide img { display: none; }

.vivvo_R-hslide--active { opacity: 1; z-index: 2; }

.vivvo_R-hslide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
  pointer-events: none;
}

.vivvo_R-hslide-info {
  position: absolute;
  bottom: 54px;
  right: 22px;
  left: 22px;
  z-index: 3;
  color: white;
}

.vivvo_R-hslide-cat {
  display: inline-block;
  background: var(--vivvo_R-primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.vivvo_R-hslide-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.vivvo_R-hslide-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 14px;
  align-items: center;
}

.vivvo_R-hslide-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(200,16,46,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  z-index: 3;
  backdrop-filter: blur(4px);
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-hslide--active:hover .vivvo_R-hslide-play { transform: translate(-50%,-50%) scale(1.1); }

.vivvo_R-hslider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-hslider-arrow:hover { background: var(--vivvo_R-primary); border-color: var(--vivvo_R-primary); }
.vivvo_R-hslider-prev { right: 14px; }
.vivvo_R-hslider-next { left: 14px; }

.vivvo_R-hslider-nums {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}

.vivvo_R-hslider-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--vivvo_R-font-ar);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.vivvo_R-hslider-num--on {
  background: var(--vivvo_R-primary);
  border-color: var(--vivvo_R-primary);
  transform: scale(1.18);
  box-shadow: 0 2px 10px rgba(200,16,46,0.45);
}

.vivvo_R-hslider-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--vivvo_R-primary);
  width: 0%;
  z-index: 10;
  border-radius: 0 2px 2px 0;
}

/* ============================================================
   FLASH NEWS (sidebar droite hero)
   ============================================================ */
.vivvo_R-hero-flash {
  display: flex;
  flex-direction: column;
  border-radius: var(--vivvo_R-r-md);
  overflow: hidden;
  border: 1px solid var(--vivvo_R-border);
  height: 420px;
  background: var(--vivvo_R-white);
}

.vivvo_R-flash-head {
  background: var(--vivvo_R-dark);
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.vivvo_R-flash-dot {
  width: 8px;
  height: 8px;
  background: var(--vivvo_R-primary);
  border-radius: 50%;
  animation: vivvo_R-blink 1s infinite;
}

.vivvo_R-flash-body {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--vivvo_R-border) transparent;
}

.vivvo_R-flash-row {
  display: flex;
  gap: 10px;
  padding: 9px 13px;
  border-bottom: 1px solid var(--vivvo_R-border);
  align-items: flex-start;
  transition: background var(--vivvo_R-duration);
}
.vivvo_R-flash-row:last-child { border-bottom: none; }
.vivvo_R-flash-row:hover { background: var(--vivvo_R-light); }

.vivvo_R-flash-time {
  font-size: 10px;
  font-weight: 800;
  color: var(--vivvo_R-primary);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 34px;
}

.vivvo_R-flash-txt {
  font-size: 12px;
  font-weight: 600;
  color: var(--vivvo_R-gray);
  line-height: 1.5;
  direction: rtl;
}
.vivvo_R-flash-row:hover .vivvo_R-flash-txt { color: var(--vivvo_R-primary); }

/* ============================================================
   HERO BLOCK secondaire
   ============================================================ */
.vivvo_R-hero-block {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  margin-bottom: 32px;
}

.vivvo_R-hero-main {
  position: relative;
  border-radius: var(--vivvo_R-r-md);
  overflow: hidden;
  display: block;
}

.vivvo_R-hero-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s var(--vivvo_R-ease);
}
.vivvo_R-hero-main:hover img { transform: scale(1.03); }

.vivvo_R-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
  padding: 24px 18px 18px;
  color: white;
}

.vivvo_R-hero-cat {
  background: var(--vivvo_R-primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.vivvo_R-hero-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  color: white;
  margin-bottom: 8px;
}

.vivvo_R-hero-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  display: flex;
  gap: 12px;
}

.vivvo_R-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(200,16,46,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all var(--vivvo_R-duration);
  backdrop-filter: blur(4px);
}
.vivvo_R-play-btn:hover { transform: translate(-50%,-50%) scale(1.1); background: var(--vivvo_R-primary); }

/* Hero side list */
.vivvo_R-hero-side { display: flex; flex-direction: column; gap: 0; }

.vivvo_R-hero-side-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--vivvo_R-border);
  align-items: start;
  transition: opacity var(--vivvo_R-duration);
}
.vivvo_R-hero-side-item:last-child { border-bottom: none; }
.vivvo_R-hero-side-item:hover { opacity: 0.8; }

.vivvo_R-hero-side-item img {
  width: 90px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--vivvo_R-r-sm);
}

.vivvo_R-hero-side-cat { font-size: 10px; color: var(--vivvo_R-primary); font-weight: 800; margin-bottom: 4px; text-transform: uppercase; }
.vivvo_R-hero-side-title { font-size: 13px; font-weight: 700; line-height: 1.45; color: var(--vivvo_R-black); }
.vivvo_R-hero-side-item:hover .vivvo_R-hero-side-title { color: var(--vivvo_R-primary); }
.vivvo_R-hero-side-time { font-size: 11px; color: var(--vivvo_R-gray3); margin-top: 4px; }

/* ============================================================
   CARDS grille 4
   ============================================================ */
.vivvo_R-grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.vivvo_R-card {
  position: relative;
  border-radius: var(--vivvo_R-r-md);
  overflow: hidden;
  background: var(--vivvo_R-white);
  border: 1px solid var(--vivvo_R-border);
  transition: all var(--vivvo_R-duration) var(--vivvo_R-ease);
  display: block;
}

.vivvo_R-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vivvo_R-shadow-md);
  border-color: transparent;
}

.vivvo_R-card-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  transition: transform 0.4s var(--vivvo_R-ease);
}
.vivvo_R-card:hover .vivvo_R-card-img { transform: scale(1.05); }

.vivvo_R-card-body { padding: 12px 14px 14px; }

.vivvo_R-card-cat {
  font-size: 10px;
  color: var(--vivvo_R-primary);
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vivvo_R-card-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--vivvo_R-black);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vivvo_R-card:hover .vivvo_R-card-title { color: var(--vivvo_R-primary); }

.vivvo_R-card-time { font-size: 11px; color: var(--vivvo_R-gray3); display: flex; align-items: center; gap: 4px; }

.vivvo_R-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--vivvo_R-primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.vivvo_R-sidebar { display: flex; flex-direction: column; gap: 20px; }

.vivvo_R-widget {
  background: var(--vivvo_R-white);
  border-radius: var(--vivvo_R-r-md);
  border: 1px solid var(--vivvo_R-border);
  overflow: hidden;
}

.vivvo_R-widget-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--vivvo_R-black);
  padding: 13px 16px 12px;
  border-bottom: 2px solid var(--vivvo_R-border);
  position: relative;
}
.vivvo_R-widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 16px;
  width: 36px;
  height: 2px;
  background: var(--vivvo_R-primary);
}

/* Sidebar list items */
.vivvo_R-sidebar-list-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--vivvo_R-border);
  align-items: start;
  transition: background var(--vivvo_R-duration);
}
.vivvo_R-sidebar-list-item:last-child { border-bottom: none; }
.vivvo_R-sidebar-list-item:hover { background: var(--vivvo_R-light); }
.vivvo_R-sidebar-list-item img { width: 76px; height: 50px; object-fit: cover; border-radius: var(--vivvo_R-r-sm); }
.vivvo_R-sidebar-list-title { font-size: 12px; font-weight: 700; line-height: 1.45; color: var(--vivvo_R-black); }
.vivvo_R-sidebar-list-item:hover .vivvo_R-sidebar-list-title { color: var(--vivvo_R-primary); }
.vivvo_R-sidebar-list-time { font-size: 10px; color: var(--vivvo_R-gray3); margin-top: 3px; }

/* Flash widget sidebar */
.vivvo_R-flash-widget { border: 1px solid var(--vivvo_R-border); border-radius: var(--vivvo_R-r-md); overflow: hidden; }
.vivvo_R-flash-header {
  background: var(--vivvo_R-dark);
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vivvo_R-flash-header::before { content: ''; width: 8px; height: 8px; background: var(--vivvo_R-primary); border-radius: 50%; animation: vivvo_R-blink 1s infinite; }
.vivvo_R-flash-list { background: var(--vivvo_R-white); }
.vivvo_R-flash-item {
  display: flex;
  align-items: start;
  gap: 8px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--vivvo_R-border);
  font-size: 12px;
  line-height: 1.5;
  transition: background var(--vivvo_R-duration);
}
.vivvo_R-flash-item:last-child { border-bottom: none; }
.vivvo_R-flash-item:hover { background: var(--vivvo_R-light); }
.vivvo_R-flash-time { color: var(--vivvo_R-primary); font-size: 10px; font-weight: 800; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
.vivvo_R-flash-title { font-weight: 600; color: var(--vivvo_R-gray); }
.vivvo_R-flash-item:hover .vivvo_R-flash-title { color: var(--vivvo_R-primary); }

/* Ad widget */
.vivvo_R-ad-widget { text-align: center; }
.vivvo_R-ad-label { font-size: 10px; color: var(--vivvo_R-gray3); margin-top: 4px; padding-bottom: 4px; }

/* ============================================================
   HERO ROW — Pub | Slider | Flash (responsive)
   ============================================================ */
@media (max-width: 1100px) {
  .vivvo_R-hero-row { grid-template-columns: 0 1fr 240px; }
  .vivvo_R-hero-pub { display: none; }
}
@media (max-width: 768px) {
  .vivvo_R-hero-row { grid-template-columns: 1fr; }
  .vivvo_R-hero-pub { display: none; }
  .vivvo_R-hero-flash { height: 240px; }
  .vivvo_R-hslider { height: 260px; }
  .vivvo_R-hslide-title { font-size: 15px; }
  .vivvo_R-hslide-info { bottom: 46px; right: 14px; left: 14px; }
  .vivvo_R-hslider-num { width: 24px; height: 24px; font-size: 10px; }
}

/* ============================================================
   MOST READ (pleine largeur, fond doux)
   ============================================================ */
.vivvo_R-mr-fw-section {
  background: var(--vivvo_R-light2);
  padding: var(--vivvo_R-section-pad) 0;
  margin-bottom: 0;
}

.vivvo_R-most-read-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.vivvo_R-most-read-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vivvo_R-most-read-item {
  display: flex;
  gap: 12px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid var(--vivvo_R-border);
}

.vivvo_R-most-read-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--vivvo_R-primary);
  opacity: 0.22;
  line-height: 1;
  flex-shrink: 0;
  width: 34px;
}

.vivvo_R-most-read-cat { font-size: 10px; color: var(--vivvo_R-primary); font-weight: 800; margin-bottom: 4px; text-transform: uppercase; }
.vivvo_R-most-read-title { font-size: 13px; font-weight: 700; line-height: 1.5; color: var(--vivvo_R-black); }
.vivvo_R-most-read-item:hover .vivvo_R-most-read-title { color: var(--vivvo_R-primary); }

/* ============================================================
   SELECTION (3 colonnes)
   ============================================================ */
.vivvo_R-selection-section { margin-bottom: 32px; }

.vivvo_R-selection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.vivvo_R-selection-card {
  border-radius: var(--vivvo_R-r-md);
  overflow: hidden;
  background: var(--vivvo_R-white);
  border: 1px solid var(--vivvo_R-border);
  transition: all var(--vivvo_R-duration) var(--vivvo_R-ease);
  display: block;
}
.vivvo_R-selection-card:hover { transform: translateY(-4px); box-shadow: var(--vivvo_R-shadow-md); border-color: transparent; }

.vivvo_R-selection-img { width: 100%; height: 200px; object-fit: cover; }
.vivvo_R-selection-body { padding: 16px; }
.vivvo_R-selection-tag { font-size: 10px; font-weight: 800; color: var(--vivvo_R-primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.vivvo_R-selection-title { font-size: 16px; font-weight: 800; line-height: 1.5; color: var(--vivvo_R-black); margin-bottom: 10px; }
.vivvo_R-selection-card:hover .vivvo_R-selection-title { color: var(--vivvo_R-primary); }
.vivvo_R-selection-excerpt { font-size: 13px; color: var(--vivvo_R-gray2); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
.vivvo_R-selection-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--vivvo_R-gray3); padding-top: 10px; border-top: 1px solid var(--vivvo_R-border); }
.vivvo_R-selection-author { font-weight: 700; color: var(--vivvo_R-gray2); }
.vivvo_R-read-time { display: flex; align-items: center; gap: 4px; }

/* ============================================================
   ABONNÉS (cadre bleu)
   ============================================================ */
.vivvo_R-abonnes-section { margin-bottom: 32px; padding: 3px; }

.vivvo_R-abonnes-inner {
  border: 1px solid #bfdbfe;
  border-radius: var(--vivvo_R-r-lg);
  padding: 24px 22px;
  background: white;
  position: relative;
}
.vivvo_R-abonnes-inner::before {
  content: '';
  position: absolute;
  top: -3px; right: -3px;
  width: 18px; height: 18px;
  border-width: 3px 3px 0 0;
  border-style: solid;
  border-color: #93c5fd;
  border-radius: 0 4px 0 0;
}
.vivvo_R-abonnes-inner::after {
  content: '';
  position: absolute;
  bottom: -3px; left: -3px;
  width: 18px; height: 18px;
  border-width: 0 0 3px 3px;
  border-style: solid;
  border-color: #93c5fd;
  border-radius: 0 0 4px 0;
}

.vivvo_R-abonnes-title { font-size: 20px; font-weight: 900; color: #1e3a5f; margin-bottom: 18px; }
.vivvo_R-abonnes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vivvo_R-abonnes-card { display: block; }
.vivvo_R-abonnes-img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--vivvo_R-r-sm); margin-bottom: 8px; display: block; }
.vivvo_R-abonnes-img-placeholder { width: 100%; height: 140px; background: var(--vivvo_R-light); border-radius: var(--vivvo_R-r-sm); margin-bottom: 8px; }
.vivvo_R-abonnes-title-text { font-size: 13px; font-weight: 700; line-height: 1.5; color: var(--vivvo_R-black); }
.vivvo_R-abonnes-card:hover .vivvo_R-abonnes-title-text { color: var(--vivvo_R-primary); }

/* ============================================================
   CAT SECTION générique
   ============================================================ */
.vivvo_R-cat-section { margin-bottom: 32px; }
.vivvo_R-cat-grid-main { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vivvo_R-cat-main-item { position: relative; border-radius: var(--vivvo_R-r-md); overflow: hidden; display: block; }
.vivvo_R-cat-main-item img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.4s; }
.vivvo_R-cat-main-item:hover img { transform: scale(1.04); }
.vivvo_R-cat-main-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 60%); padding: 16px 14px 12px; }
.vivvo_R-cat-main-title { font-size: 15px; font-weight: 800; line-height: 1.4; color: white; }
.vivvo_R-cat-main-cat { font-size: 10px; color: white; font-weight: 800; background: var(--vivvo_R-primary); padding: 2px 8px; border-radius: 20px; display: inline-block; margin-bottom: 6px; }
.vivvo_R-cat-list { display: flex; flex-direction: column; gap: 0; }
.vivvo_R-cat-list-item { display: grid; grid-template-columns: 86px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--vivvo_R-border); align-items: start; }
.vivvo_R-cat-list-item:last-child { border-bottom: none; }
.vivvo_R-cat-list-item img { width: 86px; height: 56px; object-fit: cover; border-radius: var(--vivvo_R-r-sm); }
.vivvo_R-cat-list-title { font-size: 13px; font-weight: 700; line-height: 1.45; color: var(--vivvo_R-black); }
.vivvo_R-cat-list-item:hover .vivvo_R-cat-list-title { color: var(--vivvo_R-primary); }
.vivvo_R-cat-list-time { font-size: 11px; color: var(--vivvo_R-gray3); margin-top: 4px; }

/* ============================================================
   WRITERS section
   ============================================================ */
.vivvo_R-writers-section { margin-bottom: 32px; }
.vivvo_R-writers-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.vivvo_R-writer-card {
  text-align: center;
  padding: 16px 10px;
  border: 1px solid var(--vivvo_R-border);
  border-radius: var(--vivvo_R-r-md);
  background: var(--vivvo_R-white);
  transition: all var(--vivvo_R-duration);
  display: block;
}
.vivvo_R-writer-card:hover { border-color: var(--vivvo_R-primary); box-shadow: var(--vivvo_R-shadow); transform: translateY(-2px); }

.vivvo_R-writer-avatar { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; border: 3px solid var(--vivvo_R-border); transition: border-color var(--vivvo_R-duration); }
.vivvo_R-writer-card:hover .vivvo_R-writer-avatar { border-color: var(--vivvo_R-primary); }
.vivvo_R-writer-name { font-size: 13px; font-weight: 800; color: var(--vivvo_R-black); margin-bottom: 6px; }
.vivvo_R-writer-title { font-size: 12px; font-weight: 600; line-height: 1.45; color: var(--vivvo_R-gray2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vivvo_R-writer-card:hover .vivvo_R-writer-title { color: var(--vivvo_R-primary); }

/* ============================================================
   WRITERS pleine largeur
   ============================================================ */
.vivvo_R-writers-fullwidth {
  background: var(--vivvo_R-white);
  padding: var(--vivvo_R-section-pad) 0;
  border-top: 3px solid var(--vivvo_R-primary);
  border-bottom: 1px solid var(--vivvo_R-border);
}

.vivvo_R-writers-fullwidth-inner { display: grid; grid-template-columns: 260px 1fr; gap: 0; align-items: start; }
.vivvo_R-writers-left { padding: 0 28px 0 0; border-left: 1px solid var(--vivvo_R-border); }
.vivvo_R-writers-left-title { font-size: 26px; font-weight: 900; color: var(--vivvo_R-black); margin-bottom: 8px; }
.vivvo_R-writers-left-sub { font-size: 13px; color: var(--vivvo_R-gray3); margin-bottom: 20px; }
.vivvo_R-writers-left-pub { width: 100%; height: 170px; background: var(--vivvo_R-light); border: 1px dashed var(--vivvo_R-gray4); border-radius: var(--vivvo_R-r-sm); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--vivvo_R-gray3); }
.vivvo_R-writers-fullwidth-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; padding-right: 28px; }

/* Most read pleine largeur col gauche */
.vivvo_R-mr-fullwidth-inner { display: grid; grid-template-columns: 260px 1fr; gap: 0; align-items: start; }
.vivvo_R-mr-left { padding: 0 28px 0 0; border-left: 1px solid var(--vivvo_R-border); }
.vivvo_R-mr-left-title { font-size: 26px; font-weight: 900; color: var(--vivvo_R-black); margin-bottom: 20px; }
.vivvo_R-mr-left-pub { margin-top: 20px; }
.vivvo_R-mr-left-pub-box { width: 100%; height: 190px; background: var(--vivvo_R-white); border: 1px dashed var(--vivvo_R-gray4); border-radius: var(--vivvo_R-r-sm); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--vivvo_R-gray3); }
.vivvo_R-mr-list { display: flex; flex-direction: column; padding-right: 28px; }
.vivvo_R-mr-list-item { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--vivvo_R-border); transition: opacity var(--vivvo_R-duration); }
.vivvo_R-mr-list-item:last-child { border-bottom: none; }
.vivvo_R-mr-list-item:hover { opacity: 0.75; }
.vivvo_R-mr-list-num { font-size: 42px; font-weight: 900; color: var(--vivvo_R-black); line-height: 1; opacity: 0.16; text-align: center; }
.vivvo_R-mr-list-title { font-size: 15px; font-weight: 700; line-height: 1.55; color: var(--vivvo_R-black); padding-top: 4px; }
.vivvo_R-mr-list-item:hover .vivvo_R-mr-list-title { color: var(--vivvo_R-primary); }

/* ============================================================
   PLUSVUES (video section dark)
   ============================================================ */
.vivvo_R-plusvues-section {
  background: #111318;
  padding: var(--vivvo_R-section-pad) 0;
  margin-bottom: 0;
}

.vivvo_R-plusvues-section .vivvo_R-section-title { border-bottom-color: #2a2a2a; margin-bottom: 20px; }
.vivvo_R-plusvues-section .vivvo_R-section-title::after { background: var(--vivvo_R-primary); }
.vivvo_R-plusvues-section .vivvo_R-section-title h2 { color: white; }
.vivvo_R-plusvues-section .vivvo_R-section-title-icon { background: var(--vivvo_R-primary); }
.vivvo_R-plusvues-section .vivvo_R-section-title-link { color: #64b5f6; border-color: rgba(100,181,246,0.2); background: rgba(100,181,246,0.05); }

.vivvo_R-plusvues-layout { display: grid; grid-template-columns: 1fr 310px; gap: 24px; align-items: start; }

.vivvo_R-plusvues-main { position: relative; border-radius: var(--vivvo_R-r-md); overflow: hidden; background: #000; display: block; }
.vivvo_R-plusvues-main-player { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; overflow: hidden; }
.vivvo_R-plusvues-main-player img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.vivvo_R-plusvues-main:hover .vivvo_R-plusvues-main-player img { transform: scale(1.03); }

.vivvo_R-plusvues-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  background: rgba(200,16,46,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: all var(--vivvo_R-duration);
  backdrop-filter: blur(4px);
  z-index: 2;
  border: none;
  cursor: pointer;
}
.vivvo_R-plusvues-main:hover .vivvo_R-plusvues-play { background: var(--vivvo_R-primary); transform: translate(-50%,-50%) scale(1.1); }

.vivvo_R-plusvues-duration { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,0.8); color: white; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 3px; z-index: 2; }

.vivvo_R-plusvues-main-info { padding: 14px 0 0; }
.vivvo_R-plusvues-main-cat { font-size: 10px; font-weight: 800; color: var(--vivvo_R-primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.vivvo_R-plusvues-main-title { font-size: 17px; font-weight: 800; line-height: 1.5; color: white; margin-bottom: 6px; }
.vivvo_R-plusvues-main:hover .vivvo_R-plusvues-main-title { color: #93c5fd; }
.vivvo_R-plusvues-main-meta { font-size: 11px; color: #52525b; display: flex; gap: 12px; }

.vivvo_R-plusvues-list { display: flex; flex-direction: column; }
.vivvo_R-plusvues-item { display: grid; grid-template-columns: 120px 1fr; gap: 11px; padding: 12px 0; border-bottom: 1px solid #1e1e24; align-items: start; }
.vivvo_R-plusvues-item:first-child { padding-top: 0; }
.vivvo_R-plusvues-item:last-child { border-bottom: none; }

.vivvo_R-plusvues-item-thumb { position: relative; border-radius: 5px; overflow: hidden; aspect-ratio: 16/9; background: #1a1a1a; }
.vivvo_R-plusvues-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.vivvo_R-plusvues-item:hover .vivvo_R-plusvues-item-thumb img { transform: scale(1.06); }

.vivvo_R-plusvues-item-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(200,16,46,0.0); color: white; font-size: 18px; transition: background var(--vivvo_R-duration); }
.vivvo_R-plusvues-item:hover .vivvo_R-plusvues-item-play { background: rgba(200,16,46,0.6); }
.vivvo_R-plusvues-item-dur { position: absolute; bottom: 4px; left: 4px; background: rgba(0,0,0,0.8); color: white; font-size: 10px; font-weight: 700; padding: 1px 5px; border-radius: 2px; }
.vivvo_R-plusvues-item-body { display: flex; flex-direction: column; gap: 4px; }
.vivvo_R-plusvues-item-cat { font-size: 10px; font-weight: 800; color: var(--vivvo_R-primary); text-transform: uppercase; }
.vivvo_R-plusvues-item-title { font-size: 13px; font-weight: 700; line-height: 1.45; color: #a1a1aa; transition: color var(--vivvo_R-duration); }
.vivvo_R-plusvues-item:hover .vivvo_R-plusvues-item-title { color: white; }
.vivvo_R-plusvues-item-time { font-size: 11px; color: #52525b; }

@media (max-width: 1024px) {
  .vivvo_R-plusvues-layout { grid-template-columns: 1fr; }
  .vivvo_R-plusvues-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vivvo_R-plusvues-item { border-bottom: none; padding: 0; }
}

/* ============================================================
   AVOIR section (carousel portrait)
   ============================================================ */
.vivvo_R-avoir-section { margin-bottom: 32px; }
.vivvo_R-avoir-wrapper { overflow: hidden; }
.vivvo_R-avoir-track { display: flex; gap: 14px; transition: transform 0.45s var(--vivvo_R-ease); }

.vivvo_R-avoir-card {
  flex: 0 0 calc(25% - 11px);
  position: relative;
  border-radius: var(--vivvo_R-r-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
  min-height: 300px;
  max-height: 360px;
  display: block;
}

.vivvo_R-avoir-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.vivvo_R-avoir-card:hover img { transform: scale(1.04); }

.vivvo_R-avoir-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 12px;
}

.vivvo_R-avoir-subtitle { font-size: 11px; color: rgba(255,255,255,0.75); margin-bottom: 5px; line-height: 1.4; }
.vivvo_R-avoir-title { font-size: 14px; font-weight: 800; color: white; line-height: 1.4; }

.vivvo_R-avoir-play {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  background: rgba(200,16,46,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 11px;
}

.vivvo_R-avoir-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }
.vivvo_R-avoir-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--vivvo_R-border);
  background: var(--vivvo_R-white);
  color: var(--vivvo_R-gray2);
  font-size: 13px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-avoir-arrow:hover { background: var(--vivvo_R-primary); color: white; border-color: var(--vivvo_R-primary); }
.vivvo_R-avoir-dots { display: flex; gap: 5px; }
.vivvo_R-avoir-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--vivvo_R-border); cursor: pointer; transition: all var(--vivvo_R-duration); }
.vivvo_R-avoir-dot.vivvo_R-active { background: var(--vivvo_R-primary); width: 18px; border-radius: 4px; }

@media (max-width: 1024px) { .vivvo_R-avoir-card { flex: 0 0 calc(50% - 7px); } }
@media (max-width: 600px) { .vivvo_R-avoir-card { flex: 0 0 calc(78% - 7px); max-height: 300px; } }

/* ============================================================
   AKHBAR SAAA (أخبار الساعة) — pleine largeur
   ============================================================ */
.vivvo_R-as-section {
  background: var(--vivvo_R-white);
  padding: var(--vivvo_R-section-pad) 0;
  border-top: 1px solid var(--vivvo_R-border);
  border-bottom: 1px solid var(--vivvo_R-border);
}

.vivvo_R-as-header {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  position: relative;
}

.vivvo_R-as-deco {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--vivvo_R-border) 30%, var(--vivvo_R-black) 100%);
  margin-left: 16px;
  order: 1;
}

.vivvo_R-as-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--vivvo_R-black);
  white-space: nowrap;
  order: 2;
  position: relative;
}

.vivvo_R-as-title::before {
  content: '';
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  background: #d4a017;
  border-radius: 50%;
}
.vivvo_R-as-title::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--vivvo_R-gray4);
  border-radius: 50%;
}

.vivvo_R-as-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.vivvo_R-as-card {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--vivvo_R-border);
  padding: 0 14px;
  transition: opacity var(--vivvo_R-duration);
}
.vivvo_R-as-card:last-child { border-left: none; }
.vivvo_R-as-card:first-child { padding-right: 0; }
.vivvo_R-as-card:hover { opacity: 0.8; }

.vivvo_R-as-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--vivvo_R-r-sm);
  margin-bottom: 10px;
  background: var(--vivvo_R-light2);
}
.vivvo_R-as-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.vivvo_R-as-card:hover .vivvo_R-as-img-wrap img { transform: scale(1.05); }
.vivvo_R-as-img-placeholder { width: 100%; height: 100%; background: var(--vivvo_R-light2); }

.vivvo_R-as-body { display: flex; flex-direction: column; gap: 5px; }
.vivvo_R-as-cat { font-size: 10px; font-weight: 800; color: var(--vivvo_R-primary); text-transform: uppercase; letter-spacing: 0.3px; }
.vivvo_R-as-title-text { font-size: 13px; font-weight: 700; line-height: 1.45; color: var(--vivvo_R-black); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.vivvo_R-as-card:hover .vivvo_R-as-title-text { color: var(--vivvo_R-primary); }

@media (max-width: 1100px) { .vivvo_R-as-track { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .vivvo_R-as-track { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   VIDEOS LIST — pleine largeur + sidebar (Mediapart style)
   ============================================================ */
.vivvo_R-vl-section { margin-bottom: 28px; }

/* Pleine largeur */
.vivvo_R-vl-content {
  background: var(--vivvo_R-white);
  padding: var(--vivvo_R-section-pad) 0;
  border-top: 1px solid var(--vivvo_R-border);
}

.vivvo_R-vl-list { display: flex; flex-direction: column; gap: 0; }

.vivvo_R-vl-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--vivvo_R-border);
  align-items: start;
  transition: opacity var(--vivvo_R-duration);
}
.vivvo_R-vl-item:first-child { padding-top: 0; }
.vivvo_R-vl-item:last-child { border-bottom: none; padding-bottom: 0; }
.vivvo_R-vl-item:hover { opacity: 0.82; }

.vivvo_R-vl-thumb {
  position: relative;
  width: 180px;
  height: 101px;
  border-radius: var(--vivvo_R-r-sm);
  overflow: hidden;
  background: var(--vivvo_R-dark);
  flex-shrink: 0;
}

.vivvo_R-vl-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s; }
.vivvo_R-vl-item:hover .vivvo_R-vl-thumb img { transform: scale(1.06); }
.vivvo_R-vl-thumb-ph { position: absolute; inset: 0; background: var(--vivvo_R-dark2); }

.vivvo_R-vl-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--vivvo_R-black);
  font-size: 13px;
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-vl-item:hover .vivvo_R-vl-play { background: white; transform: translate(-50%,-50%) scale(1.1); }

.vivvo_R-vl-dur {
  position: absolute;
  bottom: 5px; left: 5px;
  background: rgba(0,0,0,0.75);
  color: white;
  font-size: 10px; font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
}

.vivvo_R-vl-body { display: flex; flex-direction: column; gap: 5px; }
.vivvo_R-vl-meta { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.vivvo_R-vl-cat { font-size: 11px; font-weight: 800; color: var(--vivvo_R-primary); }
.vivvo_R-vl-sep { font-size: 11px; color: var(--vivvo_R-gray3); }
.vivvo_R-vl-type { font-size: 11px; color: var(--vivvo_R-gray2); }
.vivvo_R-vl-title { font-size: 15px; font-weight: 800; line-height: 1.45; color: var(--vivvo_R-black); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.vivvo_R-vl-item:hover .vivvo_R-vl-title { color: var(--vivvo_R-primary); }
.vivvo_R-vl-author { font-size: 12px; color: var(--vivvo_R-gray3); }

.vivvo_R-vl-footer { margin-top: 18px; }
.vivvo_R-vl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--vivvo_R-black);
  color: var(--vivvo_R-black);
  font-size: 13px; font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--vivvo_R-r-lg);
  transition: all var(--vivvo_R-duration);
  font-family: var(--vivvo_R-font-ar);
}
.vivvo_R-vl-btn:hover { background: var(--vivvo_R-black); color: white; }

/* Sidebar */
.vivvo_R-vl-sidebar .vivvo_R-vl-item { grid-template-columns: 108px 1fr; gap: 10px; padding: 10px 0; }
.vivvo_R-vl-sidebar .vivvo_R-vl-thumb { width: 108px; height: 61px; }
.vivvo_R-vl-sidebar .vivvo_R-vl-title { font-size: 12px; -webkit-line-clamp: 2; }
.vivvo_R-vl-sidebar .vivvo_R-vl-play { width: 26px; height: 26px; font-size: 10px; }
.vivvo_R-vl-sidebar .vivvo_R-vl-btn { font-size: 12px; padding: 8px 14px; width: 100%; justify-content: center; margin-top: 4px; }

/* ============================================================
   SPORT GRID
   ============================================================ */
.vivvo_R-sg-section { margin-bottom: 0; }

.vivvo_R-sg-header { background: #1d4ed8; color: white; overflow: hidden; }
.vivvo_R-sg-title { font-size: 19px; font-weight: 900; text-align: center; padding: 10px 20px 8px; letter-spacing: 0.5px; }

.vivvo_R-sg-ticker-wrap { overflow: hidden; height: 32px; background: rgba(0,0,0,0.18); border-top: 1px solid rgba(255,255,255,0.12); }
.vivvo_R-sg-ticker-inner { display: flex; gap: 40px; white-space: nowrap; animation: vivvo_R-sg-ticker 30s linear infinite; height: 32px; align-items: center; padding: 0 20px; }
.vivvo_R-sg-ticker-item { color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600; white-space: nowrap; }
.vivvo_R-sg-ticker-item::before { content: '• '; color: #fbbf24; }

@keyframes vivvo_R-sg-ticker { 0%{transform:translateX(-50%)} 100%{transform:translateX(0%)} }

.vivvo_R-sg-grid { display: grid; grid-template-columns: 1fr 1fr; height: 450px; }
.vivvo_R-sg-small-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }

.vivvo_R-sg-small-card { position: relative; background-size: cover; background-position: center; background-color: var(--vivvo_R-dark2); overflow: hidden; display: block; }
.vivvo_R-sg-small-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 60%); transition: background var(--vivvo_R-duration); }
.vivvo_R-sg-small-card:hover .vivvo_R-sg-small-scrim { background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 70%, transparent 100%); }
.vivvo_R-sg-small-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 10px 10px; color: white; }
.vivvo_R-sg-small-date { font-size: 10px; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.vivvo_R-sg-small-title { font-size: 13px; font-weight: 800; line-height: 1.4; color: white; }

.vivvo_R-sg-hero-card { position: relative; background-size: cover; background-position: center; background-color: var(--vivvo_R-dark); overflow: hidden; display: block; }
.vivvo_R-sg-hero-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); transition: background var(--vivvo_R-duration); }
.vivvo_R-sg-hero-card:hover .vivvo_R-sg-hero-scrim { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 70%, transparent 100%); }
.vivvo_R-sg-hero-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 18px; color: white; }
.vivvo_R-sg-hero-date { font-size: 11px; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.vivvo_R-sg-hero-title { font-size: 21px; font-weight: 900; line-height: 1.4; color: white; }

@media (max-width: 768px) {
  .vivvo_R-sg-grid { grid-template-columns: 1fr; height: auto; }
  .vivvo_R-sg-small-grid { height: 280px; }
  .vivvo_R-sg-hero-card { height: 220px; }
}

/* ============================================================
   VIDEOS ROW (dark, 4 cols)
   ============================================================ */
.vivvo_R-vr-section { background: #111318; padding: 24px 0 28px; }
.vivvo_R-vr-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 16px; }
.vivvo_R-vr-title { font-size: 20px; font-weight: 900; color: white; }
.vivvo_R-vr-header-actions { display: flex; align-items: center; gap: 10px; }
.vivvo_R-vr-all-link { font-size: 12px; color: #71717a; font-weight: 600; transition: color var(--vivvo_R-duration); }
.vivvo_R-vr-all-link:hover { color: white; }
.vivvo_R-vr-arrows { display: flex; gap: 5px; }
.vivvo_R-vr-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid #3f3f46;
  background: transparent;
  color: #71717a;
  font-size: 13px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-vr-arrow:hover { border-color: white; color: white; background: rgba(255,255,255,0.06); }

.vivvo_R-vr-wrapper { overflow: hidden; }
.vivvo_R-vr-track { display: flex; gap: 14px; transition: transform 0.4s var(--vivvo_R-ease); }

.vivvo_R-vr-card { flex: 0 0 calc(25% - 11px); display: block; cursor: pointer; }
.vivvo_R-vr-thumb { position: relative; border-radius: var(--vivvo_R-r-sm); overflow: hidden; margin-bottom: 10px; background: #1e293b; }
.vivvo_R-vr-thumb img { width: 100%; height: 152px; object-fit: cover; display: block; transition: transform 0.4s; }
.vivvo_R-vr-card:hover .vivvo_R-vr-thumb img { transform: scale(1.05); }
.vivvo_R-vr-thumb-placeholder { width: 100%; height: 152px; background: #1e293b; }

.vivvo_R-vr-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.88);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #111;
  font-size: 15px;
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-vr-card:hover .vivvo_R-vr-play { background: white; transform: translate(-50%,-50%) scale(1.1); }

.vivvo_R-vr-duration { position: absolute; bottom: 7px; left: 7px; background: rgba(0,0,0,0.75); color: white; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; }
.vivvo_R-vr-title-text { font-size: 13px; font-weight: 700; line-height: 1.5; color: #d4d4d8; transition: color var(--vivvo_R-duration); }
.vivvo_R-vr-card:hover .vivvo_R-vr-title-text { color: white; }

@media (max-width: 1024px) { .vivvo_R-vr-card { flex: 0 0 calc(50% - 7px); } }
@media (max-width: 600px) { .vivvo_R-vr-card { flex: 0 0 calc(78% - 7px); } }

/* ============================================================
   ABONNÉS
   ============================================================ */
.vivvo_R-abonnes-section { margin-bottom: 32px; padding: 3px; }
.vivvo_R-abonnes-inner {
  border: 1px solid #bfdbfe;
  border-radius: var(--vivvo_R-r-lg);
  padding: 24px 22px;
  background: var(--vivvo_R-white);
  position: relative;
}
.vivvo_R-abonnes-inner::before { content:''; position:absolute; top:-3px; right:-3px; width:18px; height:18px; border-width:3px 3px 0 0; border-style:solid; border-color:#93c5fd; border-radius:0 4px 0 0; }
.vivvo_R-abonnes-inner::after { content:''; position:absolute; bottom:-3px; left:-3px; width:18px; height:18px; border-width:0 0 3px 3px; border-style:solid; border-color:#93c5fd; border-radius:0 0 4px 0; }
.vivvo_R-abonnes-title { font-size: 20px; font-weight: 900; color: #1e3a5f; margin-bottom: 18px; }
.vivvo_R-abonnes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vivvo_R-abonnes-card { display: block; }
.vivvo_R-abonnes-img { width:100%; height:138px; object-fit:cover; border-radius:var(--vivvo_R-r-sm); margin-bottom:8px; display:block; }
.vivvo_R-abonnes-img-placeholder { width:100%; height:138px; background:var(--vivvo_R-light); border-radius:var(--vivvo_R-r-sm); margin-bottom:8px; }
.vivvo_R-abonnes-title-text { font-size:13px; font-weight:700; line-height:1.5; color:var(--vivvo_R-black); }
.vivvo_R-abonnes-card:hover .vivvo_R-abonnes-title-text { color:var(--vivvo_R-primary); }

/* ============================================================
   SEARCH BAR (inline)
   ============================================================ */
.vivvo_R-search-bar { background: var(--vivvo_R-white); border-top: 1px solid var(--vivvo_R-border); }
.vivvo_R-search-suggestions { position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.vivvo_R-footer { background: var(--vivvo_R-dark); color: #71717a; padding: 40px 0 0; margin-top: 0; }

.vivvo_R-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 32px; }
.vivvo_R-footer-logo { margin-bottom: 14px; }
.vivvo_R-footer-logo-text { font-size: 22px; font-weight: 900; color: var(--vivvo_R-primary); }
.vivvo_R-footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.vivvo_R-footer-social { display: flex; gap: 8px; }
.vivvo_R-footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #3f3f46; display: flex; align-items: center; justify-content: center; color: #71717a; font-size: 13px; transition: all var(--vivvo_R-duration); }
.vivvo_R-footer-social a:hover { background: var(--vivvo_R-primary); border-color: var(--vivvo_R-primary); color: white; }

.vivvo_R-footer-col-title { font-size: 14px; font-weight: 800; color: white; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid #3f3f46; }
.vivvo_R-footer-col-links { display: flex; flex-direction: column; gap: 9px; }
.vivvo_R-footer-col-links a { font-size: 13px; color: #71717a; transition: color var(--vivvo_R-duration); }
.vivvo_R-footer-col-links a:hover { color: var(--vivvo_R-primary); }

.vivvo_R-footer-bottom { border-top: 1px solid #3f3f46; padding: 14px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#vivvo_R-back-top {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 40px; height: 40px;
  background: var(--vivvo_R-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--vivvo_R-shadow-md);
  z-index: 999;
  transition: all var(--vivvo_R-duration);
}
#vivvo_R-back-top:hover { transform: translateY(-2px); box-shadow: var(--vivvo_R-shadow-lg); }

/* ============================================================
   ARTICLE (single.php)
   ============================================================ */
.vivvo_R-article-content p { margin-bottom: 18px; }
.vivvo_R-article-content h2 { font-size: 20px; font-weight: 800; margin: 24px 0 12px; color: var(--vivvo_R-black); }
.vivvo_R-article-content h3 { font-size: 17px; font-weight: 800; margin: 20px 0 10px; }
.vivvo_R-article-content blockquote { border-right: 4px solid var(--vivvo_R-primary); padding: 12px 16px; background: var(--vivvo_R-light); margin: 20px 0; border-radius: 0 4px 4px 0; font-style: italic; }
.vivvo_R-article-content img { max-width: 100%; border-radius: var(--vivvo_R-r-sm); margin: 16px 0; }
.vivvo_R-article-content a { color: var(--vivvo_R-primary); text-decoration: underline; }
.vivvo_R-article-content ul, .vivvo_R-article-content ol { padding-right: 20px; margin-bottom: 16px; }
.vivvo_R-article-content li { margin-bottom: 6px; }

/* Pagination */
.vivvo_R-theme .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--vivvo_R-border); border-radius: var(--vivvo_R-r-sm); font-size: 13px; color: var(--vivvo_R-gray); transition: all var(--vivvo_R-duration); }
.vivvo_R-theme .page-numbers:hover, .vivvo_R-theme .page-numbers.current { background: var(--vivvo_R-primary); color: white; border-color: var(--vivvo_R-primary); }
.vivvo_R-theme nav.navigation { width: auto; }
.vivvo_R-theme .nav-links { display: flex; gap: 5px; }

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 1024px) {
  .vivvo_R-layout-primary { grid-template-columns: 1fr; }
  .vivvo_R-hero-block { grid-template-columns: 1fr; }
  .vivvo_R-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .vivvo_R-writers-grid { grid-template-columns: repeat(3, 1fr); }
  .vivvo_R-most-read-grid { grid-template-columns: repeat(2, 1fr); }
  .vivvo_R-most-read-items { grid-template-columns: repeat(2, 1fr); }
  .vivvo_R-footer-grid { grid-template-columns: 1fr 1fr; }
  .vivvo_R-selection-grid { grid-template-columns: repeat(2, 1fr); }
  .vivvo_R-abonnes-grid { grid-template-columns: repeat(2, 1fr); }
  .vivvo_R-writers-fullwidth-inner, .vivvo_R-mr-fullwidth-inner { grid-template-columns: 1fr; }
  .vivvo_R-writers-left, .vivvo_R-mr-left { border-left: none; border-bottom: 1px solid var(--vivvo_R-border); padding: 0 0 20px; margin-bottom: 20px; }
  .vivvo_R-writers-fullwidth-grid { padding-right: 0; grid-template-columns: repeat(3, 1fr); }
  .vivvo_R-mr-list { padding-right: 0; }
}

@media (max-width: 768px) {
  .vivvo_R-grid-4 { grid-template-columns: 1fr 1fr; }
  .vivvo_R-writers-grid { grid-template-columns: repeat(2, 1fr); }
  .vivvo_R-most-read-grid { grid-template-columns: 1fr; }
  .vivvo_R-most-read-items { grid-template-columns: 1fr; }
  .vivvo_R-footer-grid { grid-template-columns: 1fr; }
  .vivvo_R-cat-grid-main { grid-template-columns: 1fr; }
  .vivvo_R-selection-grid { grid-template-columns: 1fr; }
  .vivvo_R-abonnes-grid { grid-template-columns: repeat(2, 1fr); }
  .vivvo_R-writers-fullwidth-grid { grid-template-columns: repeat(2, 1fr); }
  .vivvo_R-hero-main img { height: 240px; }
  .vivvo_R-hero-title { font-size: 16px; }
  .vivvo_R-vl-item { grid-template-columns: 120px 1fr; }
  .vivvo_R-vl-thumb { width: 120px; height: 68px; }
}

@media (max-width: 480px) {
  .vivvo_R-grid-4 { grid-template-columns: 1fr; }
  .vivvo_R-abonnes-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VIVVO_R — SECTION CAT 3COL (style capture)
   Cadre bordé + titre droit + [pub | principal | slider dots]
   ============================================================ */
.vivvo_R-3col-section {
  padding: 0 0 var(--vivvo_R-section-pad);
}

/* Cadre bordé */
.vivvo_R-3col-frame {
  border: 1px solid var(--vivvo_R-border);
  border-radius: var(--vivvo_R-r-md);
  overflow: hidden;
  background: var(--vivvo_R-white);
}

/* Header — ligne + titre à droite */
.vivvo_R-3col-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  border-bottom: 1px solid var(--vivvo_R-border);
  padding: 0;
}

.vivvo_R-3col-header-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to left, var(--vivvo_R-3c-color, var(--vivvo_R-primary)), transparent);
}

.vivvo_R-3col-header-title {
  font-size: 17px;
  font-weight: 900;
  color: var(--vivvo_R-black);
  padding: 10px 18px;
  border-right: 3px solid var(--vivvo_R-3c-color, var(--vivvo_R-primary));
  background: var(--vivvo_R-white);
  letter-spacing: -0.2px;
}

/* Grille 3 colonnes */
.vivvo_R-3col-grid {
  display: grid;
  grid-template-columns: 240px 1fr 300px;
  min-height: 420px;
}

/* ===== GAUCHE: PUB ===== */
.vivvo_R-3col-left {
  border-left: 1px solid var(--vivvo_R-border);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--vivvo_R-light);
}

.vivvo_R-3col-pub-placeholder {
  flex: 1;
  border: 1px dashed var(--vivvo_R-gray4);
  border-radius: var(--vivvo_R-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--vivvo_R-gray3);
  background: var(--vivvo_R-white);
  min-height: 180px;
}

/* ===== CENTRE: ARTICLE PRINCIPAL ===== */
.vivvo_R-3col-main {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-left: 1px solid var(--vivvo_R-border);
  overflow: hidden;
  transition: opacity var(--vivvo_R-duration);
}
.vivvo_R-3col-main:hover { opacity: 0.92; }

.vivvo_R-3col-main-img-wrap {
  overflow: hidden;
  height: 285px;
  flex-shrink: 0;
}

.vivvo_R-3col-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--vivvo_R-ease);
}
.vivvo_R-3col-main:hover .vivvo_R-3col-main-img-wrap img { transform: scale(1.04); }

.vivvo_R-3col-main-body {
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.vivvo_R-3col-main-title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  color: var(--vivvo_R-black);
}
.vivvo_R-3col-main:hover .vivvo_R-3col-main-title { color: var(--vivvo_R-primary); }

.vivvo_R-3col-main-excerpt {
  font-size: 13px;
  color: var(--vivvo_R-gray2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dots sous excerpt (colonne centre) */
.vivvo_R-3col-main-dots {
  display: flex;
  gap: 5px;
  margin-top: auto;
  padding-top: 8px;
}

/* ===== DROITE: SLIDER ===== */
.vivvo_R-3col-right {
  position: relative;
  overflow: hidden;
}

.vivvo_R-3col-slides { height: 100%; }

.vivvo_R-3col-slide {
  display: none;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  transition: opacity var(--vivvo_R-duration);
}
.vivvo_R-3col-slide--on { display: flex; }

.vivvo_R-3col-slide-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.5s var(--vivvo_R-ease);
}
.vivvo_R-3col-slide:hover .vivvo_R-3col-slide-img { transform: scale(1.04); }

.vivvo_R-3col-slide-cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px 4px;
  display: block;
  /* color vient du style inline */
}

.vivvo_R-3col-slide-title {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  color: var(--vivvo_R-black);
  padding: 0 16px 8px;
}
.vivvo_R-3col-slide:hover .vivvo_R-3col-slide-title { color: var(--vivvo_R-primary); }

.vivvo_R-3col-slide-exc {
  font-size: 12px;
  color: var(--vivvo_R-gray2);
  line-height: 1.6;
  padding: 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dots navigation slide droite */
.vivvo_R-3col-slide-dots {
  display: flex;
  gap: 5px;
  padding: 12px 16px 16px;
  margin-top: auto;
}

/* Dots partagés */
.vivvo_R-3col-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--vivvo_R-gray4);
  cursor: pointer;
  transition: all var(--vivvo_R-duration);
  flex-shrink: 0;
}

.vivvo_R-3col-dot--on {
  background: var(--vivvo_R-3c-color, var(--vivvo_R-primary));
  width: 20px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 1100px) {
  .vivvo_R-3col-grid { grid-template-columns: 0 1fr 280px; }
  .vivvo_R-3col-left { display: none; }
}
@media (max-width: 768px) {
  .vivvo_R-3col-grid { grid-template-columns: 1fr; }
  .vivvo_R-3col-right { border-top: 1px solid var(--vivvo_R-border); }
  .vivvo_R-3col-slide-img { height: 200px; }
  .vivvo_R-3col-main-img-wrap { height: 220px; }
}

/* ============================================================
   VIVVO_R — AKH WIDGET (آخر الأخبار) — colonne gauche hero-row
   Style: titre centré rouge + liste heure|titre|image + ↑↓
   ============================================================ */
.vivvo_R-akh-widget {
  background: var(--vivvo_R-white);
  border-radius: var(--vivvo_R-r-md);
  border: 1px solid var(--vivvo_R-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 420px;
  position: relative;
}

/* Titre centré */
.vivvo_R-akh-header {
  background: var(--vivvo_R-white);
  border-bottom: 2px solid var(--vivvo_R-primary);
  text-align: center;
  padding: 10px 12px 8px;
  flex-shrink: 0;
}

.vivvo_R-akh-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--vivvo_R-primary);
  letter-spacing: 0.3px;
  display: inline-block;
}

/* Track : flex-column, overflow hidden, transition translateY */
.vivvo_R-akh-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Wrapper interne qui se translate */
.vivvo_R-akh-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.38s var(--vivvo_R-ease);
}

/* Item */
.vivvo_R-akh-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 34px; /* padding-left pour laisser place aux boutons */
  border-bottom: 1px solid var(--vivvo_R-border);
  flex-shrink: 0;
  transition: background var(--vivvo_R-duration);
  min-height: 72px;
}
.vivvo_R-akh-item:last-child { border-bottom: none; }
.vivvo_R-akh-item:hover { background: var(--vivvo_R-light); }

/* Côté gauche: heure + titre */
.vivvo_R-akh-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  align-items: flex-end;
}

.vivvo_R-akh-time {
  display: inline-flex;
  background: var(--vivvo_R-primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  font-variant-numeric: tabular-nums;
  align-self: flex-end;
}

.vivvo_R-akh-title-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--vivvo_R-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: right;
}
.vivvo_R-akh-item:hover .vivvo_R-akh-title-text { color: var(--vivvo_R-primary); }

/* Image droite */
.vivvo_R-akh-img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--vivvo_R-r-sm);
  flex-shrink: 0;
}

/* Boutons ↑↓ — bord gauche, centrés */
.vivvo_R-akh-arrows {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 4;
}

.vivvo_R-akh-up,
.vivvo_R-akh-dn {
  width: 26px;
  height: 32px;
  background: var(--vivvo_R-primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: background var(--vivvo_R-duration);
  line-height: 1;
}
.vivvo_R-akh-up { border-radius: 0 4px 0 0; border-bottom: 1px solid rgba(255,255,255,0.3); }
.vivvo_R-akh-dn { border-radius: 0 0 4px 0; }
.vivvo_R-akh-up:hover,
.vivvo_R-akh-dn:hover { background: var(--vivvo_R-primary-dark); }

/* ============================================================
   VIVVO_R — NEWSLETTER BOX (Option B — vivvo_R-writers-left)
   ============================================================ */
.vivvo_R-nl-box {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vivvo_R-nl-icon {
  width: 42px;
  height: 42px;
  background: var(--vivvo_R-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vivvo_R-nl-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--vivvo_R-black);
  line-height: 1.3;
}

.vivvo_R-nl-desc {
  font-size: 13px;
  color: var(--vivvo_R-gray2);
  line-height: 1.65;
}

/* Formulaire */
.vivvo_R-nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.vivvo_R-nl-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--vivvo_R-border);
  border-radius: var(--vivvo_R-r-md);
  font-size: 13px;
  font-family: var(--vivvo_R-font-ar);
  color: var(--vivvo_R-black);
  background: var(--vivvo_R-light);
  transition: border-color var(--vivvo_R-duration), box-shadow var(--vivvo_R-duration);
  outline: none;
  text-align: right;
  direction: ltr;
}
.vivvo_R-nl-input:focus {
  border-color: var(--vivvo_R-primary);
  background: var(--vivvo_R-white);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}
.vivvo_R-nl-input::placeholder { color: var(--vivvo_R-gray3); }

.vivvo_R-nl-btn {
  width: 100%;
  padding: 11px;
  background: var(--vivvo_R-primary);
  color: white;
  border: none;
  border-radius: var(--vivvo_R-r-md);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--vivvo_R-font-ar);
  cursor: pointer;
  transition: all var(--vivvo_R-duration);
  letter-spacing: 0.2px;
}
.vivvo_R-nl-btn:hover {
  background: var(--vivvo_R-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--vivvo_R-shadow);
}
.vivvo_R-nl-btn:active { transform: translateY(0); }
.vivvo_R-nl-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Message retour */
.vivvo_R-nl-msg {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: var(--vivvo_R-r-sm);
  display: none;
  text-align: center;
}
.vivvo_R-nl-msg.vivvo_R-nl-ok {
  display: block;
  background: #d1fae5;
  color: #065f46;
}
.vivvo_R-nl-msg.vivvo_R-nl-err {
  display: block;
  background: var(--vivvo_R-primary-light);
  color: var(--vivvo_R-primary-dark);
}

.vivvo_R-nl-note {
  font-size: 11px;
  color: var(--vivvo_R-gray3);
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   VIVVO_R — SPORTS BAR v2 (style L'Express)
   Articles رياضة: photo ronde + titre gras + sous-titre
   ============================================================ */
.vivvo_R-sbar {
  background: var(--vivvo_R-white);
  border-top: 1px solid var(--vivvo_R-border);
  border-bottom: 1px solid var(--vivvo_R-border);
  padding: 0;
}

.vivvo_R-sbar-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.vivvo_R-sbar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-left: 1px solid var(--vivvo_R-border);
  transition: background var(--vivvo_R-duration);
  min-width: 0;
}
.vivvo_R-sbar-item:last-child { border-left: none; }
.vivvo_R-sbar-item:hover { background: var(--vivvo_R-light); }

/* Dernier item accentué en rouge (style L'Express "cette semaine") */
.vivvo_R-sbar-item:last-child .vivvo_R-sbar-title {
  color: var(--vivvo_R-primary);
}

/* Photo ronde */
.vivvo_R-sbar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--vivvo_R-border);
  display: block;
  transition: border-color var(--vivvo_R-duration);
}
.vivvo_R-sbar-item:hover .vivvo_R-sbar-img {
  border-color: var(--vivvo_R-primary);
}

/* Placeholder icône */
.vivvo_R-sbar-img-ph {
  background: var(--vivvo_R-light2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vivvo_R-gray3);
  font-size: 18px;
}

/* Texte */
.vivvo_R-sbar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.vivvo_R-sbar-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--vivvo_R-black);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--vivvo_R-duration);
}
.vivvo_R-sbar-item:hover .vivvo_R-sbar-title { color: var(--vivvo_R-primary); }

.vivvo_R-sbar-sub {
  font-size: 11px;
  color: var(--vivvo_R-gray3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 1024px) {
  .vivvo_R-sbar-track { grid-template-columns: repeat(3, 1fr); }
  .vivvo_R-sbar-item:nth-child(3) { border-left: none; }
  .vivvo_R-sbar-item:nth-child(4),
  .vivvo_R-sbar-item:nth-child(5) { display: none; }
}
@media (max-width: 600px) {
  .vivvo_R-sbar-track { grid-template-columns: repeat(2, 1fr); }
  .vivvo_R-sbar-item:nth-child(2) { border-left: none; }
  .vivvo_R-sbar-item:nth-child(3),
  .vivvo_R-sbar-item:nth-child(4),
  .vivvo_R-sbar-item:nth-child(5) { display: none; }
}

/* Temps dans bandeau akhbar-saaa */
.vivvo_R-as-time {
  font-size: 10px;
  color: var(--vivvo_R-gray3);
  margin-top: 2px;
}

/* Placeholder centré */
.vivvo_R-as-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--vivvo_R-light2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   VIVVO_R — BARRE ACTU (sous nav, style Le Monde)
   heure + image + titre + badge ALERTE + Voir plus
   ============================================================ */
.vivvo_R-actu-bar {
  background: var(--vivvo_R-white);
  border-bottom: 1px solid var(--vivvo_R-border);
  padding: 0;
}

.vivvo_R-actu-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.vivvo_R-actu-inner::-webkit-scrollbar { display: none; }

.vivvo_R-actu-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 18px;
  border-left: 1px solid var(--vivvo_R-border);
  flex-shrink: 0;
  max-width: 240px;
  transition: background var(--vivvo_R-duration);
}
.vivvo_R-actu-item:first-child { border-left: none; }
.vivvo_R-actu-item:hover { background: var(--vivvo_R-light); }

/* Image article */
.vivvo_R-actu-img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  border-radius: var(--vivvo_R-r-sm);
  flex-shrink: 0;
}

/* Texte */
.vivvo_R-actu-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.vivvo_R-actu-time {
  font-size: 11px;
  color: var(--vivvo_R-gray3);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vivvo_R-actu-alert {
  background: var(--vivvo_R-primary);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.vivvo_R-actu-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--vivvo_R-black);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vivvo_R-actu-item:hover .vivvo_R-actu-title { color: var(--vivvo_R-primary); }

/* Voir plus */
.vivvo_R-actu-more {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--vivvo_R-gray2);
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid var(--vivvo_R-border);
  border-radius: 20px;
  margin: auto 16px;
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-actu-more:hover { border-color: var(--vivvo_R-primary); color: var(--vivvo_R-primary); }

/* ============================================================
   VIVVO_R — OPINIONS (style image 2)
   5 colonnes: avatar rond + type + titre + auteur uppercase
   ============================================================ */
.vivvo_R-op-section {
  padding: var(--vivvo_R-section-pad) 0;
  background: var(--vivvo_R-white);
  border-bottom: 1px solid var(--vivvo_R-border);
}

.vivvo_R-op-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.vivvo_R-op-header-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--vivvo_R-black);
}

.vivvo_R-op-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--vivvo_R-gray2);
  border: 1px solid var(--vivvo_R-border);
  padding: 7px 16px;
  border-radius: 20px;
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-op-all:hover { border-color: var(--vivvo_R-primary); color: var(--vivvo_R-primary); }

.vivvo_R-op-divider {
  height: 1px;
  background: var(--vivvo_R-border);
  margin-bottom: 28px;
}

/* Grille 5 colonnes */
.vivvo_R-op-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.vivvo_R-op-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 0;
  border-left: 1px solid var(--vivvo_R-border);
  transition: opacity var(--vivvo_R-duration);
}
.vivvo_R-op-card:first-child { border-left: none; }
.vivvo_R-op-card:hover { opacity: 0.8; }

/* Avatar */
.vivvo_R-op-avatar-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--vivvo_R-border);
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: border-color var(--vivvo_R-duration);
}
.vivvo_R-op-card:hover .vivvo_R-op-avatar-wrap { border-color: var(--vivvo_R-primary); }

.vivvo_R-op-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Type — rouge uppercase */
.vivvo_R-op-type {
  font-size: 11px;
  font-weight: 800;
  color: var(--vivvo_R-primary);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* Titre */
.vivvo_R-op-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--vivvo_R-black);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Nom auteur — uppercase gris */
.vivvo_R-op-author {
  font-size: 11px;
  font-weight: 700;
  color: var(--vivvo_R-gray3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .vivvo_R-op-grid { grid-template-columns: repeat(3, 1fr); }
  .vivvo_R-op-card:nth-child(3) { border-left: none; }
}
@media (max-width: 600px) {
  .vivvo_R-op-grid { grid-template-columns: repeat(2, 1fr); }
  .vivvo_R-actu-item { max-width: 200px; }
}

/* ============================================================
   OPINIONS — slider arrows + hidden cards
   ============================================================ */
.vivvo_R-op-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vivvo_R-op-arrows {
  display: flex;
  gap: 6px;
}

.vivvo_R-op-arr {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--vivvo_R-border);
  background: var(--vivvo_R-white);
  color: var(--vivvo_R-gray2);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--vivvo_R-duration);
}
.vivvo_R-op-arr:hover {
  border-color: var(--vivvo_R-primary);
  color: var(--vivvo_R-primary);
  background: var(--vivvo_R-primary-muted);
}

.vivvo_R-op-slider-wrap { overflow: hidden; }

.vivvo_R-op-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  transition: none;
}

/* Cartes cachées — JS les affiche par groupes de 5 */
.vivvo_R-op-hidden { display: none; }

/* ============================================================
   BLOC SPORT — section-cat-3col style (image 1 capture)
   cadre bordé + titre + [pub | article principal | slider]
   Intégré dans index via section-cat-3col.php
   ============================================================ */
.vivvo_R-sport-block {
  padding: 0 0 var(--vivvo_R-section-pad);
}
