/* Estilos personalizados para los artículos */
.custom-article {
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
}

.custom-article:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.custom-article-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #b3d4fc;
  text-decoration: none;
}

.custom-article-body {
  background-color: rgba(64, 47, 46, 0.95);
  padding: 20px;
  border-radius: 0 0 5px 5px;
}

.custom-article-content {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.custom-article-bottom {
  color: #b3d4fc;
  margin-top: 10px;
}

.custom-article-bottom a {
  color: #b3d4fc;
  text-decoration: none;
}

.custom-article-bottom a:hover {
  color: #fff;
}

.custom-space-normal {
  height: 20px;
}
