.wide-photo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 46px auto;
  padding: 10px;
  max-width: 1200px;
  background: #232222e6;
  border-radius: 22px;
  box-shadow: 0 4px 18px #000c;
  overflow: hidden; /* 필요 없으면 삭제 가능 */
}

.wide-photo-box img {
  width: 100%;
  max-height: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: #222;
  box-shadow: 0 2px 9px #0006;
  transition: filter 0.14s, transform 0.15s;
}

.wide-photo-box img:hover {
  filter: brightness(1.08);
  transform: scale(1.02);
}

/* --- 카드형식 섹션 --- */
.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 0.2s ease, box-shadow 0.2s ease;
}

.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;
}
