.event-detail {
  width: min(560px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0 clamp(72px, 10vw, 120px);
}

.back-link-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid var(--edge, var(--green));
  border-radius: 999px;
  background: var(--white);
  color: var(--edge, var(--green));
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
}

.event-detail-box {
  display: grid;
  gap: 24px;
}

.event-visual {
  position: relative;
}

.event-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--edge, var(--green));
  object-fit: cover;
  background: #eeeeee;
}

.event-detail-date {
  position: absolute;
  top: 10px;
  left: -8px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 25px 0 12px;
  color: var(--white);
  background: var(--edge, var(--green));
  clip-path: polygon(0 0, 100% 0, calc(100% - 13px) 50%, 100% 100%, 0 100%);
  font-size: 1rem;
  font-weight: 1000;
  line-height: 1;
}

.event-detail-copy h1 {
  margin: 0 0 12px;
  color: var(--edge, var(--green));
  font-size: clamp(1.45rem, 5.4vw, 2.05rem);
  font-weight: 1000;
  line-height: 1.16;
}

.event-detail-copy p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.9;
}

.event-detail-copy .event-lead {
  color: var(--ink);
  font-weight: 1000;
}

.event-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.event-detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--tag-color);
  background: color-mix(in srgb, var(--tag-color) 14%, var(--white));
  font-size: .75rem;
  font-weight: 1000;
  line-height: 1;
}

.event-detail-list {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
}

.event-flyers {
  display: grid;
  gap: 18px;
  margin: 28px 0 30px;
}

.event-flyers img {
  width: 100%;
  border: 2px solid color-mix(in srgb, var(--edge, var(--green)) 32%, var(--white));
  border-radius: 8px;
  background: #eeeeee;
  box-shadow: 0 12px 24px rgba(18, 49, 77, .08);
}

.event-photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-photo-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-videos {
  display: grid;
  gap: 18px;
  margin: 28px 0 30px;
}

.event-videos video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid color-mix(in srgb, var(--edge, var(--green)) 32%, var(--white));
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 12px 24px rgba(18, 49, 77, .08);
}

.event-detail-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 9px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 25%, transparent);
}

.event-detail-list dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--edge, var(--green));
  font-size: .7rem;
  font-weight: 1000;
  line-height: 1;
}

.event-detail-list dd {
  margin: 0;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 900;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.event-detail-list dd a {
  color: var(--edge, var(--green));
  text-decoration: underline;
  text-underline-offset: 3px;
}

.event-detail-list dd span {
  font-size: .72rem;
}

.event-closed-notice {
  display: inline-block;
  margin: 4px 0;
  color: var(--edge, var(--green));
  font-weight: 1000;
}

.event-guest {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding: 22px;
  border: 2px solid color-mix(in srgb, var(--edge, var(--green)) 28%, var(--white));
  border-radius: 8px;
  background: color-mix(in srgb, var(--edge, var(--green)) 6%, var(--white));
}

.event-guest-label {
  width: fit-content;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--edge, var(--green));
  font-size: .74rem;
  font-weight: 1000;
  line-height: 1;
}

.event-guest-profile {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.event-guest-profile img {
  width: 96px;
  aspect-ratio: 1 / 1;
  border: 3px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  background: #eeeeee;
}

.event-guest h2 {
  margin: 0 0 8px;
  color: var(--edge, var(--green));
  font-size: 1.2rem;
  font-weight: 1000;
  line-height: 1.25;
}

.event-guest h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 1000;
}

.event-guest p {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.85;
}

@media (max-width: 680px) {
  .event-detail {
    width: min(100% - 32px, 420px);
  }

  .event-guest {
    padding: 18px;
  }

  .event-guest-profile {
    grid-template-columns: 1fr;
  }

  .event-photo-grid {
    grid-template-columns: 1fr;
  }
}
