/* ─────────────────────────────────────────────
   Moodle Courses Carousel – v1.1
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');

.moodle-courses-carousel {
    margin-bottom: 30px;
    position: relative;
}

/* Card */
.moodle-carousel-item {
    text-align: center;
    padding: 0;
    border: 1px solid #eee;
    background-color: #fff;
    margin: 5px;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.moodle-carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Imagen */
.moodle-carousel-img-wrap {
    width: 100%;
    overflow: hidden;
}

.moodle-carousel-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.moodle-carousel-item:hover .moodle-carousel-img-wrap img {
    transform: scale(1.03);
}

/* Botones */
.moodle-carousel-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px 16px;
}

.moodle-btn {
    display: block;
    width: 100%;
    padding: 9px 14px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none !important;
    line-height: 1.3;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box;
    cursor: pointer;
}

/* Botón principal – va al curso en Moodle */
.moodle-btn--primary {
    background-color: #484282;
    color: #fff !important;
    border: 2px solid #484282;
}

.moodle-btn--primary:hover {
    background-color: #363168;
    border-color: #363168;
    color: #fff !important;
}

/* Botón secundario – más información (post WP) */
.moodle-btn--secondary {
    background-color: transparent;
    color: #484282 !important;
    border: 2px solid #484282;
}

.moodle-btn--secondary:hover {
    background-color: #484282;
    color: #fff !important;
}

/* Flechas Owl Carousel */
.moodle-courses-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45) !important;
    color: #fff !important;
    font-size: 1.8em !important;
    padding: 0 11px !important;
    line-height: 1 !important;
    border-radius: 3px !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.moodle-courses-carousel .owl-nav button:hover { opacity: 1; }
.moodle-courses-carousel .owl-nav .owl-prev   { left: -20px; }
.moodle-courses-carousel .owl-nav .owl-next   { right: -20px; }

/* Dots */
.moodle-courses-carousel .owl-dots {
    text-align: center;
    margin-top: 18px;
}

.moodle-courses-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    border-radius: 30px;
    transition: background 0.2s ease;
}

.moodle-courses-carousel .owl-dots .owl-dot.active span,
.moodle-courses-carousel .owl-dots .owl-dot:hover span {
    background: #0073aa;
}

/* Mensajes de error / sin cursos */
.moodle-carousel-error,
.moodle-carousel-no-courses {
    text-align: center;
    padding: 20px;
    border: 1px solid #ffba00;
    background-color: #fff3cd;
    color: #856404;
    border-radius: 4px;
    margin: 20px 0;
}
