/* =========================================================
   LINCOLN NEWS - VERSION EQUILIBRADA
========================================================= */

.courses{


    padding: 60px 0 50px !important;

    position: relative !important;

    overflow: hidden !important;
}

/* =========================================================
   TITULO
========================================================= */

.courses .section-heading{
    text-align: center !important;

    margin-bottom: 32px !important;

    position: relative !important;
}

.courses .section-heading h2{
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    font-size: 34px !important;

    font-weight: 800 !important;

    color: #004694 !important;

    padding: 0 14px 10px !important;

    margin: 0 auto !important;

    border-bottom: 3px solid #0d5bd7 !important;

    letter-spacing: -0.5px !important;

    line-height: 1 !important;

    background: transparent !important;

    box-shadow: none !important;
}

/* =========================================================
   OWL
========================================================= */

.courses .owl-carousel{
    padding: 0 10px !important;
}

/* =========================================================
   CARD
========================================================= */

.courses .item{
    background: #ffffff !important;

    border-radius: 18px !important;

    overflow: hidden !important;

    box-shadow:
        0 6px 22px rgba(0,0,0,0.06) !important;

    transition: all 0.25s ease !important;

    display: flex !important;

    flex-direction: column !important;

    margin: 8px !important;

    height: 540px !important;

    border: 1px solid rgba(0,70,148,0.05) !important;
}

.courses .item:hover{
    transform: translateY(-4px) !important;

    box-shadow:
        0 12px 28px rgba(0,70,148,0.12) !important;
}

/* =========================================================
   IMAGEN
========================================================= */

.courses .item img{
    width: 100% !important;

    height: 185px !important;

    object-fit: cover !important;

    display: block !important;

    transition: transform 0.30s ease !important;
}

.courses .item:hover img{
    transform: scale(1.02) !important;
}

/* =========================================================
   CONTENIDO
========================================================= */

.courses .down-content{
    padding: 18px !important;

    display: flex !important;

    flex-direction: column !important;

    flex-grow: 1 !important;

    height: calc(100% - 185px) !important;

    background: #ffffff !important;
}

/* =========================================================
   TITULO CARD
========================================================= */

.courses .down-content h4{
    font-size: 14px !important;

    line-height: 1.45 !important;

    font-weight: 800 !important;

    color: #1f1f1f !important;

    margin-bottom: 10px !important;

    text-transform: uppercase !important;

    min-height: 60px !important;

    overflow: hidden !important;

    display: -webkit-box !important;

    -webkit-line-clamp: 3 !important;

    -webkit-box-orient: vertical !important;
}

/* =========================================================
   FECHA
========================================================= */

.courses .down-content .fecha{
    font-size: 11px !important;

    color: #0d5bd7 !important;

    font-weight: 700 !important;

    margin-bottom: 12px !important;
}

/* =========================================================
   TEXTO
========================================================= */

.courses .down-content p{
    font-size: 13px !important;

    line-height: 1.7 !important;

    color: #555 !important;

    margin-bottom: 12px !important;

    overflow: hidden !important;

    display: -webkit-box !important;

    -webkit-line-clamp: 4 !important;

    -webkit-box-orient: vertical !important;
}

/* =========================================================
   LOGO AUTOR
========================================================= */

.courses .author-image{
    display: none !important;
}

/* =========================================================
   BOTON
========================================================= */

.courses .text-button-free{
    margin-top: auto !important;

    text-align: right !important;
}

.courses .text-button-free a{
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 10px 18px !important;

    border-radius: 12px !important;

    background: linear-gradient(
        135deg,
        #0d5bd7,
        #004694
    ) !important;

    color: #ffffff !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    text-decoration: none !important;

    transition: all 0.25s ease !important;

    box-shadow:
        0 5px 14px rgba(13,91,215,0.18) !important;
}

.courses .text-button-free a:hover{
    transform: translateY(-1px) !important;

    background: linear-gradient(
        135deg,
        #1b6fff,
        #004694
    ) !important;
}

/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 991px){

    .courses{
        padding: 50px 0 40px !important;
    }

    .courses .section-heading{
        margin-bottom: 24px !important;
    }

    .courses .section-heading h2{
        font-size: 28px !important;

        padding-bottom: 8px !important;
    }

    .courses .owl-carousel{
        padding: 0 5px !important;
    }

    .courses .item{
        height: auto !important;

        min-height: 470px !important;

        margin: 0 0 16px !important;
    }

    .courses .item img{
        height: 180px !important;
    }

    .courses .down-content{
        height: auto !important;

        padding: 16px !important;
    }

    .courses .down-content h4{
        min-height: auto !important;

        font-size: 13px !important;

        -webkit-line-clamp: 3 !important;
    }

    .courses .down-content p{
        font-size: 12px !important;

        -webkit-line-clamp: 4 !important;
    }

    .courses .text-button-free{
        text-align: center !important;
    }

    .courses .text-button-free a{
        width: 100% !important;
    }

}