/* 1) Améliorer le focus clavier (WCAG “Focus Visible”) */
a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* 2) Réduire les animations si l’utilisateur le demande */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* 3) Ajuster légèrement la largeur si vous aimez plus “aéré” */
.max-width {
  max-width: 52rem;
}

/* 1. Change the default link color to Red */
a {
    color: #027870 !important;
}


/* 3. Change specific UI elements that might still be green */
/* Pagination numbers (1, 2, 3...) */
.pagination .page-item.active .page-link {
    background-color: #027870 !important;
    border-color: #027870 !important;
}

/* The "Read more" or specific buttons if they exist */
#footer a:hover {
    color: #027870 !important;
}


/* Only target the main title inside a specific post view */
.post-title,
.post h1 {
    color: #027870 !important;
}

/* Only target the headings INSIDE the post content */
.post-content h2, 
.post-content h3, 
.post-content h4 {
    color: #027870 !important;
}

/* This ensures the homepage headers (like "Posts") are ignored */

