.header-subpage {
  min-height: 400px;
  height: min-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;

  gap: 2.5rem;

  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #dbebee 0%, #FFFFFF 100%);
}

@media screen and (min-width: 1000px) {
  .header-subpage {
    min-height: 450px;
  }
}

.header-subpage__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.header-subpage__title {
  font-weight: 700;
  margin: 0;
  font-size: 60px;
  font-size: clamp(1.75rem, 3.817vw + 0.887rem, 3.75rem);

  text-align: center;
  line-height: 1.1;
  text-wrap: balance;
}
.header-subpage__subtitle {
  font-size: 32px;
  font-size: clamp(1.25rem, 1.527vw + 0.855rem, 2rem);
  font-weight: normal;
  margin: 0;
  
  text-align: center;
  line-height: 1.3;
  text-wrap: balance;
}

.header-subpage__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.header-subpage__extra-infos {
  border: 1px solid currentColor;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  color: #404040;
}

.header-subpage__extra-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.header-subpage__extra-info-icon {
  width: 20px;
  height: 20px;
  filter: invert(100%) sepia() brightness(0.3);
}

.header-subpage__button {
  appearance: none;
  padding: 0.5rem 1rem;
  background-color: #dfedf0;
  font-weight: 700;
  line-height: 1.4;
}

.header-subpage + .-block-padding:not(.-is-filled) {
  padding-top: 2rem;
}