/* ===============================
   CSS ADDITIONNEL - ACCUEIL REFONDU
   Compatible avec cssactuel.css
   =============================== */

/* FIX SCROLL HORIZONTAL */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

/* NAVIGATION STICKY */
.main-nav {
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

@media (min-width: 769px) {
  .main-nav {
    padding: 1rem 2rem;
  }
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.nav-logo h1 {
  font-size: 1.5rem;
  color: #000091;
  margin: 0;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .nav-logo h1 {
    font-size: 1.2rem;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 500;
}

.nav-links a:hover {
  color: #000091;
}

/* HERO OPTIMISÉ */
.hero-optimized {
  background: linear-gradient(135deg, #000091 0%, #1f2b5b 100%);
  padding: 3rem 1rem;
  width: 100%;
  overflow: hidden;
}

.hero-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.hero-optimized h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
}

.hero-baseline {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 1rem 2rem;
  margin: 0 auto 1rem;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-sizing: border-box;
}

.hero-baseline-icon {
  font-size: 1.5rem;
}

.hero-parcours {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  color: #e8e8ff;
}

.hero-bullets {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 700px;
}

.hero-bullets ul {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.hero-bullets li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.15rem;
}

.hero-bullets li::before {
  content: "✓";
  color: #4ade80;
  font-weight: bold;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.hero-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
}

.btn-primary-large {
  padding: 1.25rem 3rem;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  max-width: 100%;
  word-wrap: break-word;
  text-align: center;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .btn-primary-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.hero-link-secondary {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.9;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.hero-link-secondary:hover {
  opacity: 1;
  border-bottom-color: #ffffff;
}

/* SECTION CONTENU PÉDAGOGIQUE */
.content-preview-section {
  background: #ffffff;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 2rem;
}

.preview-card {
  background: #ffffff;
  border: 2px solid #dddddd;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.preview-card:hover {
  border-color: #000091;
  box-shadow: 0 4px 20px rgba(0,0,145,0.1);
  transform: translateY(-5px);
}

.preview-card-title {
  font-size: 1.5rem;
  color: #000091;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.preview-card-icon {
  font-size: 1.5rem;
}

.preview-badge {
  background: #1f2b5b;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.preview-visual {
  background: #f7f9fc;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  border: 2px solid #e1e6f0;
}

.preview-visual-title {
  color: #000091;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.preview-example {
  background: #ffffff;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 0.5rem;
}

.preview-term {
  text-decoration: underline;
  cursor: help;
}

.preview-hint {
  font-size: 0.9rem;
  color: #666666;
  margin-top: 0.5rem;
}

.preview-translation {
  background: #fef9e7;
  border-left: 4px solid #000091;
  padding: 1rem;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.preview-translation-term {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.preview-translation-item {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.preview-audio-player {
  background: #000091;
  color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
}

.preview-audio-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.preview-audio-controls {
  background: #ffffff;
  border-radius: 6px;
  padding: 0.75rem;
  margin-top: 0.75rem;
  color: #666666;
}

.preview-audio-controls p {
  margin: 0;
}

.audio-player-marseillaise {
  width: 100%;
  margin-top: 0.75rem;
  border-radius: 6px;
  outline: none;
}

.audio-player-marseillaise:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
}

.preview-glossary-term {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.preview-glossary-cat {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.preview-glossary-def {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.preview-features {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.preview-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.preview-features li::before {
  content: "✓";
  color: #4ade80;
  font-weight: bold;
}

/* TABLEAU COMPARATIF */
.comparison-section {
  background: #f6f6f6;
}

.comparison-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #3a3a3a;
  font-weight: 500;
}

.comparison-table-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow-x: auto;
}

@media (min-width: 769px) {
  .comparison-table-wrapper {
    padding: 2rem;
  }
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.comparison-table thead {
  background: #f7f9fc;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e1e6f0;
}

.comparison-table th {
  font-weight: 600;
  color: #000091;
  font-size: 1.1rem;
}

.comparison-table td:first-child {
  color: #3a3a3a;
  font-weight: 500;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  text-align: center;
}

.comparison-check {
  color: #4ade80;
  font-size: 1.8rem;
}

.comparison-cross {
  color: #f87171;
  font-size: 1.8rem;
}

.comparison-robot-cell {
  opacity: 0.7;
}

.comparison-robot-icon {
  font-size: 1.3rem;
}

.comparison-robot-text {
  font-size: 0.95rem;
}

.comparison-our-col {
  background: #f0f9ff;
}

.comparison-highlight-row {
  background: #f0f9ff;
}

.comparison-highlight-row td:first-child {
  font-weight: 600;
}

.comparison-subtext {
  font-size: 0.9rem;
  color: #666666;
}

.comparison-partial {
  opacity: 0.7;
}

/* Version mobile/desktop */
.comparison-mobile {
  display: none;
}

.comparison-desktop {
  display: block;
}

/* Cartes comparaison mobile */
.comparison-card {
  background: #ffffff;
  border: 2px solid #e1e6f0;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.comparison-card-highlight {
  background: #f0f9ff;
  border-color: #000091;
}

.comparison-card-title {
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.comparison-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.comparison-card-col {
  text-align: center;
  padding: 0.75rem;
  background: #f7f9fc;
  border-radius: 8px;
}

.comparison-card-col-ours {
  background: #e8f4ff;
}

.comparison-card-label {
  font-size: 0.8rem;
  color: #666666;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* BÉNÉFICES */
.benefits-section {
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  background: #f7f9fc;
  border: 2px solid #e1e6f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #000091;
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,145,0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: #000091;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: #666666;
}

/* TARIFS HIGHLIGHTED */
.pricing-highlighted {
  background: linear-gradient(135deg, #000091 0%, #1f2b5b 100%);
  color: #ffffff;
}

.pricing-highlighted .section-title {
  color: #ffffff;
}

.pricing-highlighted .section-subtitle {
  color: rgba(255,255,255,0.9);
}

.pricing-highlighted .price-description {
  color: #666666;
}

.pricing-featured {
  border-color: #fbbf24;
  border-width: 3px;
  transform: scale(1.05);
  position: relative;
}

.pricing-featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #000091;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  max-width: 90%;
  text-align: center;
}

@media (max-width: 640px) {
  .pricing-featured-badge {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    white-space: normal;
  }
}

.pricing-footer-text {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255,255,255,0.95);
}

/* FAQ - ACCORDÉONS */
.faq-section-bg {
  background: #f6f6f6;
}

.faq-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-item {
  border-bottom: 1px solid #dddddd;
  padding: 1rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #000091;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  font-size: 1.1rem;
}

.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: #000091;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-content {
  margin-top: 0.75rem;
  color: #444444;
}

.faq-content p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* FOOTER */
.main-footer {
  background: #ffffff;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #e1e6f0;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #000091;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  color: #666666;
  font-size: 0.9rem;
}

/* UTILITAIRES */
.cta-center {
  text-align: center;
  margin-top: 2rem;
}

/* SECTIONS - Padding responsive */
.section {
  padding: 3rem 1rem;
  width: 100%;
}

.section-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-container {
    padding: 0 0.5rem;
  }

  .hero-optimized {
    padding: 2rem 0.5rem;
  }

  .hero-container {
    padding: 0 0.5rem;
  }

  .hero-optimized h2 {
    font-size: 2rem;
    word-wrap: break-word;
  }

  .hero-baseline {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-bullets li {
    font-size: 1rem;
  }

  .hero-bullets {
    padding: 1.5rem;
    margin: 1.5rem 0.5rem;
  }

  .preview-grid,
  .benefits-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .preview-card,
  .benefit-card,
  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-featured {
    transform: scale(1);
    margin-top: 1.5rem;
  }

  /* Masquer tableau, afficher cartes */
  .comparison-desktop {
    display: none;
  }

  .comparison-mobile {
    display: block;
  }

  .section {
    padding: 2rem 0.5rem;
  }

  .section-inner {
    padding: 0 0.5rem;
  }
}


.price {
	color: black
}

.price-subtitle {
	color: black
}

/* ===============================
   FICHES DE RÉVISION – BLOC EXACT
   =============================== */
/* ===============================
   PODCAST + GLOSSAIRE CÔTE À CÔTE
   =============================== */

.revision-side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

@media (max-width: 900px) {
  .revision-side-by-side {
    grid-template-columns: 1fr;
  }
}


.fiche-card {
  background: #ffffff;
  border: 1px solid #e1e6f0;
  border-radius: 16px;
  padding: 2rem;
  max-width: 900px;
  margin: 2rem auto;
}

.fiche-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.fiche-icon {
  background: #eef1fb;
  color: #000091;
  font-size: 1.8rem;
  border-radius: 14px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fiche-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000091;
}

.fiche-badge {
  display: inline-block;
  margin-top: 0.4rem;
  background: #1f2b5b;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.fiche-subtitle {
  font-size: 1.05rem;
  color: #2b2b2b;
  margin-bottom: 2rem;
}

/* ===== Exemple ===== */

.fiche-example {
  background: #f7f9fc;
  border-radius: 16px;
  padding: 2rem;
}

.fiche-example-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1f2b5b;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.fiche-example p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.fiche-example strong {
  color: #1f2b5b;
  border-bottom: 2px dotted #8b93c9;
}

.fiche-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b7280;
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

.fiche-divider::before,
.fiche-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e1e6f0;
}

/* ===== Définition ===== */

.fiche-definition {
  background: #ffffff;
  border: 1px solid #e1e6f0;
  border-radius: 16px;
  padding: 1.75rem;
}

.fiche-definition-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.fiche-definition-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2b5b;
}

.fiche-flags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #e1e6f0;
  border-radius: 10px;
  margin-left: 6px;
  font-size: 1.1rem;
}

.fiche-definition ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fiche-definition li {
  padding: 0.9rem 0;
  border-top: 1px solid #e1e6f0;
  font-size: 1.05rem;
}

/* ===== Aide intégrée ===== */

.fiche-help {
  margin-top: 2rem;
  background: #fff8d6;
  border: 2px solid #f1dc8c;
  border-radius: 16px;
  padding: 1.75rem;
}

.fiche-help-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fiche-help-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e1e6f0;
  border-radius: 12px;
  padding: 6px 12px;
  font-weight: 600;
  margin-right: 8px;
  margin-top: 0.5rem;
}
.btn-primary {
  display: inline-block;
  background-color: #000091;
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #000074;
  color: #fff;
  text-decoration: none !important;
  outline: none;
}

.btn-primary:visited {
  color: #fff;
}




.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 2rem 1.75rem;
  text-align: center;
  border-radius: 6px;
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.card h3 {
  color: #000091;
  margin-bottom: 0.5rem;
}

.card p {
  color: #444;
  margin-bottom: 1rem;
}

.card a {
  font-weight: 600;
  color: #000091;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}


.fiches-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.fiches-hero {
  margin-bottom: 3rem;
}

.fiches-hero h1 {
  color: #000091;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.fiches-hero p {
  max-width: 720px;
  color: #444;
}

.fiches-section {
  margin-bottom: 3rem;
}

.fiches-section h2 {
  font-size: 1.3rem;
  color: #000091;
  border-left: 4px solid #E1000F;
  padding-left: 0.75rem;
  margin-bottom: 1rem;
}

.fiches-list {
  columns: 2;
  column-gap: 2rem;
}

.fiches-list li {
  margin-bottom: 0.6rem;
}

.fiches-list a {
  color: #000091;
  text-decoration: none;
  font-weight: 500;
}

.fiches-list a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fiches-list {
    columns: 1;
  }
}
/* ================================
   DESIGN ARTICLE – PARCOURS CIVIQUE
   Inspiré du logo (bleu / rouge)
   ================================ */

.article-contenu {
  max-width: 820px;
  margin: auto;
  padding: 40px 20px;
  font-family: Inter, Arial, sans-serif;
  color: #2b2b2b;
  line-height: 1.7;
}

/* Titre principal */
.article-contenu h1 {
  color: #1f2b5b;
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 30px;
  border-left: 6px solid #d94b3a;
  padding-left: 16px;
}

/* Titres H2 */
.article-contenu h2 {
  color: #1f2b5b;
  font-size: 1.6rem;
  margin-top: 50px;
  margin-bottom: 16px;
  position: relative;
}

/* Soulignement discret sous les H2 */
.article-contenu h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d94b3a;
  margin-top: 8px;
}

/* Paragraphes */
.article-contenu p {
  margin-bottom: 18px;
  font-size: 1.02rem;
}

/* Encadré "À lire avant" */
.article-contenu h2:first-of-type + p,
.article-contenu h2:first-of-type + p + p {
  background-color: #e9eef7;
  padding: 16px 18px;
  border-left: 4px solid #1f2b5b;
  border-radius: 4px;
}

/* Sommaire */
.article-contenu ul {
  background-color: #f7f9fc;
  padding: 20px 25px;
  border-radius: 6px;
  margin: 25px 0;
}

.article-contenu ul li {
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 18px;
}

/* Puce personnalisée */
.article-contenu ul li::before {
  content: "•";
  color: #d94b3a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Section “À retenir” */
.article-contenu h2:last-of-type {
  background-color: #1f2b5b;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 6px;
}

.article-contenu h2:last-of-type + ul {
  background-color: #ffffff;
  border: 1px solid #e1e6f0;
}
/* ==============================
   SECTION EXAMENS – DANS ARTICLE
   ============================== */

.article-examens {
  margin: 60px 0;
  padding: 30px;
  background-color: #f7f9fc;
  border-radius: 12px;
}

.article-examens > h2 {
  margin-top: 0;
}

.article-examens-subtitle {
  color: #555;
  margin-bottom: 30px;
}

/* Grille */
.article-examens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Carte */
.article-exam-card {
  background: #ffffff;
  border: 1px solid #e1e6f0;
  border-radius: 10px;
  padding: 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.article-exam-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.article-exam-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.article-exam-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.article-exam-card p {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.article-exam-card a {
  font-weight: 600;
}