/* Sticky content — i2t3 component styles
 * Two columns: the media sticks while the text column scrolls (md+). Pure CSS
 * via position:sticky — no JS. The stick offset honours a sticky header.
 */

.i2t3-stickycontent__media img {
    width: 100%;
    height: auto;
    border-radius: .5rem;
}

.i2t3-stickycontent__text > :last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .i2t3-stickycontent__media {
        position: sticky;
        top: var(--i2t3-sticky-top, 6rem);
    }
}
