.bc-hero {
    background: linear-gradient(135deg, #d9232d 0%, #a8171f 100%);
    padding: 42px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.bc-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 8px;
    text-transform: capitalize;
}

.bc-hero p {
    margin: 0;
    opacity: .9;
    font-size: .95rem;
}

.bc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

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

.bc-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}

    .bc-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0,0,0,.15);
    }

.bc-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: 190px;
    background: #f3f3f3;
}

.bc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.bc-card:hover .bc-card-img {
    transform: scale(1.08);
}

.bc-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d9232d;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.bc-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bc-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #212529;
    margin: 4px 0 8px;
    line-height: 1.35;
}

.bc-card:hover .bc-card-title {
    color: #d9232d;
}

.bc-card-desc {
    color: #6c757d;
    font-size: .88rem;
    line-height: 1.5;
    overflow-wrap: break-word;
    flex: 1;
    margin-bottom: 12px;
}

.bc-card-readmore {
    align-self: flex-start;
    font-weight: 700;
    font-size: .8rem;
    color: #d9232d;
    text-transform: uppercase;
    letter-spacing: .02em;
}

    .bc-card-readmore i {
        margin-left: 4px;
        transition: margin-left .2s ease;
    }

.bc-card:hover .bc-card-readmore i {
    margin-left: 8px;
}

.bc-sidebar-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.bc-sidebar-title {
    background: #d9232d;
    color: #fff;
    margin: 0;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.bc-cat-list {
    list-style: none;
    margin: 0;
    padding: 8px;
}

    .bc-cat-list li {
        border-bottom: 1px solid #f1f1f1;
    }

        .bc-cat-list li:last-child {
            border-bottom: none;
        }

    .bc-cat-list a {
        display: block;
        padding: 10px 10px;
        color: #444;
        font-size: .9rem;
        border-radius: 6px;
        transition: background .2s ease, color .2s ease, padding-left .2s ease;
    }

        .bc-cat-list a i {
            color: #d9232d;
            margin-right: 8px;
        }

        .bc-cat-list a:hover {
            background: rgba(217,35,45,.08);
            color: #d9232d;
            padding-left: 16px;
            text-decoration: none;
        }

    .bc-cat-list a.active {
        background: #d9232d;
        color: #fff;
    }

        .bc-cat-list a.active i {
            color: #fff;
        }

.bc-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px 10px;
    color: #6c757d;
    font-weight: 600;
}

.bc-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px 0;
}
