.youtube-card-widget {
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: var(--radius-small);
    margin-bottom: var(--spacing-medium);
}
.youtube-card-widget a {
    position: relative;
    display: block;
    text-decoration: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    color: #fff;
    width: 100%;
}
.youtube-card-widget a>div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-medium);
    box-sizing: border-box;
    width: 100%;
    height: 155px;
    background: #0008;
    text-overflow: ellipsis;
    overflow: hidden;
    pointer-events: none;
}
.youtube-card-widget a>div>span {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.youtube-card-widget-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999999999999999;
    background-color: #000d;
    background-image: url("/site-assets/images/raphael_cross.svg");
    background-repeat: no-repeat;
    background-position: top right;
}
.youtube-modal-container {
    max-width: 720px;
    width: calc(100% - 2 * var(--spacing-small));
    border-radius: 8px;
    padding: var(--spacing-small);
    background: #fff;
}
.youtube-modal-container iframe {
    border: none;
    display: block;
    width: 100%;
    height: 360px;
    margin-top: var(--spacing-small);
}
.youtube-modal-container a {
    /*text-decoration: none;*/
    color: inherit;
}