.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-hero {
    padding: 80px 0 48px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.blog-hero p {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #666;
    font-size: 1.125rem;
    line-height: 1.8;
}

.blog-featured,
.blog-posts,
.blog-categories,
.blog-about,
.blog-faq,
.blog-cta {
    padding: 64px 0;
}

.blog-featured h2,
.blog-posts h2,
.blog-categories h2,
.blog-about h2,
.blog-faq h2,
.blog-cta h2 {
    margin-bottom: 32px;
    font-size: 2rem;
}

.featured-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.posts-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.featured-card,
.post-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 24px;
    transition: all .2s ease;
}

.featured-card:hover,
.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.post-image {
    aspect-ratio: 16 / 9;
    background: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 20px;
}

.category {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #555;
    font-size: .8rem;
    font-weight: 600;
}

.featured-card h3,
.post-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.35;
}

.featured-card h3 a,
.post-card h3 a {
    color: #111;
    text-decoration: none;
}

.featured-card h3 a:hover,
.post-card h3 a:hover {
    text-decoration: underline;
}

.featured-card p,
.post-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    color: #777;
}

.post-footer a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.post-footer a:hover {
    text-decoration: underline;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.category-list a {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #444;
    transition: .2s;
}

.category-list a:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.blog-about p {
    max-width: 760px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-faq details {
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 16px;
}

.blog-faq summary {
    cursor: pointer;
    font-weight: 600;
}

.blog-faq p {
    margin-top: 14px;
    color: #666;
    line-height: 1.8;
}

.blog-cta {
    text-align: center;
    border-top: 1px solid #eee;
}

.blog-cta p {
    max-width: 620px;
    margin: 0 auto 32px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero h1 {
        font-size: 2.3rem;
    }

    .blog-posts h2,
    .blog-featured h2 {
        font-size: 1.7rem;
    }
}
