.service-posts-page {
    background: #f6f8f5;
}

.service-category-hero {
    padding: 28px 0 14px;
    text-align: center;
}

.service-category-hero h1 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #1f2f22;
}

.service-category-hero p {
    margin: 0 auto;
    max-width: 900px;
    font-size: 18px;
    line-height: 1.7;
    color: #435847;
}

.service-posts-section {
    padding: 14px 0 30px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.post-item {
    background: #fff;
    border: 1px solid #dce7dc;
    border-radius: 12px;
    overflow: hidden;
}

.post-item a {
    display: block;
    height: 100%;
}

.post-thumb {
    aspect-ratio: 16 / 10;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 14px;
    text-align: left;
}

.post-meta {
    margin: 0 0 6px;
    font-size: 13px;
    color: #748477;
}

.post-content h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.4;
    color: #1f2f22;
}

.post-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #3d4f40;
}

.post-content p.post-excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: #5a6b5c;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.post-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #2f6b3a;
    font-weight: 700;
    font-size: 14px;
}

.post-readmore::after {
    content: "\2192";
}

.post-empty {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid #dce7dc;
    border-radius: 12px;
    padding: 16px;
}

.post-empty h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.post-empty p {
    margin: 0;
    color: #3d4f40;
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .service-category-hero h1 {
        font-size: 24px;
    }

    .service-category-hero p {
        font-size: 15px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }
}
