/*
Theme Name: EduFinance
Theme URI: https://edufinance.local
Author: Oli Vernet
Author URI: https://olivernet.ca
Description: Thème WordPress pour EduFinance — éducation financière à tout âge. Design éditorial audacieux avec palette dark mode, glassmorphism et accent vert sage.
Version: 3.0
License: GNU General Public License v2 or later
Text Domain: edufinance
*/

/* recherche perso: variables css pour centraliser couleurs/polices
   ref: https://developer.mozilla.org/fr/docs/Web/CSS/--* */
:root {
  --bg-dark: #0a0f1a;
  --bg-card: #141e30;
  --bg-card-hover: #1a2740;
  --accent: #a8b5a0;
  --accent-dim: rgba(168, 181, 160, 0.12);
  --accent-glow: rgba(168, 181, 160, 0.08);
  --text-primary: #f0ede8;
  --text-secondary: #a0a8b8;
  --text-muted: #6b7280;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(168, 181, 160, 0.25);
  --glass: rgba(20, 30, 48, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* recherche perso: svg inline en data uri pour faire un effet de grain
   comme dans les magazines, ca donne un look moins "flat"
   ref: feTurbulence sur MDN */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* sinon ca bloque tous les clics */
  z-index: 1000;  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* recherche perso: orbes flous en arriere-plan pour donner de la profondeur
   blur() + radial-gradient = effet de lumiere diffuse */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb--hero {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 181, 160, 0.12) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.glow-orb--pourquoi {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(90, 120, 255, 0.08) 0%, transparent 70%);
  top: 20%;
  left: -10%;
}
.glow-orb--galerie {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(168, 181, 160, 0.1) 0%, transparent 70%);
  bottom: 10%;
  right: -8%;
}

/* gros chiffre quasi invisible, juste pour le look */
.section-number {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(168, 181, 160, 0.06);
  line-height: 1;
  display: block;
  margin-bottom: -1.5rem;
  letter-spacing: -0.05em;
  user-select: none;
}

nav {
  background-color: rgba(10, 15, 26, 0.8);
  /* recherche perso: backdrop-filter = flou derriere la nav, effet glassmorphism
     -webkit- requis pour safari */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 3rem;
  display: flex;  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--text-primary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.84rem;  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

/* trait vert qui s'etend au hover, part de 0 width */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

/* cache en desktop, visible en mobile */
.hamburger {
  display: none;  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

#hero {
  background: var(--bg-dark);
  color: var(--text-primary);
  padding: 7rem 3rem 5rem;
  position: relative;
  overflow: hidden; /* pour cacher l'orbe qui deborde */
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

#hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(168, 181, 160, 0.2);
}

#hero p {
  max-width: 480px;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* border-radius: 100px = pill shape peu importe la taille */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--accent);
  color: var(--bg-dark);
  padding: 0.9rem 2rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 100px;  transition: transform 0.2s, box-shadow 0.3s;
  letter-spacing: 0.01em;
  font-family: var(--font-body);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 181, 160, 0.25);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
  transform: translateX(-4px);  border-color: var(--border-accent);
}

.stat-card--accent {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(168, 181, 160, 0.06) 0%, var(--glass) 100%);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
  line-height: 1.4;}

.section-divider {
  position: relative;
  height: 80px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1525 100%);
  overflow: hidden;
}

.section-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#pourquoi {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pourquoi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.pourquoi-text h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.pourquoi-text p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: var(--radius);  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

/* petite barre verte en haut, invisible par defaut */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

/* le translateX donne un effet decale un peu asymetrique */
.card:hover {
  transform: translateY(-3px) translateX(6px);
  border-color: var(--border-accent);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.card:hover::before {
  opacity: 1;
}

.card i {
  font-size: 1.5rem;
  color: var(--accent);  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 700;
}

.card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

#livres {
  background: linear-gradient(180deg, #0d1525, var(--bg-card));
  padding: 6rem 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#livres .inner {
  max-width: 1100px;
  margin: 0 auto;
}
#livres .section-number {
  text-align: center;
}

#livres h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.age-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;  font-weight: 600;
  transition: all 0.25s;
  border-radius: 100px;
  white-space: nowrap;
}

.tab-btn i {
  margin-right: 0.35rem;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(168, 181, 160, 0.2);
}

/* display:none par defaut, le js ajoute .active pour afficher */
.panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.panel.active {
  display: grid;
}

.livre-card {
  background: var(--glass);  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.3s;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.livre-card:hover {
  border-color: var(--border-accent);
  background: rgba(168, 181, 160, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 30px var(--accent-glow);
}

.livre-card img {
  width: 80px;
  height: 115px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  flex-shrink: 0; /* pour pas que l'image se compresse */
  transition: transform 0.3s;
}

.livre-card:hover img {
  transform: scale(1.05);
}
.livre-info {
  flex: 1;
  min-width: 0;
}

.livre-card h4,
.livre-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
  font-weight: 700;
}

.livre-card .auteur {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.livre-card p,
.livre-info p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
#galerie {
  padding: 6rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

#galerie .section-number {
  text-align: center;
}

#galerie h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

#galerie > p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 3rem;
}

