/* Section */
.Section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100vw;
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}

/* EmptySection */
.EmptySection {
  background-color: rgb(255, 255, 255);
}

/* EmptyPadding */
.EmptyPadding {
  min-height: 50px;
  height: 6vh;
}

.Section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.Section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.Section .Text {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .Section h1 {
    font-size: clamp(1.6rem, 3.4vw, 2rem);
  }

  .Section h2 {
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  }

  .Section .Text {
    font-size: clamp(1rem, 2.3vw, 1.35rem);
  }
}

@media (max-width: 768px) {
  .Section {
    min-height: 100dvh;
    padding: 84px 16px 36px;
    gap: 18px;
  }
}

@media (orientation: portrait) {
  .Section {
    height: 100dvh;
    min-height: 100dvh;
    padding: 72px 14px 24px;
    gap: 12px;
  }

  .Section h1 {
    font-size: clamp(1.25rem, 2.9vh, 1.7rem);
    margin-bottom: 0.6rem;
  }

  .Section h2 {
    font-size: clamp(1.05rem, 2.4vh, 1.35rem);
    margin-bottom: 0.5rem;
  }

  .Section .Text {
    font-size: clamp(0.9rem, 1.95vh, 1.1rem);
    margin-bottom: 0.5rem;
  }
}
