.content-card {
  background: rgba(32, 32, 24, 0.9);
  border-radius: 28px;
  box-shadow: 0 6px 26px #0008, 0 2px 8px #ffd70022;
  max-width: 880px;
  margin: 40px auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.content-card:hover {
  /* transform: translateY(-4px); */
  /* box-shadow: 0 10px 30px #000a; */
}
.card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 28px 32px;
  width: 100%;
  box-sizing: border-box;
}
.card-body h2 {
  font-size: 2rem;
  color: #ffe052;
  font-weight: bold;
  margin-bottom: 16px;
}
.card-body p,
.card-body ul,
.card-body li {
  font-size: 1.1rem;
  color: #ebddad;
  line-height: 1.6;
  margin: 0 0 14px 0;
}
.card-body b { color: #ffd700; }
