/* Compact schedule heading and intentionally narrow country control. */
.hero-grid .question {
  grid-template-columns: max-content max-content;
  column-gap: 18px;
  max-width: 620px;
}

.question-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.question-heading .form-kicker {
  flex: 0 0 auto;
  margin: 0;
}

.question-heading h2 {
  margin: 0;
  white-space: nowrap;
}

.hero-grid .question > .question-heading {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero-grid .question > div:nth-of-type(2),
.hero-grid .question > div:nth-of-type(3) {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero-grid .question > div:nth-of-type(2) select {
  width: 220px;
}

@media (max-width: 760px) {
  .hero-grid .question {
    display: block;
    max-width: 100%;
  }

  .question-heading {
    gap: 5px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }

  .question-heading h2 {
    white-space: normal;
  }

  .hero-grid .question > div:nth-of-type(2) select {
    width: 100%;
  }
}
