.bcee-categories-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.bcee-category-card {
    display: flex;
    background-color: #121212;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
}
.bcee-category-image {
    flex: 1 1 50%;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.bcee-category-image img {
    max-width: 100%;
    height: auto;
    display: block;
}
.bcee-category-content {
    flex: 1 1 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bcee-category-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #999;
}
.bcee-category-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
}
.bcee-category-link {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-decoration: none;
}
.bcee-category-link:hover {
    text-decoration: underline;
}
