/* Base Article Content Styling */
.author-time-block::before {
    content: "";
    display: block;
    width: 32px; /* The width of the solid rectangle */
    height: 6px; /* The thickness of the rectangle */
    background-color: #0000001f; /* A nice medium gray (Tailwind's gray-400) */
    margin-bottom: 12px; /* Adds space between the rectangle and the author name */
}
.article-content p { 
    margin-bottom: 1.25rem; 
    line-height: 1.8; 
}
.article-content figure { 
    margin: 2rem 0; 
    text-align: center; 
}
.article-content img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 0.5rem; 
    display: inline-block;
}
.article-content figcaption { 
    font-size: 0.875rem; 
    color: #6b7280; 
    margin-top: 0.5rem; 
}