#seccion-cursos-adm-78d2 .section-title {
      font-weight: 700;
      color: #0f172a;
    }
    #seccion-cursos-adm-78d2 .explore-link {
      color: #3bc48d;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      transition: color 0.2s ease;
    }
    #seccion-cursos-adm-78d2 .explore-link:hover {
      color: #2fa173;
      text-decoration: none;
    }

    /* UX/UI: Tarjetas Dinámicas */
    #seccion-cursos-adm-78d2 .custom-card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: #ffffff;
      height: 100%;
    }
    /* Efecto de elevación y profundidad */
    #seccion-cursos-adm-78d2 .custom-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    /* Contenedor e Imagen con Efecto Zoom */
    #seccion-cursos-adm-78d2 .card-img-container {
      position: relative;
      overflow: hidden;
      padding-top: 56.25%; /* Relación de aspecto 16:9 */
    }
    #seccion-cursos-adm-78d2 .card-img-container img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    #seccion-cursos-adm-78d2 .custom-card:hover .card-img-container img {
      transform: scale(1.06);
    }

    /* Badge de Descuento */
    #seccion-cursos-adm-78d2 .badge-discount {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: #ff5a5f;
      color: white;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      z-index: 2;
    }

    /* Meta de los cursos (Módulos, Horas) */
    #seccion-cursos-adm-78d2 .course-meta {
      font-size: 0.8rem;
      color: #6c757d;
      font-weight: 500;
    }
    #seccion-cursos-adm-78d2 .course-title {
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.4;
      height: 3rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      color: #1e293b;
      margin-bottom: 8px;
    }
    #seccion-cursos-adm-78d2 .course-instructor {
      font-size: 0.85rem;
      color: #6c757d;
      margin-bottom: 20px;
    }
    #seccion-cursos-adm-78d2 .instructor-name {
      color: #475569;
      font-weight: 600;
    }

    /* Precios */
    #seccion-cursos-adm-78d2 .price-old {
      font-size: 0.85rem;
      color: #94a3b8;
      text-decoration: line-through;
      margin-bottom: 2px;
    }
    #seccion-cursos-adm-78d2 .price-current {
      font-size: 1.4rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 15px;
    }

    /* Botón de inscripción interactivo */
    #seccion-cursos-adm-78d2 .btn-enroll {
      background-color: #3bc48d;
      color: white;
      border: none;
      border-radius: 10px;
      padding: 10px 20px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: background-color 0.2s ease, transform 0.1s ease;
    }
    #seccion-cursos-adm-78d2 .btn-enroll:hover {
      background-color: #2fa173;
      color: white;
    }
    #seccion-cursos-adm-78d2 .btn-enroll:active {
      transform: scale(0.98);
    }