/* ----- acf block ----- */
.sfsm-container {
    max-width: 860px;
    margin: 2.5rem auto 3.5rem;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

.sfsm-container::before,
.sfsm-container::after {
    background-color: #b4b4b4;
    position: absolute;
    content: '';
    width: calc(100% - 40px);
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.sfsm-container::before {
    top: 20px;
}

.sfsm-container::after {
    bottom: 0;
}

.sfsm-title {
    background-color: white;
    position: relative;
    padding: 0 50px;
    width: fit-content;
    margin: 0 auto 2rem;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    font-family: inherit;
}

.sfsm-list {
    list-style: disc;
    padding: 0 50px 30px 50px;
}

.sfsm-list li {
    margin-bottom: 2rem;
}

.sfsm-list li a {
    font-family: inherit;
    text-decoration: underline;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 2rem;
}

@media screen and (max-width:767px) {
    .sfsm-list li {
        margin-bottom: 1.6rem;
    }

    .sfsm-list li a {
        font-size: 1.4rem;
    }
}