
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Nunito+Sans:wght@400;600;700&display=swap');

:root {
    --blue: #406CD2;
    --purple: #D0C6F0;
    --red: #ef1010;
    --orange: #4c2101;
    --yellow: #F7B742;
    --green: #027654;
    --white: #fff;
    --gray: #595959;
    --gray-dark: #434343;
    --primary: #002db3;
    --primary-color-500: #3357c2;
    --primary-color-600: #002db3;
}

.eb_course_cards_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.wdm-col-3-2-1.hentry {
    width: calc(33.33% - 20px);
    max-width: 350px;
    margin: 0;
    font-family: 'Nunito Sans', 'Nunito Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    color: #212121;
}

.eb-grid-container {
    width: 100%;
    height: 100%;
}

.wdm-course-grid {
    background-color: var(--white);
    border: 1px solid #2658AF;
    border-radius: 8px;
    box-shadow: 1px 2px 8px 1px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden; /* Añadido overflow hidden aquí */
}

.wdm-course-image {
    height: 200px;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    position: relative; /* Importante para el overlay */
}

.wdm-course-image:before { /* Añadimos el overlay */
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(29 29 27 / .26), rgb(255 255 255 / .16)), 
                linear-gradient(45deg, rgb(0 153 204 / .2), #01082c);
    top: 0;
    left: 0;
    z-index: 1; /* Asegura que el overlay esté por encima de la imagen */
}

.wdm-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
    position: relative;
}

.wdm-caption {
    padding: 1.5rem; /* Aumentado el padding */
    font-family: 'Nunito Sans', sans-serif;
}

.eb-cat-wrapper-new {
    color: #009ACC !important;
    font-size: 16px !important;
    font-weight: 600 !important;
 
}

.eb-course-card-title {
    color: #273683 !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

.eb_short_desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px !important; 
    color: var(--gray-dark);
    line-height: 1.6;
    font-weight: 700; /* Más bold */
}

.wdm-price {
    display: none !important;
	
}



@media (max-width: 992px) {
    .wdm-col-3-2-1.hentry {
        width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .wdm-col-3-2-1.hentry {
        width: 100%;
        margin: 0 0 20px 0;
    }
}