.angie-category-filter-f139f1b0 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.angie-filter-btn {
    padding: 8px 16px;
    background: #f1f1f1;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}
.angie-filter-btn:hover {
    background: #e0e0e0;
}
.angie-filter-btn.active {
    background: #0073aa;
    color: #fff;
}

.angie-posts-wrapper-f139f1b0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.angie-post-item {
    display: flex;
    flex-direction: column;
    border: 2px solid #e7e7e7;
    padding: 6px 8px 13px;
    border-radius: 12px;
}
.angie-post-thumb-link {
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 8px;
}
.angie-post-thumb {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.angie-post-thumb-placeholder {
    height: 170px;
    background: #eee;
}
.angie-post-title {
    margin: 0 8px 15px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}
.angie-post-title a {
    color: #111;
    text-decoration: none;
}
.angie-post-title a:hover {
    color: #0073aa;
}
.angie-post-meta {
    font-size: 13px;
    color: #999;
    margin: 4px 8px 0;
}
.angie-post-excerpt {
    font-size: 14px;
    color: #555;
    margin: 10px 8px 0;
    line-height: 1.5;
}
.angie-post-readmore {
    display: inline-block;
    margin: 12px 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #0073aa;
    text-decoration: none;
}
.angie-post-readmore:hover {
    text-decoration: underline;
}
.angie-pagination-f139f1b0 {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}
.angie-pagination-f139f1b0 .page-numbers {
    padding: 5px 10px;
    background: #f1f1f1;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
}
.angie-pagination-f139f1b0 .page-numbers.current {
    background: #0073aa;
    color: #fff;
}