/* Blog Post Custom Styles */

/* Container */
.blog-content {
    color: #333;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

/* Headings */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #112D4E;
    /* Brand Navy */
    font-family: 'Playfair Display', serif;
    margin-top: 2em;
    margin-bottom: 0.8em;
    font-weight: 700;
}

.blog-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid #DBE2EF;
    padding-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.5rem;
}

.blog-content h4 {
    font-size: 1.25rem;
}

/* Paragraphs */
.blog-content p {
    margin-bottom: 1.5em;
    /* Spacing between blocks */
    font-size: 1.1rem;
    color: #4a5568;
}

/* Lists */
.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.blog-content ul {
    list-style-type: disc;
}

.blog-content ol {
    list-style-type: decimal;
}

.blog-content li {
    margin-bottom: 0.5em;
    padding-left: 0.5em;
    color: #4a5568;
}

/* Images */
.blog-content figure {
    margin: 2em 0;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog-content figcaption {
    text-align: center;
    font-size: 0.9em;
    color: #718096;
    margin-top: 0.5em;
    font-style: italic;
}

/* Blockquotes */
.blog-content blockquote {
    border-left: 4px solid #3F72AF;
    /* Brand Teal/Blue */
    padding: 1em 1.5em;
    margin: 2em 0;
    background-color: #F9F7F7;
    /* Brand Light */
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #2D3748;
}

.blog-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    font-weight: bold;
    color: #112D4E;
    font-style: normal;
}

/* Links inside content */
.blog-content a {
    color: #3F72AF;
    text-decoration: underline;
    transition: color 0.2s;
}

.blog-content a:hover {
    color: #112D4E;
}