.blog-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

.blog-page h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.blog-grid.card-grid--blog {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.blog-header {
    margin-bottom: 1.5rem;
}

.blog-post-title {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-post-meta a {
    color: inherit;
    text-decoration: none;
}

.blog-post-meta a:hover {
    color: #3b5998;
    text-decoration: none;
}

.blog-hero-media {
    position: relative;
    padding-top: 56%;
    max-height: 420px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.blog-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1f2937;
}

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

.blog-post-content blockquote {
    margin: 1.25rem 0;
    padding: 0.75rem 1rem;
    border-left: 4px solid #3b5998;
    background: #f6f8fb;
    font-style: italic;
    color: #1f2937;
}

.blog-post-content blockquote p:last-child {
    margin-bottom: 0;
}

.blog-pagination {
    margin-top: 2rem;
}

.blog-cta {
    text-align: center;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .blog-page {
        padding: 1.5rem 1rem;
    }
    .blog-post-title {
        font-size: 1.6rem;
    }
}
