html, body {
    overflow-x: hidden;
}

.logo img {
    max-width: 200px;
}

/* Title1 block – limit image size only inside this section */
.title1 img {
    max-width: 290px;        /* adjust as you like (original approx 290px) */
    width: 100%;             /* responsive */
    height: auto;            /* keep proportion */
    display: block;
    margin: 0 auto;          /* center it like original */
    object-fit: contain;     /* ensures no cropping */
}


.lunbo2 img {
    display: block;
    width: 321px;
    height: 182px;
}

.tl2 {
    position: relative;
    z-index: 9999;
    /* overflow: hidden; */
    overflow: inherit;
}

.tl2 img {
    position: absolute;
    /* right: 50px; */
    /* bottom: -24px; */
    /* max-height: 100%; */
    width: 204px;
    object-fit: contain;
}

/* block container — match other sections padding */
.video-section .inner {
    width: 1200px;
    margin: 0 auto;
    padding: 0; /* REMOVE padding */
    box-sizing: border-box;
}

/* wrapper */
.video-section .lunbo2wa {
    /* width: 100%; */
    margin: 0 auto;
    position: relative;
}

/* layout: left large + right column */
.video-section .video-grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* left = 68%, right column = 30% (100 - gap) */
.video-section .video-large {
    width: 68%;
    aspect-ratio: 16/9;
    position: relative;
}

.video-section .video-right {
    width: 30%;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    justify-content: space-between;
}

/* small videos = same aspect ratio */
.video-section .video-small {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}

/* images fill entire block */
.video-section .video-large img,
.video-section .video-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* play button icon */
.video-section .videobx::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    background: url(../images/play.png) no-repeat center top;
    background-size: 70px 70px;
    pointer-events: none;
}



@media (max-width: 768px) {
    .logo img {
        max-width: 140px;
    }
}