.galerie-grid {  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.galerie-item {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.3s;
  position: relative;
  border-radius: var(--radius);
  text-align: center;
  overflow: hidden;
}

.galerie-item img {
  width: 120px;
  height: 175px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}

/* petit rotate au hover pour un effet dynamique */
.galerie-item:hover img {  transform: scale(1.08) rotate(-1deg);
}

/* le js ajoute .selected au clic */
.galerie-item.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 40px rgba(168, 181, 160, 0.12);
}

.galerie-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.galerie-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
  font-weight: 700;
}

.galerie-item .auteur-g {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.galerie-item p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.badge-age {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.6rem;
  padding: 0.25rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 100px;
}

/* affiche au clic via js, border-left pour un accent visuel */
#detail-box {
  display: none;
  margin-top: 2rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-primary);
  padding: 2.5rem;  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.detail-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

#detail-img {
  width: 130px;
  height: 195px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.detail-text {
  flex: 1;
}

#detail-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
#detail-box .auteur-d {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
}

#detail-box p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

footer {
  background-color: #060a14;
  color: var(--text-muted);
  text-align: center;
  padding: 3.5rem 2rem;
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

footer .footer-logo {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
footer .footer-logo span {
  color: var(--text-primary);
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

footer .footer-links a:hover {
  color: var(--accent);
}

footer .socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;  margin-bottom: 1.5rem;
}

footer .socials a {
  color: var(--text-muted);
  font-size: 1.15rem;
  transition: color 0.2s, transform 0.2s;
}

footer .socials a:hover {
  color: var(--accent);
  transform: scale(1.2);
}

footer a {
  color: var(--accent);
}

footer p {
  color: var(--text-muted);
}

/* recherche perso: @keyframes pour les animations css
   ref: https://developer.mozilla.org/fr/docs/Web/CSS/@keyframes */

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes cardPop {
  from { opacity: 0; transform: scale(0.92) translateY(15px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* les cartes apparaissent une apres l'autre grace au delay */
.panel.active .livre-card {
  animation: cardPop 0.4s ease-out both;
}

.panel.active .livre-card:nth-child(1) { animation-delay: 0s; }
.panel.active .livre-card:nth-child(2) { animation-delay: 0.1s; }
.panel.active .livre-card:nth-child(3) { animation-delay: 0.2s; }

#detail-box.visible {
  display: block;
  animation: slideInLeft 0.4s ease-out;
}

/* effet pulse quand on selectionne un livre dans la galerie */
@keyframes selectPulse {
  0%   { box-shadow: 0 0 0 0 rgba(168, 181, 160, 0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(168, 181, 160, 0); }
  100% { box-shadow: 0 0 0 1px var(--accent), 0 0 40px rgba(168, 181, 160, 0.12); }
}
.galerie-item.selected {
  border-color: var(--accent);
  animation: selectPulse 0.6s ease-out;
}

/* recherche perso: transition css pour faire apparaitre les sections
   au scroll, le js ajoute .revealed via IntersectionObserver */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner {
  animation: heroFadeIn 0.8s ease-out;
}

@keyframes statSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }}

.stat-card {
  animation: statSlideIn 0.6s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }

@media (max-width: 768px) {

  nav {
    padding: 1rem 1.5rem;
  }

  #hero {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem 3rem;
    gap: 2rem;
  }

  #hero h1 {
    font-size: 2.6rem;
  }

  /* stats en ligne horizontale scrollable sur mobile */
  .hero-stats {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .stat-card {
    min-width: 160px;
    flex-shrink: 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-number {
    font-size: 4rem;
  }

  .pourquoi-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pourquoi-text h2 {
    font-size: 2rem;
  }

  #livres h2,
  #galerie h2 {
    font-size: 2rem;
  }
  #pourquoi,
  #galerie {
    padding: 4rem 1.5rem;
  }

  #livres {
    padding: 4rem 1.5rem;
  }

  .cards {
    flex-direction: column;
  }

  .panel.active {
    grid-template-columns: 1fr;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }

  /* onglets scrollables horizontalement */
  .age-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
  }
  .livre-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .livre-card img {
    width: 100px;
    height: 145px;
  }

  .detail-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #detail-img {
    width: 110px;
    height: 165px;
  }

  .hamburger {
    display: block;
  }

  /* menu mobile qui descend en dessous de la nav */
  .nav-links {
    display: none;
    flex-direction: column;    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after {
    display: none;
  }

  /* le js toggle cette classe au clic sur hamburger */
  .nav-links.open {
    display: flex;
  }

  .glow-orb {
    filter: blur(80px);
    opacity: 0.7;
  }

  .glow-orb--hero {
    width: 250px;
    height: 250px;
  }

  .section-divider {    height: 40px;
  }
}

/* pour single.php et page.php */
.wp-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.wp-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.wp-content .post-content {
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1rem;
}

.wp-content .post-content p {
  margin-bottom: 1rem;
}

.wp-content .post-content a {
  color: var(--accent);
  text-decoration: underline;
}