/*
 * Glacial Blocks — shared front-end styles (also loaded in the editor canvas).
 *
 * Only rules that STANDARDIZE something the Drupal import repeated as
 * per-instance inline styles belong here. Layout itself stays on the blocks'
 * own inline styles (the vg paragraph-* CSS is inline-style-driven).
 */

/* The orange gradient treatment the import inlined on every feature icon. */
.gl-icon-gradient {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to left, #E2842B, #F8b330);
}

/*
 * Namespaced spacing utilities for block text (replacing per-instance inline
 * padding from the import). Do NOT use Bootstrap p*-N classes in content —
 * the stock glacial-utilities.css defines conflicting rules for the same
 * names (e.g. .pb-3 { padding-top: 3em }).
 */
.gl-pt-0 {
    padding-top: 0;
}

.gl-px-1r {
    padding-left: 1rem;
    padding-right: 1rem;
}

.gl-pb-06r {
    padding-bottom: 0.6rem;
}

.gl-pb-1r {
    padding-bottom: 1rem;
}

.gl-pb-15r {
    padding-bottom: 1.5rem;
}
