/* Blog Content Styles */
.blog-content {
    line-height: 1.8;
    color: #374151; /* text-gray-700 */
    font-size: 1.125rem; /* text-lg */
}

.blog-content h1, 
.blog-content h2, 
.blog-content h3, 
.blog-content h4, 
.blog-content h5, 
.blog-content h6 {
    font-family: 'Playfair Display', serif;
    color: #2F4A7A; /* vienna-blue */
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content h2 { font-size: 2rem; }
.blog-content h3 { font-size: 1.5rem; }
.blog-content h4 { font-size: 1.25rem; }

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content blockquote {
    font-style: italic;
    border-left: 4px solid #D4A759; /* belvedere-gold */
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #4B5563; /* text-gray-600 */
    font-size: 1.25rem;
}

.blog-content ul, 
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

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

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content a {
    color: #D4A759; /* belvedere-gold */
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

.blog-content a:hover {
    color: #2F4A7A; /* vienna-blue */
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.blog-content figure {
    margin: 2rem 0;
}

.blog-content figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: #6B7280; /* text-gray-500 */
    margin-top: 0.5rem;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.blog-content th, 
.blog-content td {
    border: 1px solid #E5E7EB; /* border-gray-200 */
    padding: 0.75rem;
    text-align: left;
}

.blog-content th {
    background-color: #F9FAFB; /* bg-gray-50 */
    font-weight: 600;
}

.blog-content hr {
    border: 0;
    border-top: 1px solid #E5E7EB;
    margin: 3rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-content {
        font-size: 1rem;
    }
    .blog-content h2 { font-size: 1.75rem; }
    .blog-content h3 { font-size: 1.35rem; }
}
