.noticia-container {
  max-width: 950px;
  margin: 40px auto;
  padding: 0 20px;
}
.noticia-header {
  margin-bottom: 30px;
}
.noticia-cover-wrapper {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
}
.noticia-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.noticia-meta-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 15px;
}
.noticia-meta-detail span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.noticia-contenido {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
  text-align: justify;
}
.noticia-contenido p {
  margin-bottom: 20px;
}
.btn-volver {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary, #001f3f);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}
.btn-volver:hover {
  transform: translateX(-5px);
  color: var(--accent, #e91b23);
}
.compartir-box {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 15px 0;
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
