.shorts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.video-container {
    flex: 1 1 300px;
    max-width: 500px;
    aspect-ratio: 9 / 16;
    position: relative;
    width: 100%;
}

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

/* Optional: stack on small screens */
@media (max-width: 768px) {
    .shorts-grid {
        flex-direction: column;
        align-items: center;
    }
}

#message-text {
    height: 10rem;
}