.be-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
}

/* Stack on small screens */
@media (max-width: 768px) {
    .be-icon-grid {
        grid-template-columns: 1fr;
    }
}

.be-icon-grid__col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Card styling (similar to your other controls) */
.be-icon-grid__card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition:
        background 0.15s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.be-icon-grid__card:hover {
    background: #fafdfb;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Icon */
.be-icon-grid__icon-wrap {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.be-icon-grid__icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.be-icon-grid__content {
    flex: 1 1 auto;
}

.be-icon-grid__title {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.be-icon-grid__desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Editor sidebar styling helpers (optional) */
.be-icon-grid__entry-editor {
    margin-bottom: 1rem;
}
.be-icon-grid__entry-thumb-preview {
    margin: 0.4rem 0 0.7rem;
}
