.blog-grid-wrapper-72aaa72e {
    --grid-gap: 30px;
    --card-bg: #fff;
    --card-radius: 12px;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.bg-filters-72aaa72e {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.bg-filter-btn-72aaa72e {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 16px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.bg-filter-btn-72aaa72e:hover,
.bg-filter-btn-72aaa72e.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.bg-grid-72aaa72e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

@media(max-width: 1024px) {
    .bg-grid-72aaa72e { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 767px) {
    .bg-grid-72aaa72e { grid-template-columns: 1fr; }
}

.bg-card-72aaa72e {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.bg-card-72aaa72e:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.bg-image-72aaa72e {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.bg-image-72aaa72e img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bg-card-72aaa72e:hover .bg-image-72aaa72e img {
    transform: scale(1.05);
}

.bg-category-badge-72aaa72e {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #333;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-content-72aaa72e {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bg-meta-72aaa72e {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.bg-meta-72aaa72e i {
    margin-right: 4px;
}

.bg-title-72aaa72e {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.bg-title-72aaa72e a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bg-title-72aaa72e a:hover {
    color: #0073aa;
}

.bg-excerpt-72aaa72e {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bg-read-more-72aaa72e {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #0073aa;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.bg-read-more-72aaa72e svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.bg-card-72aaa72e:hover .bg-read-more-72aaa72e svg {
    transform: translateX(4px);
}

.bg-empty-72aaa72e {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: var(--card-radius);
    color: #666;
}

.bg-card-72aaa72e.hidden {
    display: none;
}