.bfc-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.bfc-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.bfc-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #111111;
    margin: 0;
    flex: 1;
}

.bfc-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bfc-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.bfc-btn--text {
    color: #0485A9;
}

.bfc-btn--text:hover {
    text-decoration: underline;
}

.bfc-btn--solid {
    background-color: #0485A9;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
}

.bfc-btn--solid:hover {
    background-color: #036b8a;
}
