.container-detail {
  width: 90%;
  max-width: 1100px;
  margin: 30px auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 100vh; /* ini yang penting */
}

.container-detail img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  display: block;
}

h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.content {
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

a.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #435ebe;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

a.back-link:hover {
  color: #2a43a5;
}
