/* Default: Mobile */
html, body {
  margin: 0;
  display: flex;
  flex-direction: column;
}

span, p, input, button, li, h1, h2 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
}

/* Tablet */
@media (min-width: 665px) {
  html {
    font-size: 16px;
  }
  span {
    font-size: 1.2rem;
  }
}

/* Desktop */
@media (min-width: 900px) {
  html {
    font-size: 18px;
  }
  span {
    font-size: 1.2rem;
  }
}


body {
    height: 100%;
    background-color: #E5E9D5;
    display: flex;
    flex-direction: column;
    margin: 0;
}


header{
  z-index: 2;
    background-color: #E5E9D5;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-height: 6rem;
    border-bottom: 1px solid #262322;
}


#logoFg{
    cursor: pointer;
    max-width: 4rem;
    max-height: 4rem;
}

#left{
    display: flex;
    flex-direction: row;
    align-items: center;
}

#right {
    display: flex;
    gap: 1rem;
    margin-right: 15px;
}


.primaryHeaderText {
    margin-left: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Outfit", sans-serif;

}

.secondaryHeaderText {
    cursor: pointer;
    color: #262322;
    text-decoration: none;
    font-size: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: "Outfit", sans-serif;
}

#languageToggle {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

#container {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: 2rem;
  min-height: 60vh;
}

.page {
  width: 90%;
  max-width: 55rem;
  background-color: #FBFFEB;
  border: 1px solid #262322;
  padding-bottom: 2rem;
  margin-top: 2rem;
  min-height: 60vh;
  height: auto;
}

.article-page {
  font-family: "Karla", sans-serif;
  color: #262322;
  background-color: #f4f4e8;
}

.article-hero {
  position: relative;
}

.article-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: brightness(85%);
}

.article-hero-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: white;
}

.article-hero-text h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 500;
}

.article-hero-text .article-subtitle {
  font-size: 1rem;
  margin: 0;
  opacity: 0.85;
}

.article-content {
  background-color: #f1f0e2;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.article-content h2 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.article-content ol {
  margin-left: 1.2rem;
  line-height: 1.6;
}

strong {
    font-weight: 600;
}

li {
    color: #262322;
}

h2 {
    color: #262322;
    font-weight: 600;
}

li a {
    color: #262322;
    transition: 0.3s;
}

li a:hover{
    color: #4B352A;
}
#titleSpan{
  color: #262322;
}