/* Full-width image section — i2t3 component styles
 * A full-width background image with a semi-transparent dark overlay and text
 * on top. Height follows the global min-height (defaults below). No script.
 */

.i2t3-fullwidthsemi {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 360px;
    padding: 3rem 1rem;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.i2t3-fullwidthsemi__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}
.i2t3-fullwidthsemi__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 56rem;
    margin-inline: auto;
}
.i2t3-fullwidthsemi__title { margin-bottom: .75rem; }
.i2t3-fullwidthsemi__text > :last-child { margin-bottom: 0; }
