/* section__V1 & section__V2 */

/* -------------
--- V1 GRID ----
------------- */
.section__v1 {
    display: inline-grid;
    margin-top: 24px;
    margin-bottom: 24px;
    width: 932px;
    max-width: 932px;
}

.section__v1 .section__slots {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 16px;
	grid-row-gap: 16px;
}

.section__v1 .section__slots .slot_1 {
	grid-area: 1 / 1 / 3 / 2;
}

.section__v1 .section__slots .slot_2 {
	grid-area: 3 / 1 / 5 / 2;
}

.section__v1 .section__slots .slot_3 {
	grid-area: 1 / 2 / 2 / 3;
}

.section__v1 .section__slots .slot_4 {
	grid-area: 2 / 2 / 3 / 3;
}

.section__v1 .section__slots .slot_5 {
	grid-area: 3 / 2 / 4 / 3;
}

.section__v1 .section__slots .slot_6 {
	grid-area: 4 / 2 / 5 / 3;
}

/* -------------
--- V2 GRID ----
------------- */

.section__v2 {
	margin: 24px 0;
	width: 1248px;
	max-width: 1248px;
}

.section__v2 .section__slots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 16px;
	grid-row-gap: 16px;
}

.section__v2 .section__slots .slot_1 {
	grid-area: 1 / 1 / 3 / 2;
}

.section__v2 .section__slots .slot_2 {
	grid-area: 1 / 2 / 2 / 3;
}

.section__v2 .section__slots .slot_3 {
	grid-area: 2 / 2 / 3 / 3;
}

.section__v2 .section__slots .slot_4 {
	grid-area: 1 / 3 / 2 / 4;
}

.section__v2 .section__slots .slot_5 {
	grid-area: 2 / 3 / 3 / 4;
}

.section__v1 .section__slots .slot.slot__small .slot__image img,
.section__v1 .section__slots .slot.slot__small .slot__image,
.section__v2 .section__slots .slot.slot__small .slot__image img,
.section__v2 .section__slots .slot.slot__small .slot__image {
	height: 250px;
	width: 300px;
	object-fit: cover;
}

.section__v1 .section__slots .slot.slot__big .slot__image img,
.section__v1 .section__slots .slot.slot__big .slot__image,
.section__v2 .section__slots .slot.slot__big .slot__image img,
.section__v2 .section__slots .slot.slot__big .slot__image {
	width: 616px;
	height: 516px;
	object-fit: cover;
}

.section__v1 .section__slots .slot.slot__small,
.section__v2 .section__slots .slot.slot__small {
	position: relative;
	width: 300px;
	max-width: 300px;
	height: 250px;
    max-height: 250px;
}

.section__v1 .section__slots .slot.slot__big,
.section__v2 .section__slots .slot.slot__big {
	position: relative;
	width: 616px;
	max-width: 616px;
}

.section__v1 .section__slots .slot.slot__small .slot__content,
.section__v2 .section__slots .slot.slot__small .slot__content {
	bottom: 0;
	left: 0;
	right: 0;
	padding-bottom: 8px;
}

