/* Content/PageBuilder/components/feature-columns/feature-columns.css */
.sb-fc--dark {
    background: #111827;
    color: #e5e7eb;
}

.sb-fc--light {
    background: #f8f9fa;
}

.sb-fc-card {
    background: var(--bs-body-bg);
    border-radius: 1rem;
    padding: 1.25rem;
}

.sb-fc-card--border {
    border: 1px solid rgba(0,0,0,.1);
}

.sb-fc-card--shadow {
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.sb-fc-plain {
    background: transparent;
    padding: .25rem;
}

.sb-fc-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,.05);
}

.sb-fc--dark .sb-fc-icon-wrap {
    background: rgba(255,255,255,.07);
}

.sb-fc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.sb-fc-icon {
    font-size: 28px;
    line-height: 1;
}

.sb-fc-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.text-center .sb-fc-body {
    align-items: center;
}

.text-end .sb-fc-body {
    align-items: flex-end;
}
