/* Default Youtube */ 
.default-youtube-comp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--comp);
    fill: var(--text);
    width: 100%;
    border-radius: var(--comp-radius);
    gap: 6px;
    text-align: var(--align);
}

.default-youtube-comp iframe{
    border-radius: var(--comp-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.default-youtube-comp-text-con{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 2px;
    flex: 1;
    padding: 8px;
    width: 100%;
}

.ltr .default-youtube-comp-text-con{
    margin-top: 3px;
    gap: 8px;
    padding-top: 0;
}

.default-youtube-comp-text{
    font-size: 1.15rem;
    font-weight: 600;
    display: -webkit-box; 
    line-height: 1.35;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden; 
    text-overflow: ellipsis; 
    max-height: 54px;
}

.default-youtube-comp-des{
    color: var(--st);
    font-size: 0.8rem;
    font-weight: 600;
    display: -webkit-box; 
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden; 
    text-overflow: ellipsis; 
    max-height: 55px;
}

