/* --------------------------------------------|
|                                              |
| VIDEO list item                              |
|                                              |
|-------------------------------------------- */

.block--video {
    display: grid;
    grid-template-columns: 285px auto;
    grid-template-rows: auto 1fr;
    grid-auto-flow: row;
    grid-template-areas:
        "Video Headline"
        "Video Text";
}

@media (max-width: 1200px) {
    .block--video {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 1fr auto auto;
        grid-auto-flow: row;
        grid-template-areas:
            "Video"
            "Headline"
            "Text";
    }
}

.block--video::before,
.block--video::after {
    display: none !important;
}

/* --------------------------------------------|
| Video                                        |
|-------------------------------------------- */

.block--video .avia-video {
    grid-area: Video;
}

.avia-iframe-wrap,
.avia-video {
    margin-bottom: 0;
}

/* --------------------------------------------|
| Category (= headline element)                |
|-------------------------------------------- */

.block--video .av-special-heading {
    grid-area: Headline;
    padding: 0 !important;
    padding-left: 20px !important;
    margin-top: 20px;
}

.block--video .special-heading-border {
    display: none !important;
}

/* --------------------------------------------|
| Full text                                    |
|-------------------------------------------- */

.block--video .avia_textblock {
    grid-area: Text;
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
    padding: 15px 20px 0 20px;
    line-height: 1.3;
    font-family: "officina-sans", Helvetica, Arial, sans-serif !important;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 440px) {

    .block--video .avia_textblock {
        -webkit-box-orient:unset;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

}

/* --------------------------------------------|
| Icon                                         |
|-------------------------------------------- */

.av-click-to-play-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avia_playpause_icon {
    position: static;
    width: 96px;
    height: 66px;
    margin: 0 !important;
    background: none;
    border-radius: unset;
    top: unset;
    left: unset;
    z-index: 50;
    transform: scale(0.7);
}

.avia_playpause_icon {
    background-image: url("../img/play.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.avia_playpause_icon:before {
    content: "" !important;
}
