.summary {
    position: relative;
    width: 100%;
}

.summary__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary__body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 4rem;
}

.summary__line {
    border-left: 1px solid #fff;
}

.summary__title {
    font-family: var(--heading-font);
    letter-spacing: 1.38px;
}

@media (max-width: 991px) {
    .summary__body {
        padding: calc(var(--bs-gutter-x) * .8);
    }
}