/* Styling exclusive to markdown articles rendered on articles.html */
/* Typography */
#article-content-container p {
  font-size: 1.1rem;
  line-height: 1.6;
}

#article-content-container + h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    line-height: 1.2;
    color: #111827;
}

#article-content-container h1 {
    font-family: 'Courier New', Courier, monospace;
    color: #336699;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

#article-content-container h2 {
  color: #336699;
  padding-bottom: 0.5rem;
  text-align: center;
}

#article-content-container h2::after {
    height: 0px;
}


#article-content-container h3 {
    font-size: 1.5rem; /* 24px */
    color: var(--accent-secondary);
}

#article-content-container h4 {
    font-size: 1.25rem; /* 20px */
    color: var(--accent-secondary);
    margin-bottom: 0.8rem;
}

#article-content-container h5 {
    font-size: 1rem; 
    color: var(--accent-secondary);
}

/* Links */
/* Better link styling */
a {
    color: #3b82f6;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: none;
}

a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

sup {
    color: #003366;
}