.event-summary {
  color: var(--subaru-blue);
  min-height: 100vh;
  max-width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-bottom: 16px solid var(--subaru-blue);
}

.event-summary-content {
  gap: 2rem;
  width: 90vw;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-bottom: 20vh;
}

.event-summary-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.event-summary-key {
  font-size: calc(var(--vw-safe) / 100 * 5);
  line-height: 1.2em;
  font-weight: 700;
}

.event-summary-image {
  position: absolute;
  width: 75%;
  height: auto;
  object-fit: cover;
  bottom: 5vh;
  right: -10vw;
  z-index: -1;
}

.subscription-description {
  font-size: 1.6rem;
}

.subscription-rule {
  font-size: 1rem;
}

/* Responsive: tablet (max-width: 840px) */
@media screen and (max-width: 840px) {
  .event-summary-key {
    font-size: 7vw;
  }
  .event-summary-image {
    max-width: none;
    width: 125%;
    right: -30vw;
  }
  .subscription-description {
    font-size: 1.4rem;
  }
  .subscription-rule {
    font-size: 1rem;
  }
}

/* Responsive: sp (max-width: 540px) */
@media screen and (max-width: 540px) {
  .event-summary {
    min-height: 100svh;
  }
  .subscription-description {
    font-size: 3.9vw;
  }
}
