/* Estilos personalizados para complementar Tailwind CSS */

/* Animación suave para el hover de las tarjetas */
.transition-transform {
    transition: transform 0.3s ease-in-out;
}

/* Estilos para el modo oscuro si se necesitan overrides */
.dark .dark\:bg-dark-bg {
    background-color: #1a202c;
}

.dark .dark\:bg-dark-card {
    background-color: #2d3748;
}

.dark .dark\:text-dark-text {
    color: #e2e8f0;
}


/* Blog */

.cc-blog-content {
  font-family: 'Inter', 'Source Sans 3', system-ui, -apple-system, sans-serif;
  margin: 0 auto; /* centra el bloque */
  font-size: 1.1rem;
  line-height: 1.75;
  color: #222;
  padding: 1.5rem;
}


.cc-blog-content h1,
.cc-blog-content h2,
.cc-blog-content h3,
.cc-blog-content h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.cc-blog-content h1 { font-size: 2rem; }
.cc-blog-content h2 { font-size: 1.6rem; }
.cc-blog-content h3 { font-size: 1.3rem; }


.cc-blog-content p {
  margin-bottom: 1.2rem;
}


.cc-blog-content ul,
.cc-blog-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}


.cc-blog-content a {
  color: #0066cc;
  text-decoration: none;
}

.cc-blog-content a:hover {
  text-decoration: underline;
}


.cc-blog-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}


.cc-blog-content blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1rem;
  color: #555;
  font-style: italic;
  margin: 1.5rem 0;
}


.cc-blog-content code {
  background-color: #f5f5f5;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
}

.jp-insert-iframe-video {
  width: 400px;
  height: 250px;
}
/* Fin BLog */