.reia-videos-wrap {
            padding-bottom: 80px;
        }

        .reia-videos-hero {
            margin-bottom: 34px;
        }

        .reia-videos-featured {
            position: relative;
            overflow: hidden;
            min-height: 520px;
            border-radius: 28px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 34px;
            isolation: isolate;
        }

        .reia-videos-featured::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(8, 12, 22, 0.12) 0%, rgba(8, 12, 22, 0.82) 100%);
            z-index: -1;
        }

        .reia-videos-featured-content {
            max-width: 640px;
            color: #fff;
        }

        .reia-video-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(10px);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .reia-videos-featured-title {
            color: #fff;
            font-size: clamp(28px, 4vw, 48px);
            line-height: 1.08;
            margin-bottom: 14px;
        }

        .reia-videos-featured-text {
            color: rgba(255, 255, 255, 0.86);
            max-width: 560px;
            margin-bottom: 22px;
        }

        .reia-video-play {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            border: 0;
            background: #c53531;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .reia-video-section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 26px;
        }

        .reia-video-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .reia-video-card {
            background: #fff;
            border: 1px solid rgba(18, 27, 48, 0.08);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 18px 45px rgba(18, 27, 48, 0.08);
            transition: transform .2s ease, box-shadow .2s ease;
            height: 100%;
        }

        .reia-video-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 55px rgba(18, 27, 48, 0.12);
        }

        .reia-video-link {
            color: inherit;
            text-decoration: none;
            display: block;
            height: 100%;
        }

        .reia-video-thumb {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .reia-video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .reia-video-thumb .reia-video-play {
            position: absolute;
            left: 18px;
            bottom: 18px;
            width: 52px;
            height: 52px;
            font-size: 18px;
        }

        .reia-video-body {
            padding: 22px;
        }

        .reia-video-meta {
            display: inline-block;
            margin-bottom: 10px;
            color: #c53531;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        .reia-video-title {
            font-size: 20px;
            line-height: 1.25;
            margin-bottom: 10px;
        }

        .reia-video-desc {
            color: #5d6473;
            font-size: 14px;
            margin-bottom: 0;
        }

        .reia-video-actions {
            margin-top: 28px;
            display: flex;
            justify-content: center;
        }

        .reia-video-more {
            min-width: 220px;
        }

        .reia-video-more[hidden] {
            display: none !important;
        }

        @media (max-width: 991.98px) {
            .reia-video-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .reia-videos-featured {
                min-height: 440px;
            }
        }

        @media (max-width: 767.98px) {
            .reia-video-grid {
                grid-template-columns: 1fr;
            }

            .reia-videos-featured {
                min-height: 360px;
                padding: 24px;
            }

            .reia-video-section-head {
                display: block;
            }
        }