/* KWCS event-header styles — single event page banner. */

.event-header {
    position: relative;
    overflow: hidden;
    background: #FFC80B;
    background: radial-gradient(circle, rgba(255, 200, 11, 1) 0%, rgba(245, 166, 36, 1) 100%);
    padding: 80px 80px 72px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 56px;
    align-items: center;
  }

.event-header-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }

.event-header-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy-deep);
    text-decoration: none;
    margin-bottom: 22px;
    opacity: 0.85;
    transition: opacity 0.18s;
  }

.event-header-back:hover { opacity: 1; }

.event-header-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }

.event-header-meta .event-date-badge {
    position: static;
    background: rgba(255, 255, 255, 0.75);
    color: var(--navy-deep);
  }

.event-header-location {
    display: inline-flex;
    align-items: center;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-deep);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    padding: 6px 14px;
    text-decoration: none;
  }

.event-header-location:hover { background: rgba(255, 255, 255, 0.8); }

.event-header-title {
    font-size: clamp(38px, 4.6vw, 66px);
    line-height: 1.02;
    color: var(--navy-deep);
    margin-bottom: 18px;
  }

.event-header-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--navy-deep);
    font-weight: 600;
    max-width: 620px;
    margin-bottom: 30px;
    opacity: 0.92;
  }

.event-header-visual {
    position: relative;
    z-index: 2;
  }

.event-header-visual img {
    width: 100%;
    border-radius: 22px;
    border: 6px solid white;
    box-shadow: 0 18px 44px rgba(20, 55, 107, 0.22);
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

/* The single-event body copy sits in a normal reading column. */
.event-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 32px 96px;
    font-size: 17.5px;
    line-height: 1.75;
  }

.event-body h2, .event-body h3 {
    color: var(--navy-deep);
    margin: 34px 0 14px;
  }

.event-body p { margin-bottom: 18px; }

.event-body ul, .event-body ol { margin: 0 0 18px 22px; }

.event-body li { margin-bottom: 8px; }

@media (max-width: 1024px) {
  .event-header {
    grid-template-columns: 1fr;
    padding: 64px 32px 56px;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .event-header { padding: 48px 20px 44px; }
  .event-body { padding: 48px 20px 72px; }
}
