.bt-home-sections {
    display: flex;
    flex-direction: column;
    gap: clamp(.9rem, 2vw, 1.5rem);
}

.bt-home-section {
    border-radius: 1.25rem;
    isolation: isolate;
    padding: clamp(1.5rem, 3vw, 3rem) clamp(.5rem, 1.5vw, 1.5rem);
    position: relative;
}

.bt-home-section + .bt-home-section::before {
    background: linear-gradient(
        90deg,
        transparent,
        var(--bs-primary, #32b5f3),
        transparent
    );
    border-radius: 999px;
    content: "";
    height: 1px;
    left: 50%;
    opacity: .65;
    position: absolute;
    top: clamp(-.8rem, -1vw, -.45rem);
    transform: translate(-50%, -50%);
    width: 5.5rem;
}

.bt-home-section + .bt-home-section::after {
    background: var(--bs-primary, #32b5f3);
    border-radius: 50%;
    box-shadow: 0 0 0 .3rem var(--bs-body-bg, #fff);
    content: "";
    height: .45rem;
    left: 50%;
    position: absolute;
    top: clamp(-.8rem, -1vw, -.45rem);
    transform: translate(-50%, -50%);
    width: .45rem;
}

.bt-home-section > .container,
.bt-home-section > section.container {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.bt-home-section[data-component="carousel"] {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}

.bt-home-section__edit {
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    height: 2rem;
    justify-content: center;
    position: absolute;
    left: .75rem;
    top: .75rem;
    width: 2rem;
    z-index: 10;
}

@media (max-width: 575.98px) {
    .bt-home-sections {
        gap: .75rem;
    }

    .bt-home-section {
        border-radius: .9rem;
        padding: 1.35rem .25rem;
    }

    .bt-home-section + .bt-home-section::before {
        top: -.45rem;
        width: 4rem;
    }

    .bt-home-section + .bt-home-section::after {
        top: -.45rem;
    }

    .bt-home-section__edit {
        left: .35rem;
        top: .35rem;
    }
}
