:root {
  color-scheme: dark;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: #0b0b0b;
  color: #fff;
  letter-spacing: 0;
}

main,
.content,
.meta {
  min-width: 0;
}

a {
  color: inherit;
}

.hero {
  min-height: 86vh;
  position: relative;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px max(24px, calc((100% - 1160px) / 2));
  background: #242424;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.56);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
}

.brand img {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.content {
  width: 100%;
  max-width: 820px;
  padding: 64px 0 44px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 750;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 66px;
  line-height: 1.02;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 24px 0 0;
  overflow-wrap: anywhere;
  font-size: 18px;
  font-weight: 650;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: #fff;
  color: #0b0b0b;
  text-align: center;
  text-decoration: none;
  font-weight: 750;
}

.button.secondary {
  background: transparent;
  color: #fff;
}

.details {
  padding: 54px max(24px, calc((100% - 1160px) / 2)) 72px;
  background: #fff;
  color: #141414;
}

.details h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.details p {
  max-width: 760px;
  margin: 0;
  color: #404040;
  overflow-wrap: anywhere;
  white-space: pre-line;
  font-size: 18px;
  line-height: 1.6;
}

.event-links {
  display: flex;
  max-width: 760px;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.event-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(20, 20, 20, 0.2);
  border-radius: 8px;
  color: #141414;
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.event-links a:hover,
.event-links a:focus-visible {
  border-color: #141414;
  background: #f2f2f2;
}

@media (max-width: 720px) {
  .hero {
    min-height: 82vh;
    padding-top: 20px;
  }

  .content {
    padding: 48px 0 24px;
  }

  h1 {
    font-size: 44px;
  }

  .meta {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }
}
