.elementor-4440 .elementor-element.elementor-element-8c2bbc1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5ad90e6 *//* ============================================
   PEM Communication — Article CSS
   Agence de communication en Corse-du-Sud
   À coller dans : Elementor > Custom CSS
   ou Apparence > Personnaliser > CSS additionnel
============================================ */

/* ============================================
   VARIABLES
============================================ */
:root {
  --pem-blue: #7B9FE0;
  --pem-blue-light: #A8C0ED;
  --pem-blue-hero: #B8CCEE;
  --pem-dark: #000000;
  --pem-text: #0A0A0A;
  --pem-text-light: #333333;
  --pem-white: #FFFFFF;
  --pem-bg: #F8F9FD;
  --pem-accent: #3A6BC4;
  --pem-cta: #2E5FBA;
  --pem-cta-hover: #1E4A9A;
  --pem-border: #E2E8F5;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Sora', sans-serif;
  --radius: 16px;
  --shadow-card: 0 4px 24px rgba(59, 107, 196, 0.10);
  --shadow-hover: 0 8px 40px rgba(59, 107, 196, 0.18);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE
============================================ */
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden; }

/* ============================================
   FULL-WIDTH BREAKOUT
============================================ */
.breadcrumb,
.hero {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb {
  background: var(--pem-white);
  border-bottom: 1px solid var(--pem-border);
  padding: 12px 0;
}

.breadcrumb-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--pem-text-light);
  font-weight: 400;
}

.breadcrumb-inner a {
  color: var(--pem-text-light);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb-inner a:hover { color: var(--pem-accent); }

.breadcrumb-sep { color: var(--pem-blue-light); font-size: 0.7rem; }
.breadcrumb-current { color: var(--pem-accent); font-weight: 500; }

/* ============================================
   HERO
============================================ */
.hero {
  background: linear-gradient(135deg, #C5D8F5 0%, #B5CAFE 40%, #A8BAE8 100%);
  overflow: hidden;
  padding: 52px 24px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,255,255,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(122, 159, 224, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-tag {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--pem-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.hero-reading-time {
  font-size: 0.75rem;
  color: rgba(46, 95, 186, 0.75);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-reading-time svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero h1 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--pem-dark);
  max-width: 780px;
  margin: 0 auto 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero h1 em { font-style: italic; color: var(--pem-accent); }

.hero-sub {
  position: relative;
  font-size: 1rem;
  color: rgba(29, 29, 60, 0.72);
  max-width: 560px;
  margin: 0 auto 20px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pem-cta);
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(46, 95, 186, 0.35);
  transition: all var(--transition);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.hero-cta:hover {
  background: var(--pem-cta-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 95, 186, 0.45);
}

/* ============================================
   TABLE OF CONTENTS
============================================ */
.toc-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

.toc {
  background: var(--pem-white);
  border: 1px solid var(--pem-border);
  border-left: 4px solid var(--pem-blue);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
}

.toc-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pem-text-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-title svg { width: 14px; height: 14px; color: var(--pem-blue); }

.toc ol {
  padding-left: 0;
  list-style: none;
  counter-reset: toc-counter;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.toc li {
  counter-increment: toc-counter;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.toc li::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--pem-blue-light);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.toc li a {
  font-size: 0.83rem;
  color: var(--pem-text);
  font-weight: 500;
  line-height: 1.4;
  transition: color var(--transition);
  text-decoration: none;
}
.toc li a:hover { color: var(--pem-accent); }

/* ============================================
   ARTICLE LAYOUT
============================================ */
.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ============================================
   SECTIONS
============================================ */
.section {
  margin-bottom: 64px;
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section:nth-child(1) { animation-delay: 0.05s; }
.section:nth-child(2) { animation-delay: 0.12s; }
.section:nth-child(3) { animation-delay: 0.19s; }
.section:nth-child(4) { animation-delay: 0.26s; }
.section:nth-child(5) { animation-delay: 0.33s; }
.section:nth-child(6) { animation-delay: 0.40s; }

/* ============================================
   TYPOGRAPHY
============================================ */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pem-blue);
  margin-bottom: 10px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--pem-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.article-body h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pem-dark);
  margin-bottom: 14px;
  line-height: 1.35;
}

.article-body p {
  font-size: 0.97rem;
  color: var(--pem-text);
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.8;
}
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { font-weight: 600; color: var(--pem-dark); }

/* ============================================
   INTRO BLOCK
============================================ */
.intro-block {
  background: var(--pem-white);
  border-radius: var(--radius);
  padding: 36px 40px;
  border: 1px solid var(--pem-border);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.intro-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pem-blue) 0%, var(--pem-accent) 100%);
}

/* ============================================
   SPLIT LAYOUT
============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image { position: relative; }

.split-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform var(--transition);
}
.split-image:hover img { transform: scale(1.02); }

.split-image::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid var(--pem-border);
  border-radius: calc(var(--radius) + 10px);
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   FULL-WIDTH IMAGE
============================================ */
.full-image-wrap {
  margin: 40px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.full-image-wrap img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.full-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.75) 0%, transparent 100%);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  padding: 20px 20px 14px;
  font-style: italic;
}

/* ============================================
   SERVICE CARDS GRID
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.service-card {
  background: var(--pem-white);
  border: 1px solid var(--pem-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pem-blue) 0%, var(--pem-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pem-blue-hero) 0%, var(--pem-blue-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--pem-dark);
}

.service-card p {
  font-size: 0.83rem;
  line-height: 1.65;
  margin-bottom: 0;
  color: var(--pem-text-light);
}

/* ============================================
   HIGHLIGHT BLOCK
============================================ */
.highlight-block {
  background: linear-gradient(135deg, #EEF3FD 0%, #E8EFFC 100%);
  border-left: 4px solid var(--pem-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.highlight-block p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--pem-dark);
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ============================================
   CHECKLIST
============================================ */
.checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--pem-text);
  font-weight: 300;
  line-height: 1.6;
}

