/* Global link styling for all <a> tags */
a {
  color: #a05a2e; /* 10% lighter than #8e4d27 */
  text-decoration: none;
  transition: color 0.2s;
}

/* Restrict underline hover to links in paragraphs, articles, posts, and descriptions */
p a:hover,
article a:hover,
.post-content a:hover,
.article-content a:hover,
.description a:hover {
  color: #b36b3f; /* Even lighter on hover */
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
}
