/* v15 — Diagonal Split: decorative stripe, shake animation */

.angled-ribbon-backdrop__spectrum {
    clip-path: polygon(50% 0, 50.5% 0, 60.5% 100%, 60% 100%);
    background: linear-gradient(to bottom,
        rgba(var(--primary-500), 0.1),
        rgba(var(--primary-500), 0.2),
        rgba(var(--primary-500), 0.1));
}

@keyframes angled-ribbon-backdrop-form-shake-kf {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* contact-split — full-height image needs object-fit (no BS util) */
.contact-split__img {
    object-fit: cover;
    min-height: 16rem;
    max-height: 28rem;
}

/* contact-split — icon cell size (TW rounded padding has no fixed-size BS util) */
.contact-split__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

