.ib-banners-container .banner.has-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.ib-banners-container .banner > *:not(.btn),
.ib-banners-container .banner > .content > *:not(.btn) {
    color: inherit;
}

.ib-banners-container .banner > *:last-child, 
.ib-banners-container .banner > .content > *:last-child {
    margin-bottom: 0;
}

.ib-banners-container .banner {
    position: relative;
}

.ib-banners-container .banner::before {
    content: "";
    background-color: var(--bg-color);
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.ib-banners-container .banner .btn-ib-banner {
    font-size: 1.25rem;
    font-weight: 700;
}