/* ==========================================================================
   1. GLOBAL DEFAULTS (Legal Pages)
   ========================================================================== */
body {
  background-color: var(--color-tertiary);
}

header {
  background-color: var(--color-tertiary);
}

section {
  height: auto;
}

span {
  color: var(--color-txt-quinary);
}

.strong {
  font-weight: var(--fw-bold);
}

/* ==========================================================================
   2. MAIN LAYOUT STRUCTURE
   ========================================================================== */
.legals-main {
  display: flex;
  justify-content: center;
  height: auto;
  scroll-snap-type: none;
  overflow-y: auto;
}

.main-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  color: var(--color-txt-primary);
  padding: 120px 60px 0 60px;
}

.lower-container {
  width: 100%;
  max-width: 1440px;
}

/* ==========================================================================
   3. TEXT & CONTENT STYLING
   ========================================================================== */
.text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-left: 100px;
}

.text-container h1 {
  font-family: var(--font-secondary);
  font-size: var(--fs-h1);
  color: var(--color-txt-primary);
  margin-block-start: 0;
  margin-block-end: 0;
  padding-bottom: 16px;
  word-break: break-all;
}

.text-container h2 {
  font-family: var(--font-primary);
  font-size: clamp(24px, 4vw, 32px);
  color: var(--color-txt-quaternary);
}

.text-container p {
  text-align: justify;
}

.contact-info {
  line-height: 1;
}

/* Lists Styling */
.lists-legal-pages {
  padding-left: 16px;
}

.lists-legal-pages li {
  list-style-type: disc;
}

/* ==========================================================================
   4. MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1500px) {
  .text-container {
    margin-left: 0;
  }
}

@media (max-width: 850px) {
  .main-content {
    padding: 0 16px;
  }

  .text-container {
    padding-top: 60px;
  }
}
