{% require_css %}
.Card-Introductions .hero-container {
  max-width: 600px;
  width: 100%;
  height: auto;
  background: #f9f9f9;
  border-radius: 8px;
}
{% scope_css %}
.Card-Introductions .card {
  border-radius: ;
  background-color: #fff;
  padding: 40px 32px 32px 32px;
  box-shadow: none;
  height: 100%;
  box-sizing: border-box;
}
{% end_scope_css %}
.Card-Introductions .card.has-shadow {
  box-shadow:
    rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
    rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.Card-Introductions .intro-text {
  font-size: 16px;
  margin-bottom: 0px;
}

.Card-Introductions .hero-title {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: bold;
}

.Card-Introductions .hero-subtitle {
  font-size: 16px;
  margin-bottom: 0px;
}

.wp-display-text-CI {
    font-size: 13px;
    color: #c7c7c7;
    margin: 0;
    min-width: 120px; /* ← garantiza espacio mínimo para el texto */
}

@media (max-width: 600px) {
  .Card-Introductions .hero-title {
    font-size: 21px;
  }
  .Card-Introductions .card {
  padding: 36px 24px;
  }
  .wp-display-text-CI {
    display: none;
  }
}
{% end_require_css %}