.elementor-219081 .elementor-element.elementor-element-bae0be9{--display:flex;--min-height:45vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:space-evenly;--overlay-opacity:0.5;--margin-top:-152px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--z-index:1;}.elementor-219081 .elementor-element.elementor-element-bae0be9::before, .elementor-219081 .elementor-element.elementor-element-bae0be9 > .elementor-background-video-container::before, .elementor-219081 .elementor-element.elementor-element-bae0be9 > .e-con-inner > .elementor-background-video-container::before, .elementor-219081 .elementor-element.elementor-element-bae0be9 > .elementor-background-slideshow::before, .elementor-219081 .elementor-element.elementor-element-bae0be9 > .e-con-inner > .elementor-background-slideshow::before, .elementor-219081 .elementor-element.elementor-element-bae0be9 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:#000000;--background-overlay:'';}.elementor-219081 .elementor-element.elementor-element-45f0cc4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-219081 .elementor-element.elementor-element-a0d8075 .elementor-author-box__avatar img{width:131px;height:131px;border-radius:58px;}body.rtl .elementor-219081 .elementor-element.elementor-element-a0d8075.elementor-author-box--layout-image-left .elementor-author-box__avatar,
					 body:not(.rtl) .elementor-219081 .elementor-element.elementor-element-a0d8075:not(.elementor-author-box--layout-image-above) .elementor-author-box__avatar{margin-right:27px;margin-left:0;}body:not(.rtl) .elementor-219081 .elementor-element.elementor-element-a0d8075.elementor-author-box--layout-image-right .elementor-author-box__avatar,
					 body.rtl .elementor-219081 .elementor-element.elementor-element-a0d8075:not(.elementor-author-box--layout-image-above) .elementor-author-box__avatar{margin-left:27px;margin-right:0;}.elementor-219081 .elementor-element.elementor-element-a0d8075.elementor-author-box--layout-image-above .elementor-author-box__avatar{margin-bottom:27px;}.elementor-219081 .elementor-element.elementor-element-a0d8075 .elementor-author-box__name{font-family:"Inter", Sans-serif;font-weight:700;text-transform:uppercase;}.elementor-219081 .elementor-element.elementor-element-35fb7cc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:1024px){.elementor-219081 .elementor-element.elementor-element-bae0be9{--min-height:75vh;}}@media(max-width:767px){.elementor-219081 .elementor-element.elementor-element-bae0be9{--min-height:60vh;}.elementor-219081 .elementor-element.elementor-element-a0d8075 .elementor-author-box__name{font-size:28px;}}/* Start custom CSS for html, class: .elementor-element-e082ea0 *//* Contenedor principal forzado a 2 columnas */
.mis-cursos-grid .course-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important; /* Dos columnas por fila */
    gap: 25px;
    align-items: stretch;
}

/* Estilo de la tarjeta del curso */
.mis-cursos-grid article.course {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Estira la tarjeta al alto máximo de la fila */
    transition: transform 0.3s ease;
}

/* Ajuste de imagen fija para que todas midan lo mismo */
.mis-cursos-grid .course-image {
    width: 100%;
    height: 220px; /* Un poco más alta ya que las columnas son más anchas */
    overflow: hidden;
}

.mis-cursos-grid .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Título centrado que rellena el espacio sobrante */
.mis-cursos-grid article.course h2, 
.mis-cursos-grid article.course h3 {
    padding: 20px 15px !important;
    margin: 0 !important;
    font-size: 1.2rem !important;
    flex-grow: 1; /* Empuja el contenido para igualar alturas */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

/* Ocultar descripciones y datos extra */
.mis-cursos-grid .course-excerpt,
.mis-cursos-grid .entry-content,
.mis-cursos-grid .course-meta,
.mis-cursos-grid p,
.mis-cursos-grid .ins-course-meta {
    display: none !important;
}

/* En móviles pasar a 1 columna para que no se vea amontonado */
@media (max-width: 600px) {
    .mis-cursos-grid .course-container {
        grid-template-columns: 1fr !important;
    }
}



/* Estilos aplicados SOLO a los enlaces (títulos) dentro de la sección de cursos */
.mis-cursos-grid article.course h2 a, 
.mis-cursos-grid article.course h3 a,
.mis-cursos-grid article.course a {
    background-color: transparent !important;
    color: #000000 !important;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-style: oblique !important;
    text-transform: uppercase !important;
    font-size: 22px !important;
    display: block; /* Para que el área de clic sea mejor */
    transition: color 0.3s ease;
}

/* Opcional: Cambiar el color cuando pasan el mouse (Hover) */
.mis-cursos-grid article.course a:hover {
    color: #555555 !important; /* Un gris oscuro para que se note la interacción */
}/* End custom CSS */