.media .flex {
    margin-bottom: -85px;
    margin-left: calc(var(--media_offset) * -1);
    --media_count: 2;
    --media_offset: 45px;
	display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.media {
	padding-bottom: 40px;
}
.media .flex > a {
    color: #000;
    font-size: 15px;
    line-height: 26px;
    display: flex;
    text-decoration: none;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
	width: calc((100% / var(--media_count)) - var(--media_offset));
    margin-bottom: 85px;
    margin-left: var(--media_offset)
}
.media .flex > a .thumb {
    position: relative;
    width: 42.75%;
    padding-bottom: 34.5%;
    background: #eee;
}
.media .flex > a .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.media .flex > a .thumb + .info {
    width: calc(57.25% - 25px);
    align-self: center;
}
.media .flex > a .name {
    font-size: 17px;
    font-weight: 900;
    line-height: 24px;
    transition: color .2s linear;
}
.media .flex > a .desc {
    font-size: 16px;
    line-height: 24px;
    width: 330px;
    max-width: 100%;
    padding-left: 20px;
    border-left: 5px solid #eb3333;
}
.media .flex > a .desc p {
	margin: 0;
    font-size: 16px;
    line-height: 24px;
	padding: 0;
}
.media .flex > a .thumb + .info > * + * {
    margin-top: 20px;
}
.media .flex > a:hover .source,
.media .flex > a:hover .name {
    color: #eb3333;
}
.media .flex > a .data {
    font-size: 13px;
    line-height: 15px;
    color: #666666;
}
@media screen and (max-width: 1023px) {
    .media .flex > a .desc p {
        font-size: 12px;
        line-height: 18px;
    }
    .media .flex > a .name {
        font-size: 14px;
        line-height: 20px;
    }
}
@media screen and (max-width: 767px) {
    .media .flex {
        margin-bottom: -30px;
        --media_count: 1;
        --media_offset: 20px;
    }
    .media .flex > a {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 479px) {
    .media .flex > a .thumb {
        width: 100%;
        padding-bottom: 50%;
    }
    .media .flex > a .thumb + .info {
        width: 100%;
        margin-top: 15px;
    }
}