.cgwf-container-abb7c72a {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cgwf-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.cgwf-filter-btn {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 500;
}
.cgwf-filter-btn.active, .cgwf-filter-btn:hover {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}
.cgwf-date-filter {
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-left: auto;
    font-weight: 500;
    cursor: pointer;
}
.cgwf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    transition: opacity 0.3s;
}
.cg-post-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.cg-post-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.cg-post-content {
    padding: 20px;
}
.cg-post-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.4;
}
.cg-post-title a {
    text-decoration: none;
    color: #0f172a;
    transition: color 0.2s;
}
.cg-post-title a:hover {
    color: #3b82f6;
}
.cg-post-excerpt {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}
