/* Add specific blog styles if needed */
.blog-post-card {
    background-color: rgba(var(--bg-secondary-rgb), 0.7);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Make cards in a row equal height */
}
.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color-light);
}
.blog-post-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Crop images nicely */
}
.blog-card-body {
    padding: 25px;
    flex-grow: 1; /* Allows body to expand */
    display: flex;
    flex-direction: column;
}
.blog-card-body h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.blog-card-body .text-muted {
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.blog-card-body p { /* Short intro */
    flex-grow: 1; /* Takes up remaining space */
    margin-bottom: 20px;
}
.blog-card-body .btn { /* Read more button */
    margin-top: auto; /* Pushes button to bottom */
    align-self: flex-start; /* Align button left */
}


#blog-post-content img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#blog-post-content h2,
#blog-post-content h3,
#blog-post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}
#blog-post-content p {
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
#blog-post-content strong { color: var(--text-primary); }
#blog-post-content ul, #blog-post-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}
#blog-post-content li { margin-bottom: 0.5rem; }

.post-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.featured-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    margin-bottom: 2rem;
    border-radius: 8px;
}
