.video-post {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 20px;
    box-sizing: border-box;
}

.video-post h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.video-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000; /* Fallback background for loading */
}

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

@media (max-width: 768px) {
    .video-post {
        padding: 10px;
    }

    .video-post h2 {
        font-size: 20px;
    }

    .video-description {
        font-size: 14px;
    }
}