.blog-categories-grid-76e54493 {
    display: grid;
    gap: var(--grid-gap, 20px);
    grid-template-columns: repeat(var(--grid-columns, 2), 1fr);
}

.blog-category-card-76e54493 {
    position: relative;
    border-radius: var(--card-border-radius, 8px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    min-height: var(--card-min-height, 200px);
}

.blog-category-bg-76e54493 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    z-index: 1;
}

.blog-category-card-76e54493:hover .blog-category-bg-76e54493 {
    transform: scale(1.05);
}

.blog-category-overlay-76e54493 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--overlay-color, rgba(0,0,0,0.4));
    z-index: 2;
    transition: background-color 0.3s ease;
}

.blog-category-card-76e54493:hover .blog-category-overlay-76e54493 {
    background-color: var(--overlay-color-hover, rgba(0,0,0,0.5));
}

.blog-category-content-76e54493 {
    position: relative;
    z-index: 3;
    padding: 20px;
    width: 100%;
}

.blog-category-title-76e54493 {
    color: var(--title-color, #ffffff);
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}
