/*Video Icon*/
.post-icon-video-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
@media (min-width: 1200px) {
    /*Default*/
    .post-icon-video.post-type-icon svg {
        width: 80px;
        height: 80px;
    }
    /*Small*/
    .post-icon-video.post-type-icon--sm svg {
        width: 60px;
        height: 60px;
    }
    /*Medium*/
    .post-icon-video.post-type-icon--md svg {
        width: 100px;
        height: 100px;
    }
    /*Large*/
    .post-icon-video.post-type-icon--lg svg {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 1199px) {
    /*Default*/
    .post-icon-video.post-type-icon svg {
        width: 70px;
        height: 70px;
    }
    /*Small*/
    .post-icon-video.post-type-icon--sm svg {
        width: 60px;
        height: 60px;
    }
    /*Medium*/
    .post-icon-video.post-type-icon--md svg {
        width: 80px;
        height: 80px;
    }
    /*Large*/
    .post-icon-video.post-type-icon--lg svg {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    /*Default - Medium - Large (Not Small)*/
    .post-icon-video[class *='post-type-icon']:not(.post-type-icon--sm) svg {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 767px) {
    /*Small - Default - Medium - Large*/
    .post-icon-video[class *='post-type-icon'] svg {
        width: 60px;
        height: 60px;
    }
}