/* EVENT DETAIL */
.ev-hero-img {
  margin-top: 56px; width: 100%; height: 280px;
  background: linear-gradient(135deg, #2a4a1a 0%, #3a5a2a 40%, #4a6a3a 70%, #3a5a4a 100%);
  overflow: hidden; position: relative;
}

.page-body { background: var(--gray-bg); padding: 40px; }
.page-body-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }

/* LEFT */
.event-title-block { background: #fff; border-radius: 8px; padding: 28px 28px 24px; margin-bottom: 24px; border: 1px solid var(--gray-border); }
.event-title { font-size: 22px; font-weight: 700; margin-bottom: 14px; line-height: 1.4; }
.event-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 3px; color: #fff; }
.badge-orange { background: #e07020; }
.badge-green { background: #1a8a1a; }

.content-card { background: #fff; border: 1px solid var(--gray-border); border-radius: 8px; padding: 24px 28px; margin-bottom: 24px; }
.content-card h2 { font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-border); }
.ev-content { font-size: 13px; color: #444; line-height: 1.9; }
.ev-content p { margin-bottom: 10px; }
.ev-content ul, .ev-content ol { padding-left: 20px; margin-bottom: 10px; }
.ev-content li { margin-bottom: 4px; }
.ev-back { margin-top: 8px; }

/* RIGHT SIDEBAR */
.right-col {}
.ev-info-box { background: #fff; border: 1px solid var(--gray-border); border-radius: 8px; padding: 20px 24px; }
.ev-info-box h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-border); }
.ev-info-row { display: flex; gap: 10px; margin-bottom: 10px; font-size: 12px; }
.ev-info-label { font-weight: 700; color: var(--gray-text); min-width: 70px; flex-shrink: 0; }
.ev-info-val { color: var(--dark); line-height: 1.6; }
.dl-btn-sm { display: inline-flex; align-items: center; gap: 4px; background: var(--red); color: #fff; padding: 5px 12px; border-radius: 3px; font-size: 11px; font-weight: 700; }
.dl-btn-sm:hover { background: var(--red-dark); }

/* CLASSES (出陳区分) */
.ev-classes-section { background: #fff; border: 1px solid var(--gray-border); border-radius: 8px; padding: 24px 28px; margin-bottom: 24px; }
.ev-section-title { font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-border); }
.ev-classes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.ev-class-card { background: var(--gray-bg); border: 1px solid var(--gray-border); border-radius: 6px; padding: 14px 16px; }
.ev-class-name { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ev-class-age { font-size: 11px; color: var(--gray-text); line-height: 1.5; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.gallery-item { aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; }

/* AWARDS */
.awards-table th, .awards-table td { padding: 8px 12px; border: 1px solid var(--gray-border); font-size: 12px; }
.awards-table th { background: var(--gray-bg); font-weight: 700; }

@media (max-width: 1024px) {
  .page-body-inner { grid-template-columns: 1fr; }
  .right-col { order: -1; }
}
@media (max-width: 768px) {
  .ev-hero-img { height: 180px; }
  .page-body { padding: 20px 16px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
