/* =========================
   MAIN CONTENT
========================= */


.main {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   place-items: center;
   min-width: 320px;
   min-height: calc(-100% + 126px);;
   max-width: 1280px;
   margin: 0 auto;
   padding: 2rem;
   text-align: center;
}


/* LAYOUT STYLES */


.section {
  padding-block: 6rem 3rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}


.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  text-align: center;
  row-gap: 1.5rem;
  margin-bottom: 3rem;
}

.truncate {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* HEADINGS & TITLES */

.title-small {
  font-family: inherit;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}
.title-medium {
  font-family: inherit;
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
}
.title-large {
  font-family: inherit;
  font-size: clamp(2.65rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
}

.title {
  font-family: inherit;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
  letter-spacing: -0.05rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.paragraph {
  font-family: inherit;
  line-height: 1.5;
  max-width: 50ch;
  height: auto;
  text-wrap: pretty;
  word-wrap: break-word;
}

.text-small {
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.5;
}
.text-base {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}
.text-medium {
  font-family: inherit;
  font-size: 1.15rem;
  line-height: 1.5;
}
.text-large {
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.5;
}
.text-upper {
  text-transform: uppercase;
}
.text-lower {
  text-transform: lowercase;
}
.text-capital {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semi {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}


