.intro-centered-simple__content-area {
    max-width: 48rem;
}

.intro-centered-simple__text-block {
    max-width: 42rem;
}

.tips-financial__card {
    max-width: 24rem;
}

.tips-financial__thumb {
    width: 2.5rem;
    height: 2.5rem;
}

/* Bootstrap flex-md-row: cap thumb width (parity with Tailwind md:w-80) */
.content-v41-thumb-wrap {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .content-v41-thumb-wrap {
        width: 20rem;
        max-width: 20rem;
    }
}

.spread-chapter__visual--rise:hover { transform: scale(1.05); transition: transform .2s ease; }

.spread-chapter__jump--rise:hover { transform: scale(1.05); transition: transform .2s ease; }

.content-col-grow {
    flex: 1 1 0%;
    min-width: 0;
}

.content-grid-gap {
    gap: 2rem;
}

.content-img-expands {
    display: block;
    width: 100%;
    height: 18rem;
    min-height: 18rem;
    flex-shrink: 0;
    object-fit: cover;
}
@media (min-width: 768px) {
    .content-img-expands {
        height: 24rem;
        min-height: 24rem;
    }
}

/* glossary invert — hover lift supplied via Tailwind on @sem('block'). */

/* 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;
    }

    .integrations__marquee-ltr,
    .integrations__marquee-rtl {
        animation: 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;
    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);
}

/* Marquee — two equal sets; -50% lands on set boundary for seamless loop */
@keyframes integrations-v15-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.integrations-v15__marquee-set {
    display: flex;
    flex-shrink: 0;
}

.integrations__marquee-ltr,
.integrations__marquee-rtl {
    display: flex;
    width: max-content;
    will-change: transform;
}

.integrations__marquee-ltr {
    animation: integrations-v15-marquee 30s linear infinite;
}

.integrations__marquee-rtl {
    animation: integrations-v15-marquee-rtl 35s linear infinite;
}

@keyframes integrations-v15-marquee-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

.integrations__marquee-fade-left {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.03), transparent);
}

.integrations__marquee-fade-right {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.03), transparent);
}

/* v15 — icon tile & fade sizes (no colors) */
.integrations-v15__tile-md {
    width: 2rem;
    height: 2rem;
}

.integrations-v15__tile-sm {
    width: 1.75rem;
    height: 1.75rem;
}

.integrations-v15__fade {
    width: 6rem;
}

