.section-header {
    display: flex;
}

.section-header-col:first-child {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.section-header-col__title {
    margin-bottom: 4px;
}

.section-header-col__description {
    margin-top: 4px;
    color: var(--secondary-label-color);
}

.section-header-col__cover {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    /*min-height: 300px;*/
    /*max-height: 300px;*/
    height: 100%;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.section-header-col__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 320px) {
    .section-header {
        flex-flow: column nowrap;
        justify-content: flex-start;
        gap: 24px;
        margin-bottom: 20px;
    }
    .section-header-col {
        width: 100%;
    }
    .news-page .section-header-col:last-child {
        display: none;
    }
    .video-page  .section-header-col:last-child {
        display: none;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {

}

@media (min-width: 1024px) {

}

@media (min-width: 1280px) {
    .section-header {
        flex-flow: row nowrap;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 64px;
    }

    .section-header-col {
        /*min-height: 300px;*/
        width: 50%;
    }
    .news-page .section-header-col:last-child {
        display: block;
    }
    .video-page  .section-header-col:last-child {
        display: block;
    }
}

@media (min-width: 1440px) {

}

@media (min-width: 1600px) {

}




