.section__v1 .section__slots .slot.slot__small .slot__content .slot__superscription p,
.section__v2 .section__slots .slot.slot__small .slot__content .slot__superscription p {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    padding: 0 8px;
    max-width: 90%;
    margin: 0 16px;
    background-color: #00AFE4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section__v1 .section__slots .slot.slot__small .slot__content .slot__title p,
.section__v2 .section__slots .slot.slot__small .slot__content .slot__title p {
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	color: #000000;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	position: absolute;
	z-index: 1;
	top: 160px;
}

.section__v1 .section__slots .slot.slot__big .slot__content,
.section__v2 .section__slots .slot.slot__big .slot__content {
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}

.section__v1 .section__slots .slot.slot__big .slot__content .slot__superscription p,
.section__v2 .section__slots .slot.slot__big .slot__content .slot__superscription p {
    display: inline-block;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 8px;
    max-width: 100%;
    background-color: #00AFE4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section__v1 .section__slots .slot.slot__big .slot__superscription, 
.section__v2 .section__slots .slot.slot__big .slot__superscription {
    position: absolute;
    top: 264px;
    left: 24px;
    right: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #FFFFFF;
    z-index: 1;
}

.section__v1 .section__slots .slot.slot__big .slot__content .slot__title p,
.section__v2 .section__slots .slot.slot__big .slot__content .slot__title p {
	position: absolute;
	top: 320px;
	left: 24px;
	right: 24px;
	font-weight: 900;
	font-size: 48px;
	line-height: 56px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #FFFFFF;
	z-index: 1;
	padding-bottom: 4px;
}

.section__v1 .section__header .section__title,
.section__v2 .section__header .section__title,
.section__v3 .section__header .section__title {
	margin-left: 16px;
	margin-bottom: 8px;
}

.section__v1 .section__header .section__title a,
.section__v1 .section__header .section__title,
.section__v2 .section__header .section__title a,
.section__v2 .section__header .section__title,
.section__v3 .section__header .section__title a,
.section__v3 .section__header .section__title  {
	font-weight: 700;
	font-size: 32px;
	line-height: 34px;
	color: #000000;
	text-transform: uppercase;
}

.section__v1 .section__header .section__links a:first-child,
.section__v2 .section__header .section__links a:first-child  {
	margin-left: 16px;
}

.section__v1 .section__header .section__links,
.section__v2 .section__header .section__links {
	display: inline-flex;
    margin-bottom: 8px;
    height: 32px;
    width: auto;
    max-width: 1248px;
    flex-wrap: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
}

.section__v1 .section__header .section__links a,
.section__v2 .section__header .section__links a {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    margin-right: 24px;
    text-transform: uppercase;
    white-space: pre;
    max-width: 160px;
    text-overflow: ellipsis;
    overflow: hidden;
}

#hook_content > .section__v1:first-of-type .section__header {
	width: 932px;
	overflow: hidden;
}

.section__v1 .section__header .section__links a:hover, 
.section__v2 .section__header .section__links a:hover {
    color: #00AFE4;
}

.section__v1.section__light .section__slots .slot.slot__small .slot__content::after,
.section__v2.section__light .section__slots .slot.slot__small .slot__content::after,
.section__v1.section__dark .section__slots .slot.slot__small .slot__content::after, 
.section__v1 .section__slots .slot.slot__big .slot__content::after, 
.section__v2.section__dark .section__slots .slot.slot__small .slot__content::after, 
.section__v2 .section__slots .slot.slot__big .slot__content::after,
.section__v1.section__dark .section__slots .slot.slot__small.slot_5 .slot__content::after ,
.section__v1.section__dark .section__slots .slot.slot__small.slot_6 .slot__content::after {
	content: "";
	background: linear-gradient(180deg, rgba(196, 196, 196, 0) 31.4%, rgba(0, 0, 0, 0.6) 73.84%, #000000 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.section__v1 .section__slots .slot.slot__small .slot__content .slot__title p,
.section__v2 .section__slots .slot.slot__small .slot__content .slot__title p {
	padding: 0 16px;
	color: #FFFFFF;
}

.section__v1 .section__slots .slot.slot__small .slot__content .slot__superscription,
.section__v2 .section__slots .slot.slot__small .slot__content .slot__superscription {
    line-height: 0;
    position: absolute;
    top: 138px;
    left: 0;
    right: 0;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section__v1.section__light .section__slots .slot.slot__small .slot__content::after,
.section__v2.section__light .section__slots .slot.slot__small .slot__content::after,
.section__v2.section__dark .section__slots .slot.slot__small.slot_4 .slot__content::after ,
.section__v2.section__dark .section__slots .slot.slot__small.slot_5 .slot__content::after {
	background: #FFFFFF;
	height: 92px;
}

.section__v1.section__light .section__slots .slot.slot__small .slot__content .slot__title p,
.section__v2.section__light .section__slots .slot.slot__small .slot__content .slot__title p,
.section__v2.section__dark .section__slots .slot.slot__small.slot_4 .slot__content .slot__title p,
.section__v2.section__dark .section__slots .slot.slot__small.slot_5 .slot__content .slot__title p {
	color: #000000;
}
/* section__V1 & section__V2 */

/* grey background when img crashed */
.slot__image img::after {
    background-size: contain;
    width: 40px;
    height: 32px;
    content: "";
    background-color: #eeeeee;
    -webkit-mask-image: url(/media/icons/f03e.svg);
    mask-image: url(/media/icons/f03e.svg);
    -webkit-mask-size: 40px;
    mask-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    line-height: 40px;
    z-index: 0;
    display: block;
}

.slot__small .slot__image img::before {
	    content: "";
	    position: absolute;
	    background: #bfbfbf;
	    width: 300px;
	    height: 100%;
	    z-index: 0;
	    display: block;
}

.slot__big .slot__image img::before {
	    content: "";
	    position: absolute;
	    background: #bfbfbf;
	    width: 616px;
	    height: 100%;
	    z-index: 0;
	    display: block;
}
/* grey background when img crashed */

/* hover */
.section__v1 .section__slots .slot:hover, 
.section__v2 .section__slots .slot:hover, 
.section__v3 .section__slots > a:hover {
    filter: opacity(85%);
}
/* /hover */

/* section v4 */
.section__v4 {
    width: 300px;
    height: 432px;
    max-height: 432px;
    display: inline-grid;
    margin: 16px 0 24px 16px;
	position: absolute;	
}

.wide.article-layout .section__v4,
.page-layout .section__v4,
.tag-layout .section__v4,
.author-layout .section__v4 {
	position: relative;
    margin: -8px 0 0 0;
    height: auto;
    max-height: max-content;
}

.wide.article-layout .section__v4 .section__header {
	margin-bottom: -4px;
}

.section__v4 .section__header {
	margin-top: 4px;
}

.section__v4 .section__title {
	font-size: 20px;
    line-height: 24px;
    font-weight: 700;
	text-transform: uppercase;
}

.section__v4 .section__slots .slot_container {
    border-bottom: 1px dashed #999;
}

.section__v4 .section__slots .slot_container:last-of-type {
    border-bottom: 0;
}

.section__v4 .section__slots a {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
	margin: 8px 0;
}
/* /section v4 */

/* section__v3 */
.section__v3 {
	margin: 24px 0;
}

.section__v3 .section__slots {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 16px;
	grid-row-gap: 16px;
}

.section__v3 .section__slots > a:nth-child(1) {
	grid-area: 1 / 1 / 2 / 2;
}

.section__v3 .section__slots > a:nth-child(2) {
	grid-area: 1 / 2 / 2 / 3;
}

.section__v3 .section__slots > a:nth-child(3) {
	grid-area: 1 / 3 / 2 / 4;
}

.section__v3 .section__slots > a:nth-child(4) {
	grid-area: 1 / 4 / 2 / 5;
}

.section__v3 .section__slots .slot__image img,
.section__v3 .section__slots .slot__image {
	width: 300px;
	height: 250px;
	object-fit: cover;
}

.section__v3 .section__slots > a {
	position: relative;
}

.section__v3 .section__slots > a .slot__content {
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section__v3 .section__slots > a .slot__content .slot__superscription p {
	display: inline;
	padding: 0 8px;
	font-weight: 700;
	font-size: 14px;
	line-height: 21px;
	color: #FFFFFF;
    text-transform: uppercase;
    background-color: #00AFE4;
}

.section__v3 .section__slots > a .slot__content .slot__superscription {
    position: absolute;
    top: 141px;
    left: 0;
    right: 0;
    z-index: 1;
    margin: 0 16px;
    white-space: nowrap;
    overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
}

.section__v3 .section__slots > a .slot__content .slot__title {
    position: absolute;
    top: 168px;
    left: 0;
    right: 0;
	z-index: 1;
	background-color: #FFFFFF;
	height: 88px;
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	color: #000000;
}

.section__v3 .section__slots > a .slot__content .slot__title p {
    margin: 0 16px;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* /section__v3 */

/* section__v5 */
.section__v5 {
	background-color: #222222;
	margin: 0 -16px;
	padding: 0 16px 16px 16px;
	margin-bottom: 24px;
}

.section__v5 .section__header .section__title, 
.section__v5 .section__header .section__title a {
    font-size: 32px;
    line-height: 34px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    padding-top: 16px;
    text-transform: uppercase;
    max-width: 1248px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.section__v5 .section__slots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 16px;
	grid-row-gap: 16px;
}

.section__v5 .section__slots .slot:nth-child(1) {
	grid-area: 1 / 1 / 2 / 2; 
}

.section__v5 .section__slots .slot:nth-child(2) {
	grid-area: 1 / 2 / 2 / 3; 
}

.section__v5 .section__slots .slot:nth-child(3) {
	grid-area: 1 / 3 / 2 / 4;
}

.section__v5 .section__slots .slot:nth-child(4) {
	grid-area: 2 / 1 / 3 / 2;
}

.section__v5 .section__slots .slot:nth-child(5) {
	grid-area: 2 / 2 / 3 / 3;
}

.section__v5 .section__slots .slot:nth-child(6) {
	grid-area: 2 / 3 / 3 / 4; 
}

.section__v5 .section__slots .slot__image img,
.section__v5 .section__slots .slot__image {
	width: 405px;
	height: 338px;
	object-fit: cover;
}

.section__v5 .section__slots > a .slot__content {
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section__v5 .section__slots > a .slot__content::after {
	content: "";
	background: linear-gradient(180deg, rgba(196, 196, 196, 0) 31.4%, rgba(0, 0, 0, 0.6) 73.84%, #000000 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.section__v5 .section__slots > a .slot__content .slot__superscription p {
	display: inline;
	padding: 0 8px;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
    text-transform: uppercase;
    background-color: #00AFE4;
}

.section__v5 .section__slots > a .slot__content .slot__superscription p:empty {
    display: none;
}

.section__v5 .section__slots > a .slot__content .slot__superscription {
    position: absolute;
    top: 196px;
    left: 0;
    right: 0;
    z-index: 1;
    margin: 0 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #FFFFFF;
}

.section__v5 .section__slots > a .slot__content .slot__title {
    position: absolute;
    top: 230px;
    left: 0;
    right: 0;
    z-index: 1;
    height: 88px;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
}

.section__v5 .section__slots > a .slot__content .slot__title p {
    margin: 0 16px 16px 16px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section__v5 .section__slots > a {
	position: relative;
}

.section__v5 .section__slots > a:hover {
    filter: brightness(1.15);
}
/* /section__v5 */

/* schedule video section */
.schedule__video__container {
	position: relative;
    background-color: #222222;
    margin: 0 -16px;
	padding: 16px 16px 0 16px;
    overflow: hidden;
}

.schedule__video__container::after {
	position: absolute;
	display: block;
	content: '';
	width: 120px;
	height: 80px;
	top: 56px;
	right: 0;
	background: linear-gradient(90deg, #222222 0%, rgba(34, 34, 34, 0.15) 100%);
	transform: rotate(-180deg);
}

.schedule__video__container .schedule__header {
    display: flex;
    align-items: baseline;
    color: #FFFFFF;
	margin-bottom: 16px;
}

.schedule__video__container .schedule__header .schedule__red_dot {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #ED2125;
    border-radius: 50%;
    animation: pulse 2s infinite;
    margin-left: 4px;
}

@keyframes pulse {
	0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 8px #ED2125BF;
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 0px #ED2125;
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 8px #ED2125BF;
    }
}

.schedule__video__container .schedule__header .schedule__info {
	font-size: 32px;
	line-height: 34px;
	font-weight: 700;
	text-transform: uppercase;
	color: #00AFE4;
	margin-left: 8px;
}

.schedule__video__container .schedule__header .schedule__weekday {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-left: 8px;
    color: #FFFFFF;
    text-transform: lowercase;
}

.schedule__video__container .schedule__streams {
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    height: 84px;
}

.schedule__video__container .schedule__streams .stream__container {
    color: #FFFFFF;
    height: 56px;
    width: auto;
    min-width: 120px;
    margin-right: 24px;
    overflow: hidden;
    transition: 0.6s;
}

.schedule__video__container .schedule__streams .stream__container:hover {
    color: #00AFE4;
}

.schedule__video__container .schedule__streams .stream__container .stream_time_start {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.schedule__video__container .schedule__streams .stream__container .stream_title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.schedule__video__container .schedule__streams::-webkit-scrollbar {
	height: 8px;
}

.schedule__video__container .schedule__streams {
	scrollbar-width: thin;
	scrollbar-color: #00AFE4 #999999;
}

.schedule__video__container .schedule__streams::-webkit-scrollbar-track {
	background: #999999;
	border-radius: 16px;
}

.schedule__video__container .schedule__streams::-webkit-scrollbar-thumb {
	background-color: #00AFE4;
	border-radius: 16px;
}
/* /schedule video section */

/* Short v2 section */
.section__v2.short {
    width: 932px;
    max-width: 932px;
    display: inline-grid;
}
/* /Short v2 section */