/* Grouped search results page */
.grouped-search-results>.grouped-section-header,
.grouped-search-results .grouped-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  margin-top: var(--space-3xl);
}

.grouped-search-results .grouped-section-header:first-child {
  margin-top: var(--space-xl);
}

.grouped-search-results .grouped-section-header .component-title {
  margin: 0;
  font-family: var(--font-family-headline);
}

.grouped-search-results .grouped-section-header .grouped-parent-title {
  margin: 0;
}

.grouped-search-results .grouped-section-subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.grouped-search-results .grouped-section-subheader .component-subtitle {
  margin: 0;
  font-family: var(--font-family-headline);
  font-size: var(--font-size-xl);
  font-weight: 400;
}

.grouped-search-results .show-all-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--font-size-md);
  white-space: nowrap;
}

.grouped-search-results .show-all-link:hover {
  text-decoration: underline;
}

/* Spacing between sections */
.grouped-search-results .content-listing,
.grouped-search-results .content-row {
  margin-bottom: var(--space-xl);
}