.y-shorts-videos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.y-short-video-item {
    position: relative;
    width: calc(33.333% - 20px);
    padding-bottom: var(--aspect-ratio-padding); /* Dynamic Aspect Ratio */
    overflow: hidden;
}

.y-short-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
    box-sizing: border-box;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
}

.y-short-video-info {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
}

.y-short-video-info h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
}

.y-short-video-info p {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.4;
}

.y-short-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
