.steps-primary-row__card-col {
    max-width: 28rem;
}

.steps-primary-row__badge-circle {
    width: 4rem;
    height: 4rem;
}

/* integrations — unified hover (layout; shadow + lift; respect reduced motion) */
.integrations-card-hover {
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.integrations-card-hover:hover {
    box-shadow:
        0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
    transform: translateY(-2px) scale(1.03);
}

.integrations-card-hover--shadow-only {
    transition: box-shadow 0.35s ease;
}

.integrations-card-hover--shadow-only:hover {
    transform: none;
    box-shadow:
        0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
}

@media (prefers-reduced-motion: reduce) {
    .integrations-card-hover:hover {
        transform: none;
    }
}

/* Primary tile: wpg-preview --tw-primary-* | --bs-primary-scale-*; inherited --bs-primary hex */
.integrations__icon-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    flex: none;
    color: #fff;
    --_ie-from: rgb(var(--tw-primary-500, var(--bs-primary-scale-500, 99 102 241)) / 1);
    --_ie-to: rgb(var(--tw-primary-600, var(--bs-primary-scale-600, 79 70 229)) / 1);
    background-color: var(--bs-primary, rgb(var(--tw-primary-600, var(--bs-primary-scale-600, 79 70 229)) / 1));
    background-image: linear-gradient(to bottom right, var(--_ie-from), var(--_ie-to));
}
.integrations__icon-tile i {
    color: inherit;
}
.integrations__icon-tile svg,
.integrations__icon-tile :is(path, circle, rect, polygon) {
    fill: currentColor;
}

/* Softer card hover shadow (avoids muddy stack with shadow-lg / BS cards) */
.integrations-card-hover:hover {
    box-shadow: 0 0.375rem 1rem rgba(15, 23, 42, 0.07);
}
.integrations-card-hover--shadow-only:hover {
    box-shadow: 0 0.375rem 1rem rgba(15, 23, 42, 0.07);
}

/* Scanlines overlay */
.integrations__scanlines {
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.4) 3px,
        rgba(0, 0, 0, 0.4) 4px
    );
}

/* Terminal traffic-light dots */
.integrations__tl-dot {
    width: 0.75rem;
    height: 0.75rem;
    flex: none;
}

/* Blinking CLI cursor */
.integrations__cursor {
    display: inline-block;
    width: 0.5rem;
    height: 1rem;
    flex: none;
}

/* Terminal table columns: widths without colors */
.integrations__col-num {
    width: 1.5rem;
    flex: none;
}
.integrations__col-icon {
    width: 2.5rem;
    flex: none;
}
@media (min-width: 768px) {
    .integrations__col-name {
        width: 11rem;
        flex: none;
    }
    .integrations__col-category {
        width: 7rem;
        flex: none;
    }
}

/* Letter-spacing helper (Bootstrap has no tracking utility) */
.integrations__tracking-wide {
    letter-spacing: 0.1em;
}

/* Hover: brighten dt/dd (moved out of the sem directive; color-free brightness for framework parity) */
.integrations-v17__row .integrations__col-name,
.integrations-v17__row .integrations-v17__row-desc { transition: filter 0.15s ease; }
.integrations-v17__row:hover .integrations__col-name,
.integrations-v17__row:hover .integrations-v17__row-desc { filter: brightness(1.2); }

