/* Root */
:root {
  --desktop_padding: 9.375vw;
  --header-height: 86px;
}

@media screen and (max-width: 1440px) {
  :root {
    --desktop_padding: 3rem;
    --header-height: 66px;
  }
}
@media screen and (max-width: 992px) {
  :root {
    --desktop_padding: 1rem;
  }
}
h1 {
  text-align: center;
  font-size: 3rem;
  line-height: 1.2;
  font-family: "SVN-Megante";
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

#main {
  margin-top: 2.25rem;
}
#main header .meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  flex-shrink: 0;
  justify-content: center;
  margin-top: 0.75rem;
}
#main header .meta .date {
  display: flex;
  gap: 2px;
  align-items: center;
  color: rgb(2, 74, 43);
}
#main header .meta .date .icon {
  margin-top: 2px;
  width: 0.875rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(./../img/icons/clock2.svg);
  background-size: cover;
}

.post__content {
  color: #444444;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 2rem;
  padding-bottom: 2rem;
}
.post__content * {
  font-family: "SVN-Lato";
}
.post__content p,
.post__content ul,
.post__content ol {
  margin-bottom: 1rem;
}
.post__content img {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.post__content a {
  color: #f37128;
  font-style: italic;
  transition: all 0.4s ease-in-out;
}
.post__content a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  object-fit: contain;
}

.lasted_news {
  margin-bottom: 3rem;
}
.lasted_news h2 {
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(0, 0, 0);
}
.lasted_news .list-news-simple {
  margin-bottom: 1.5rem;
}
.lasted_news .list-news-simple .item-news-simple * {
  color: #000;
}
.lasted_news .list-news-simple .item-news-simple:hover * {
  color: rgb(2, 74, 43);
}
.lasted_news .list-news-simple .item-news-simple .post-content .description {
  font-size: 1rem;
}
.lasted_news .list-news-simple .item-news-simple .post-thumbnail {
  width: 37.5%;
}
.lasted_news nav {
  display: flex;
  justify-content: center;
}
.lasted_news nav a {
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  .post__content p,
  .post__content ul,
  .post__content ol {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  h1 {
    font-size: 7vw;
  }
  h2 {
    font-size: 6vw;
  }
  .post__content img {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}