.videos-page-wrapper {
    padding: 130px 20px 80px;
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.videos-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 52px;
}

.videos-header h1 {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 18px;
}

.videos-header p {
    color: #4b5563;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 720px;
}

/* 2x2 Video Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto 64px auto;
}

.video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #0d0f17;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Bottom Banner */
.videos-bottom-banner {
    max-width: 1140px;
    margin: 0 auto;
    background: #f4eeff;
    border-radius: 24px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.videos-bottom-banner .banner-content {
    flex: 1;
    max-width: 580px;
}

.videos-bottom-banner h2 {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.25;
}

.videos-bottom-banner p {
    font-size: clamp(15px, 1.8vw, 17px);
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 28px;
}

.videos-bottom-banner .banner-btn {
    display: inline-block;
    background: #5f34c2;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.videos-bottom-banner .banner-btn:hover {
    background: #4e28a7;
    transform: translateY(-2px);
}

.videos-bottom-banner .banner-image-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videos-bottom-banner .banner-image-wrap img {
    max-width: 240px;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
}

@media (max-width: 860px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .videos-bottom-banner {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 24px;
    }

    .videos-bottom-banner .banner-content {
        max-width: 100%;
    }

    .videos-bottom-banner .banner-image-wrap img {
        max-width: 200px;
    }
}
