.photo__doc {
    max-width: 330px;
}

.photo__doc img {
    max-width: 100%;
    float: left;
    border: 1px solid #fff;
    box-shadow: 0 0 0 3px rgb(79 45 92 / 20%);
    margin: 0 30px 15px 0;
    height: 420px;
    object-fit: cover;
}

.article__video{
    float:left;
    border: 1px solid #fff;
    box-shadow: 0 0 0 3px rgb(79 45 92 / 20%);
   margin: 0 30px 15px 0;
    max-width: 300px;
    }
.article__video video{
    width:100%;
    height:100%;
    object-fit: cover;
    display: block;
    }



article ul li, article ol ul li {
    padding: 0 0 0 15px;
    margin: 0;
    list-style: none;
    position: relative;
}

article ul li::before, article ol ul li::before {
    content: "";
    width: 7px;
    height: 1px;
    background: #4f2d5c;
    position: absolute;
    left: 0;
    border-radius: 100%;
    top: 13px;
}

article ol {
    list-style-type: none;
    counter-reset: num;
    overflow: inherit;
}

article ol li {
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 10px 30px;
    overflow: hidden;
}

article ol li:before {
    content: counter(num) '.';
    counter-increment: num;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 20px;
    text-align: right;
    font-weight: 700;
    font-size: 110%
}

article ol ul {
    margin-top: 0
}

article ol ul li {
    padding-bottom: 0
}

@media(max-width:1229px){
	.article__video {margin: 0 25px 15px 0; max-width: 280px}
	.photo__doc {max-width: 290px;}
	.photo__doc img {margin: 0 25px 15px 0;height: 375px;}
}
@media(max-width:991px){
	.article__video {margin: 0 20px 15px 0; max-width: 220px}
	.photo__doc {max-width: 250px;}
	.photo__doc img {margin: 0 20px 15px 0;height: 350px;}
}
@media(max-width:767px){
	.article__video {margin: 10px 15px 10px 0;max-width: 180px}
	.photo__doc {max-width: 220px;}
	.photo__doc img {margin: 10px 15px 15px 0;height: 270px;}
}
@media(max-width:575px){
	.photo__doc {max-width: 100%; width:100%}
	.photo__doc img {margin: 10px 0;height: auto;}
}
@media(max-width:350px){
	.article__video {margin: 0 0 10px 0;max-width: 100%}
}