.ag-posts-grid-wrapper-38278ae0 {
    width: 100%;
}
.ag-posts-grid-38278ae0 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.ag-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ag-post-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.ag-post-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.ag-post-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}
.ag-post-img-placeholder {
    background-color: #eee;
}
.ag-post-content {
    padding: 20px;
}
.ag-post-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: #333;
}
.ag-post-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}
.ag-post-readmore {
    display: flex;
    justify-content: flex-end;
    color: #0073aa;
}
.ag-post-readmore i {
    font-size: 1.2rem;
}
.ag-posts-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.ag-posts-pagination a,
.ag-posts-pagination span {
    padding: 8px 12px;
    background: #f1f1f1;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
}
.ag-posts-pagination .current {
    background: #0073aa;
    color: #fff;
}