.hero-event {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: 0 0 26px;
  border-left: 4px solid var(--copper);
  background: rgba(12, 12, 10, .62);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-event strong {
  padding: 13px 17px;
  font-size: 18px;
  letter-spacing: .08em;
  line-height: 1;
}

.hero-event span {
  padding: 13px 17px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
}

.hero-event small {
  grid-column: 1 / -1;
  padding: 8px 17px;
  background: var(--copper);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1;
}

.official-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: fit-content;
  margin-top: 16px;
  padding: 15px 20px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.official-link:hover {
  border-color: var(--copper);
  background: var(--copper);
  transform: translateY(-2px);
}

.official-link span {
  font-size: 18px;
}

.official-link-hero {
  margin-top: 0;
  border-color: rgba(255, 255, 255, .72);
  background: rgba(12, 12, 10, .42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.official-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

@media (max-width: 560px) {
  .hero-event {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  .hero-event strong {
    padding: 10px 13px;
    font-size: 15px;
  }

  .hero-event span {
    padding: 9px 13px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    border-left: 0;
    font-size: 10px;
  }

  .hero-event small {
    padding: 7px 13px;
    font-size: 9px;
  }

  .official-link {
    width: fit-content;
    max-width: 100%;
    text-align: center;
  }
}
