/* Container holding the video */
.topsingleimg {
    position: relative;
    height: 100vh; /* You can change to 600px if not full screen needed */
    overflow: hidden;
}

/* The video element itself */
.topsingleimg video {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Optional dark overlay for better text visibility */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity if needed */
    z-index: 0;
}

/* Text content overlay */
.inner-desc {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

/* Optional responsive font styling */
.inner-desc h1.single-post-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.inner-desc .post-subtitle {
    font-size: 1.25rem;
}

.video-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

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