/* =====================================================
   LINCOLN TV
===================================================== */

.tv-box{
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 36px;

    align-items: center;

    margin-top: 40px;
}

/* INFO */

.tv-info{
    position: relative;
}

.tv-info small{
    display: inline-block;

    font-size: 13px;
    font-weight: 700;

    color: #004694;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 10px;
}

.tv-info h2{
    font-size: 44px;
    font-weight: 800;

    line-height: 1.1;

    color: #0a2d63;

    margin: 0 0 18px;
}

.tv-info p{
    font-size: 17px;
    line-height: 1.8;

    color: #6f7d95;

    margin: 0 0 28px;
}

/* BOTON */

.tv-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 28px;

    border-radius: 60px;

    background: linear-gradient(
        135deg,
        #004694,
        #0a2d63
    );

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all .35s ease;

    box-shadow: 0 12px 28px rgba(0,70,148,.22);
}

.tv-button:hover{
    transform: translateY(-4px);

    box-shadow: 0 18px 34px rgba(0,70,148,.30);
}

/* VIDEO */

.tv-video{
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background: #000;

    box-shadow: 0 20px 45px rgba(0,0,0,.12);

    border: 1px solid rgba(10,45,99,.08);
}

.tv-video::before{
    content: "";

    display: block;

    padding-top: 56.25%;
}

.tv-video iframe{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

/* RESPONSIVE */

@media screen and (max-width: 1100px){

    .tv-box{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tv-info{
        text-align: center;
    }

}

@media screen and (max-width: 768px){

    .tv-info h2{
        font-size: 36px;
    }

    .tv-info p{
        font-size: 16px;
    }

    .tv-video{
        border-radius: 22px;
    }

}

@media screen and (max-width: 480px){

    .tv-box{
        gap: 24px;
    }

    .tv-info h2{
        font-size: 30px;
    }

    .tv-info p{
        font-size: 15px;
        line-height: 1.7;
    }

    .tv-button{
        width: 100%;
        padding: 14px 20px;
    }

    .tv-video{
        border-radius: 18px;
    }

}