.framed-text {
    margin: 88px 24px;
    max-width: 1084px;
    border: 4px solid #d8b465;
    padding: 32px 24px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 992px) {
    .framed-text {
        margin: 88px 24px;
        padding: 56px;
        flex-direction: row;
        gap: 56px;
    }
}
@media screen and (min-width: 1130px) {
    .framed-text {
        margin: 88px auto;
    }
}

.framed-text .image {
    background: #d8b465;
    border-radius: 50%;
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

@media screen and (min-width: 992px) {
    .framed-text .image {
        margin: initial;
        flex-basis: 10%;
    }
}

.framed-text .image span{
    width: 32px;
    height: 32px;
    mask: var(--mask) no-repeat center;
    mask-size: contain;
    background-color: black;
}

.framed-text div {
    text-align: center;
}

@media screen and (min-width: 992px) {
    .framed-text div {
        text-align: left;
        flex-basis: 84%;
    }
}

.framed-text div h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 32px;
}

@media screen and (min-width: 992px) {
    .framed-text div h2 {
        font-size: 32px;
    }
}

.framed-text div h2 strong {
    font-weight: 700;
}

.framed-text div p {
    margin-bottom: 24px;
    font-weight: 500;
}