
.prop {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.prop__name {
    display: inline-block;
    font-weight: bold;
}
.prop__value {
    display: inline-block;
    margin-left: 20px;
}
@media screen and (max-width: 1240px) {
    .prop {
        font-size: 16px;
    }
}




.outpost-detail {
    display: flex;
    flex-wrap: wrap;
}

.outpost-detail__gallery {
    width: 50%;
    padding: 20px;
    max-width: 550px;
}

.outpost-detail__desc {
    width: 50%;
    padding: 20px;
}



@media screen and (max-width: 768px) {
    .outpost-detail {
        justify-content: center;
    }
    .outpost-detail__gallery {
        width: 100%;
        padding: 5px;
        margin-bottom: 30px;
    }

    .outpost-detail__desc {
        width: 100%;
        padding: 4px;
    }
}