.elementor-33851 .elementor-element.elementor-element-48c036e{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-67fb072 *//* === DASHBOARD MODERNO RESPONSIVE EXTRAORDINARIOS === */

/* Reestructura el grid principal */
.tutor-dashboard-content-inner .tutor-row {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
  justify-items: center;
}

/* Anula los contenedores internos de Tutor LMS */
.tutor-dashboard-content-inner [class*="tutor-col"],
.tutor-dashboard-content-inner [class*="tutor-flex"] {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  height: auto !important;
  flex: none !important;
}

/* Tarjetas modernas */
.tutor-dashboard-content-inner .tutor-card,
.tutor-dashboard-content-inner .tutor-dashboard-card {
  background: linear-gradient(180deg, #ffffff, #f9f7fb);
  border: 1px solid #e6dff0;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(184, 141, 187, 0.08);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 260px;
  height: 170px;
}

/* Hover elegante */
.tutor-dashboard-content-inner .tutor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(184, 141, 187, 0.25);
  background: linear-gradient(145deg, #f6f1f9, #ffffff);
  border-color: #d9c4e6;
}

/* Íconos circulares */
.tutor-dashboard-content-inner .tutor-card .tutor-icon,
.tutor-dashboard-content-inner .tutor-card svg {
  font-size: 34px;
  color: #b88dbb !important;
  background: rgba(184, 141, 187, 0.12);
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

/* Hover de ícono */
.tutor-dashboard-content-inner .tutor-card:hover .tutor-icon {
  background: #b88dbb;
  color: #fff !important;
  transform: scale(1.1);
}

/* Título principal de la tarjeta */
.tutor-dashboard-content-inner .tutor-card h4,
.tutor-dashboard-content-inner .tutor-card .tutor-fs-3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e1f39;
  margin: 5px 0;
}

/* Texto secundario */
.tutor-dashboard-content-inner .tutor-card span,
.tutor-dashboard-content-inner .tutor-card p {
  font-size: 0.95rem;
  color: #7b6a8f !important;
  margin: 0;
}

/* Animación de entrada */
.tutor-dashboard-content-inner .tutor-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}
.tutor-dashboard-content-inner .tutor-card:nth-child(2) { animation-delay: 0.1s; }
.tutor-dashboard-content-inner .tutor-card:nth-child(3) { animation-delay: 0.2s; }
.tutor-dashboard-content-inner .tutor-card:nth-child(4) { animation-delay: 0.3s; }
.tutor-dashboard-content-inner .tutor-card:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */

/* Tablets */
@media (max-width: 1024px) {
  .tutor-dashboard-content-inner .tutor-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .tutor-dashboard-content-inner .tutor-card {
    max-width: 100%;
    height: 160px;
  }
}

/* Móviles grandes */
@media (max-width: 768px) {
  .tutor-dashboard-content-inner .tutor-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .tutor-dashboard-content-inner .tutor-card {
    height: 150px;
    padding: 25px;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .tutor-dashboard-content-inner .tutor-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .tutor-dashboard-content-inner .tutor-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 25px 20px;
  }
  .tutor-dashboard-content-inner .tutor-card .tutor-icon {
    width: 55px;
    height: 55px;
    font-size: 28px;
    margin-bottom: 8px;
  }
}

/* === Espaciado entre las tarjetas y la sección "Cursos en curso" === */
.tutor-dashboard-content-inner {
  margin-bottom: 60px !important;
}

.tutor-dashboard-content-inner .tutor-row {
  margin-bottom: 40px !important;
}

/* Opcional: mejora el título "Cursos En Curso" */
.tutor-dashboard-content-inner + h4,
.tutor-dashboard-content-inner + h3 {
  margin-top: 20px !important;
  padding-top: 10px;
  border-top: 1px solid #f0e8f5;
}/* End custom CSS */