// ==============================================================
// 🔠 Typography Styles (_typography.scss)
// ==============================================================

// 👉 Breakpoints & Fonts
//$screen-xs: 767px;



// ==============================================================
// 🌐 Global Styles
// ==============================================================

body {
  font-family: $calibre;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: $text-01;
}

.container {
  max-width: 1140px;
  &.w-1280{
    max-width: 1280px;
  }
}


// ==============================================================
// 📌 Headings (H1 - H6)
// ==============================================================

h1, h2, h3, h4, h5, h6, .h2, .h3 {
  font-family: $calibre;
  color: $text-03;
  margin-bottom: 0;
}

h1, .h1 {
  font-size: 72px;
  line-height: 72px;
  font-weight: 700;
  letter-spacing: -1%;
  font-family: $berlingske;
  @media screen and (max-width: 1199px) and (min-width: 768px) {
    font-size: 62px;
    line-height: 62px;
  }
  @media screen and (max-width: $screen-xs) {
    font-size: 48px;
    line-height: 48px;
  }
}

h2, .h2 {
  font-size: 52px;
  line-height: 60px;
  font-weight: 700;
  font-family: $berlingske;
  @media screen and (max-width: 1199px) {
    font-size: 36px;
    line-height: 44px;
  }
}

h3 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
}

h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}



// ==============================================================
// 📝 Paragraphs & Text Elements
// ==============================================================

p, .p {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  color: $text-03;
  font-family: $calibre;
  margin-bottom: 0;
  @media screen and (max-width: 1199px) and (min-width: 768px) {
    font-size: 20px;
    line-height: 26px;
  }
  @media screen and (max-width: $screen-xs) {
    font-size: 18px;
    line-height: 24px;
  }
}


// ==============================================================
// 🔡 Inline Text Elements
// ==============================================================

strong {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: $text-03;
  font-family: $calibre;
  display: inline-block;
  @media screen and (max-width: 1199px) and (min-width: 768px) {
    font-size: 20px;
    line-height: 26px;
  }
  @media screen and (max-width: $screen-xs) {
    font-size: 18px;
    line-height: 24px;
  }
}

span {
  font-family: $calibre;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  color: $text-03;
  display: inline-block;
  @media screen and (max-width: 1199px) and (min-width: 768px) {
    font-size: 20px;
    line-height: 26px;
  }
  @media screen and (max-width: $screen-xs) {
    font-size: 18px;
    line-height: 24px;
  }
}


// ==============================================================
// 🔗 Links & Lists
// ==============================================================

a, .a {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  color: $text-03;
  text-decoration: none;
  font-family: $calibre;
  display: inline-block;
  @media screen and (max-width: 1199px) and (min-width: 768px) {
    font-size: 20px;
    line-height: 26px;
  }
  @media screen and (max-width: $screen-xs) {
    font-size: 18px;
    line-height: 24px;
  }
  &:hover {
    color: $text-03;
    text-decoration: none;
  }
}

ul, ol {
  padding: 0;
  margin: 0;
  li {
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    color: $text-03;
    font-family: $calibre;
    display: inline-block;
    list-style: none;
    @media screen and (max-width: 1199px) and (min-width: 768px) {
      font-size: 20px;
      line-height: 26px;
    }
    @media screen and (max-width: $screen-xs) {
      font-size: 18px;
      line-height: 24px;
    }
  }
}
