/* Blog Snippet on Main Blog Page */
.blog-post-snippet {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-post-snippet:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-post-snippet .post-meta {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.blog-post-snippet .post-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-post-snippet .post-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-post-snippet .post-title a:hover {
    color: #2563eb;
}

.blog-post-snippet .post-excerpt {
    color: #475569;
    line-height: 1.6;
}

.blog-post-snippet .read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* Single Full Blog Post Page */
.blog-post-full .post-meta {
    color: #475569;
    margin-bottom: 1.5rem;
}

.blog-post-full .post-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
    object-fit: cover;
    max-height: 400px;
}

.blog-post-full .post-content {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #334155;
}

.blog-post-full .post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.blog-post-full .post-content a {
    color: #2563eb;
    text-decoration: underline;
}

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

.blog-post-full .post-content li {
    margin-bottom: 0.75rem;
}

.blog-post-full .post-content strong {
    color: #1e293b;
}

.blog-post-full .back-to-blog {
    display: inline-block;
    margin-top: 2rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}