.boma-project-single {
    width: 100%;
    padding: 70px 20px 90px;
    box-sizing: border-box;
}
.boma-project-single__article {
    width: min(100%, 1000px);
    margin: 0 auto;
}
.boma-project-single__header {
    text-align: center;
    margin-bottom: 35px;
}
.boma-project-single__title {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 600;
}
.boma-project-single__image {
    width: 100%;
    margin: 0 auto 45px;
    text-align: center;
}
.boma-project-single__featured-image {
    display: block;
    width: 100%;
    max-width: 900px;
    max-height: 560px;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 10px;
}
.boma-project-single__content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b7a;
}
.boma-project-single__content p {
    margin: 0 0 22px;
}
.boma-project-single__button-wrap {
    max-width: 900px;
    margin: 40px auto 0;
}
.boma-project-single__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: #f7941d;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: opacity .2s ease, transform .2s ease;
}
.boma-project-single__button:hover {
    opacity: .88;
    transform: translateY(-2px);
}
@media (max-width: 767px) {
    .boma-project-single {
        padding: 45px 18px 65px;
    }
    .boma-project-single__content {
        font-size: 16px;
        line-height: 1.7;
    }
}
