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

.bc-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bc-link {
    cursor: pointer;
}

.bc-link:hover {
    border-color: var(--brand-color);
    box-shadow: 0 4px 20px rgba(225, 10, 35, 0.1);
}

.bc-icon-bg {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(225, 10, 35, 0.08);
    margin-right: 14px;
    transition: background-color 0.3s ease;
}

.bc-link:hover .bc-icon-bg {
    background-color: rgba(225, 10, 35, 0.15);
}

.bc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    font-size: 20px;
    line-height: 0;
}

.bc-icon i,
.bc-icon svg {
    display: block;
}

.bc-icon svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
}

.bc-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bc-label {
    color: #888;
    font-size: 12px;
    margin-bottom: 2px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.bc-value {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}
