.qri-video-banner {
    background: #094D69;
    padding: 25px;
    margin: 20px 0;
}

.qri-banner-header {
    text-align: center;
    margin-bottom: 25px;
}

.qri-banner-header h2 {
    margin: 0 0 10px;
    font-size: 34px;
    color: #ffffff;
    line-height: 1.2;
}

.qri-banner-header p {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.qri-video-grid {
    display: flex;
    gap: 20px;
}

.qri-video-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;

    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;

    border: 1px solid #ff4500;

    box-shadow: 0 6px 20px rgba(0,0,0,0.08);

    transition: .25s;
}

.qri-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.qri-video-thumb {
    position: relative;
    width: 220px;
    min-width: 220px;
}

.qri-video-thumb img {
    width: 100%;
    display: block;
}

.qri-play-button {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 68px;
    height: 48px;

    background: rgba(255,0,0,.90);

    border-radius: 12px;

    transform: translate(-50%, -50%);
}

.qri-play-button:after {
    content: "";
    position: absolute;
    left: 28px;
    top: 14px;

    width: 0;
    height: 0;

    border-left: 16px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.qri-video-content {
    padding-right: 18px;
}

.qri-video-content h3 {
    margin: 0 0 8px;
    color: #11466d;
    font-size: 20px;
}

.qri-video-content p {
    margin: 0;
    color: #5b6f7c;
    line-height: 1.45;
    font-size: 15px;
}

@media (max-width: 900px) {

    .qri-video-grid {
        flex-direction: column;
    }

    .qri-banner-header h2 {
        font-size: 28px;
    }

    .qri-video-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding-bottom: 20px;
    }

    .qri-video-thumb {
        width: 100%;
        min-width: auto;
        max-width: 280px;
        margin: 0 auto;
    }

    .qri-video-content {
        padding: 0 15px;
    }

    .qri-video-content h3 {
        margin-top: 5px;
    }
}