
 /* YouTube Module */

#ytv-lateral {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(1fr, 1fr));
    gap: 30px;
    align-items: stretch;
}

.ytv-lateral-esq .ytv, 
.ytv-lateral-dir .ytv {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ytv-lateral-esq .ytv {
    height: 100%;
}

.ytv-lateral-dir .ytv {
    height: 90px;
}

.ytv-lateral-esq .ytv-item-wrapper,
.ytv-lateral-dir .ytv-item-wrapper {
    width: 100%;
    display: grid;
    height: 100%;
}

.ytv-lateral-esq .ytv-item-wrapper {
    grid-template-rows: 1fr auto;
}

.ytv-lateral-dir .ytv-item-wrapper {
    grid-template-columns: 90px 1fr;
    height: 90px;
}

.ytv-item-img img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    filter: opacity(70%);
}



.ytv-lateral-esq .ytv-caption,
.ytv-lateral-dir .ytv-caption {
    padding: 20px;
    background: #f1f1f1
}

.ytv-lateral-dir {
    display: grid;
    gap: 5px;
    align-items: stretch;
}

.ytv-lateral-dir .ytv-caption {
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
    height: 100%;
    align-items: stretch;
    justify-content: center;
    padding: 5px 20px;
}

.adsi-ytv-date {
    font-size: 0.9em;
}

.ytv-caption h3 {
    margin: 0;
}
.ytv-caption h3 a {
    line-height: 1.5em;
}

#ytv-error {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.ytv-item-img {
    position: relative;
}

.ytv-item-img::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    content: "\f04b";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-sizing: border-box;
    color: #fff;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    background: rgba(0,0,0,0.5);
}