/*
=========================================================
TIMESNEWSPLUS VIDEO CENTRE
=========================================================
*/

.tnp-video-section {

    width: 100%;
    max-width: 1100px;

    margin: 100px auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}


/* =====================================================
VIDEO LEFT CONTENT
===================================================== */

.tnp-video-left {

    width: 100%;

}


.tnp-video-left .tnp-section-tag {

    display: inline-flex;

    align-items: center;

    padding: 7px 14px;

    background: #eef4ff;

    color: #0d47a1;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

}


.tnp-video-left h2 {

    margin: 20px 0;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 800;

    color: #111;

    letter-spacing: -1px;

}


.tnp-video-left p {

    margin: 0;

    color: #666;

    font-size: 16px;

    line-height: 1.8;

    max-width: 600px;

}


/* =====================================================
VIDEO BUTTON
===================================================== */

.tnp-video-left .tnp-video-coming {

    margin-top: 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border: none;

    border-radius: 12px;

    background: #d60000;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;

}


.tnp-video-left .tnp-video-coming:hover {

    background: #0d47a1;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);

}


/* =====================================================
VIDEO RIGHT
===================================================== */

.tnp-video-right {

    width: 100%;

}


.tnp-video-placeholder {

    position: relative;

    width: 100%;

    height: 320px;

    border-radius: 18px;

    background:

        linear-gradient(
            135deg,
            #eef3fb,
            #e6edf9
        );

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 90px;

    color: #0d47a1;

    box-shadow:
        0 15px 40px rgba(13,44,108,.10);

    overflow: hidden;

}


/* Decorative circle */

.tnp-video-placeholder::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    right: -80px;

    top: -90px;

    background: rgba(13,71,161,.08);

    border-radius: 50%;

}


/* Play icon */

.tnp-video-placeholder {

    font-weight: 700;

}


/* =====================================================
TABLET
===================================================== */

@media (max-width: 991px) {

    .tnp-video-section {

        width: 94%;

        grid-template-columns: 1fr;

        gap: 40px;

        margin: 70px auto;

    }


    .tnp-video-left {

        text-align: center;

    }


    .tnp-video-left p {

        margin-left: auto;

        margin-right: auto;

    }


    .tnp-video-right {

        max-width: 700px;

        margin: 0 auto;

    }

}


/* =====================================================
MOBILE
===================================================== */

@media (max-width: 768px) {

    .tnp-video-section {

        width: 94%;

        margin: 60px auto;

        gap: 35px;

    }


    .tnp-video-left h2 {

        font-size: 32px;

    }


    .tnp-video-left p {

        font-size: 15px;

        line-height: 1.7;

    }


    .tnp-video-placeholder {

        height: 250px;

        border-radius: 16px;

        font-size: 70px;

    }

}


/* =====================================================
SMALL PHONES
===================================================== */

@media (max-width: 480px) {

    .tnp-video-section {

        width: 90%;

        margin: 50px auto;

    }


    .tnp-video-left h2 {

        font-size: 28px;

    }


    .tnp-video-placeholder {

        height: 210px;

        font-size: 60px;

    }


    .tnp-video-left .tnp-video-coming {

        width: 100%;

    }

}