.html-post .e-rejilla-funciones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.html-post .e-tarjeta-funcion {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px;
}
.html-post .e-tarjeta-funcion strong {
  display: block;
  font-size: 1.1em;
  margin-bottom: 8px;
  color: #111;
}
.html-post .e-tarjeta-funcion p {
  font-size: .95em;
  line-height: 1.4;
  margin: 0;
}
.html-post .e-caja-destacada {
  background: linear-gradient(135deg, #f0f4f8, #e6f0fa);
  border-left: 4px solid #0056b3;
  border-radius: 4px;
  padding: 20px;
  margin: 28px 0;
}
.html-post .e-caja-destacada strong {
  display: block;
  font-size: 1.15em;
  margin-bottom: 6px;
  color: #0056b3;
}
.html-post .e-caja-destacada p {
  margin: 0;
  line-height: 1.5;
}
.html-post .e-llamada-accion {
  background-color: #111;
  color: #fff;
  border-radius: 8px;
  padding: 24px;
  margin-top: 36px;
  text-align: center;
}
.html-post .e-llamada-accion h3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.4em;
}
.html-post .e-llamada-accion p {
  color: #e0e0e0;
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 16px;
}
.html-post .e-llamada-accion a {
  display: inline-block;
  background-color: #fff;
  color: #111;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color .2s;
}
.html-post .e-llamada-accion a:hover {
  background-color: #e0e0e0;
}
@media (max-width: 480px) {
.html-post .e-rejilla-funciones {
  grid-template-columns: 1fr;
  gap: 12px;
}
.html-post .e-llamada-accion {
  padding: 16px;
}
.html-post .e-llamada-accion a {
  display: block;
  width: auto;
}
}