/* ── Home: Próximos cursos ─────────────────────────────────────────────────── */

.ed-home-cursos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.ed-home-cursos__card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 0.3s, transform 0.3s;
}

.ed-home-cursos__card:hover {
    box-shadow: 0 8px 32px rgba(5,117,229,0.18);
    transform: scale(1.03);
}

.ed-home-cursos__img-wrap {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    background: #e8edf2;
    flex-shrink: 0;
    line-height: 0;
    font-size: 0;
}

.ed-home-cursos__img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Badges sobre la imagen */
.ed-home-cursos__img-wrap .ed-badge {
    position: absolute;
    top: 10px;
    z-index: 1;
}
.ed-badge--publico {
    left: 10px;
    background: #0575e5;
    color: #fff;
    max-width: calc(60% - 20px);
    white-space: normal !important;
    line-height: 1.3;
}
.ed-badge--estado {
    right: 10px;
}

.ed-home-cursos__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.ed-home-cursos__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #666666 !important;
    margin: 0;
}

.ed-home-cursos__title a {
    color: #666666 !important;
    text-decoration: none !important;
}

.ed-home-cursos__title a:hover {
    color: #0575e5 !important;
}

.ed-home-cursos__desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #888;
    margin: 0;
}

.ed-home-cursos__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ed-home-cursos__meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #13243e;
}

.ed-home-cursos__meta svg {
    flex-shrink: 0;
    color: #00202d;
    width: 14px;
    height: 14px;
}

.ed-home-cursos__btn {
    display: block;
    margin-top: 8px;
    background: #0575e5;
    color: #fff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    text-align: center;
    transition: background 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.ed-home-cursos__btn:hover {
    background: #0460c4;
    color: #fff !important;
}

/* ── Badges generales ──────────────────────────────────────────────────────── */

.ed-badge {
    display: inline-flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    padding: 5px 11px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.ed-badge--abierto  { background: #c3f0c3; color: #1c2023; }
.ed-badge--proximo  { background: #0575e5; color: #fff; }
.ed-badge--completo { background: #e0553c; color: #fff; }
.ed-badge--cerrado  { background: #424448; color: #fff; }

.ed-home-cursos__empty {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #666;
    text-align: center;
    padding: 40px 0;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .ed-home-cursos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ed-home-cursos {
        grid-template-columns: 1fr;
    }
}
