.bc-grid {
    display: grid;
    /* grid-template-columns defined by settings */
}
.bc-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bc-card.bc-hover-lift:hover {
    transform: translateY(-5px);
}
.bc-image-wrap {
    width: 100%;
    overflow: hidden;
    /* height defined by settings */
}
.bc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.bc-card:hover .bc-image-wrap img {
    transform: scale(1.05);
}
.bc-content-wrap {
    display: flex;
    flex-grow: 1;
    color: #fff;
    position: relative;
    transition: background-color 0.3s ease;
}
.bc-icon-col {
    width: 45px;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.bc-icon-bg {
    background: #e2e4e3; /* overridden by setting */
    border-radius: 0 50px 50px 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333; /* overridden by setting */
    transition: background-color 0.3s ease, color 0.3s ease;
}
.bc-icon-bg i, .bc-icon-bg svg {
    transition: fill 0.3s ease, color 0.3s ease;
}
.bc-text-col {
    padding: 25px 25px 25px 55px; /* Default left padding leaves room for the chevron */
    flex-grow: 1;
}
.bc-title {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}
.bc-desc {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}