.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--pem-blue) 0%, var(--pem-accent) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================
   STAT STRIP
============================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--pem-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 40px 0;
}

.stat-item {
  background: var(--pem-white);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--transition);
}
.stat-item:hover { background: linear-gradient(135deg, #EEF3FD 0%, #E8EFFC 100%); }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--pem-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--pem-text-light);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   DIVIDER
============================================ */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--pem-border) 30%, var(--pem-border) 70%, transparent 100%);
  margin: 56px 0;
}

/* ============================================
   CTA BLOCK
============================================ */
.cta-block {
  background: linear-gradient(135deg, #000000 0%, #2A2A50 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(123, 159, 224, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(58, 107, 196, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  margin-bottom: 14px;
  position: relative;
}

.cta-block p {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
  position: relative;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--pem-accent) !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: all var(--transition);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-cta:hover {
  background: var(--pem-blue-hero);
  color: var(--pem-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.3);
}

/* ============================================
   CONCLUSION
============================================ */
.conclusion-block {
  background: var(--pem-white);
  border: 1px solid var(--pem-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.conclusion-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 204, 238, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================
   AUTHOR FOOTER
============================================ */
.article-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--pem-white);
  border: 1px solid var(--pem-border);
  border-radius: var(--radius);
  margin-top: 48px;
  box-shadow: var(--shadow-card);
}

.author-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--pem-blue-hero) 0%, var(--pem-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pem-dark);
  margin-bottom: 3px;
}

.author-info p {
  font-size: 0.78rem;
  color: var(--pem-text-light);
  margin: 0;
  line-height: 1.4;
}

.author-link {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pem-accent);
  border: 1px solid var(--pem-border);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.author-link:hover {
  background: var(--pem-accent);
  color: #ffffff;
  border-color: var(--pem-accent);
}

/* ============================================
   QCM
============================================ */
#qcm-app { margin-top: 8px; }
.qcm-hidden { display: none !important; }

.qcm-card {
  background: var(--pem-white);
  border: 1px solid var(--pem-border);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  animation: fadeUp 0.4s ease both;
}

.qcm-number {
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--pem-blue-light);
  line-height: 1;
  margin-bottom: 16px;
}
.qcm-number span { font-size: 1rem; color: var(--pem-border); }

.qcm-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pem-dark);
  margin-bottom: 24px;
  line-height: 1.55;
}

.qcm-options {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qcm-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1.5px solid var(--pem-border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--pem-text);
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1.4;
}

.qcm-opt::before {
  content: '';
  width: 18px; height: 18px;
  border: 2px solid var(--pem-border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition);
}

.qcm-opt:hover:not(.locked) { border-color: var(--pem-blue); background: #F0F5FF; color: var(--pem-dark); }
.qcm-opt:hover:not(.locked)::before { border-color: var(--pem-blue); }

.qcm-opt.correct { border-color: #22C55E; background: #F0FDF4; color: #166534; }
.qcm-opt.correct::before {
  background: #22C55E; border-color: #22C55E;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

.qcm-opt.wrong { border-color: #EF4444; background: #FFF5F5; color: #991B1B; }
.qcm-opt.wrong::before {
  background: #EF4444; border-color: #EF4444;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

.qcm-opt.reveal-correct { border-color: #22C55E; background: #F0FDF4; color: #166534; opacity: 0.7; }
.qcm-opt.reveal-correct::before {
  background: #22C55E; border-color: #22C55E;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

.qcm-feedback { margin-top: 16px; font-size: 0.83rem; font-weight: 500; transition: all 0.2s ease; }
.qcm-feedback.good { color: #166534; }
.qcm-feedback.bad  { color: #991B1B; }

.qcm-next-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pem-accent);
  color: #ffffff !important;
  border: none;
  padding: 11px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.qcm-next-btn:hover { background: var(--pem-cta-hover); color: #ffffff !important; transform: translateY(-1px); }

.qcm-progress { height: 4px; background: var(--pem-border); border-radius: 2px; margin-bottom: 24px; overflow: hidden; }
.qcm-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--pem-blue) 0%, var(--pem-accent) 100%);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.qcm-result {
  background: var(--pem-white);
  border: 1px solid var(--pem-border);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  animation: fadeUp 0.5s ease both;
}

.qcm-score-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pem-blue-hero) 0%, var(--pem-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(58, 107, 196, 0.3);
}

.qcm-result-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--pem-dark); margin-bottom: 10px; font-weight: 400; }
.qcm-result-sub { font-size: 0.9rem; color: var(--pem-text-light); max-width: 380px; margin: 0 auto 28px; line-height: 1.65; }

.qcm-restart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--pem-accent);
  color: var(--pem-accent);
  background: transparent;
  padding: 11px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.qcm-restart-btn:hover { background: var(--pem-accent); color: #ffffff; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
  .hero { padding: 48px 20px 56px; }
  .hero h1 { font-size: 1.7rem; }
  .toc ol { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 28px; }
  .split-section.reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-strip { grid-template-columns: 1fr; gap: 1px; }
  .cta-block { padding: 36px 24px; }
  .intro-block { padding: 24px; }
  .article-body { padding: 32px 20px 60px; }
  .toc-wrapper { padding: 28px 20px 0; }
  .article-footer { flex-wrap: wrap; }
  .author-link { margin-left: 0; }
  .qcm-card { padding: 24px 20px; }
  .qcm-result { padding: 36px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .hero-meta { flex-direction: column; gap: 8px; }
}/* End custom CSS */