main#blog {
  padding-top: 80px;
  max-width: 1460px;
  margin: auto;
}
@media (max-width: 374px) {
  main#blog {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1440px) {
  main#blog {
    padding-left: clamp(16px, 4%, 123px);
    padding-right: clamp(16px, 4%, 123px);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  main#blog {
    padding-left: 123px;
    padding-right: 123px;
  }
}
@media (min-width: 1920px) {
  main#blog {
    padding-left: 230px;
    padding-right: 230px;
  }
}
main#blog header {
  padding-top: 96px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  main#blog header {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
main#blog header .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main#blog header .container h1 {
  color: #101828;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.96px;
}
@media (max-width: 768px) {
  main#blog header .container h1 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
  }
}
main#blog header .container p {
  color: #475467;
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 768px) {
  main#blog header .container p {
    font-size: 18px;
    line-height: 28px;
  }
}
main#blog header .container p a {
  color: #F47721;
  font-weight: 600;
}
main#blog section.featured-post .container {
  display: flex;
  padding-top: 32px;
  padding-bottom: 64px;
  gap: 32px;
}
@media (max-width: 768px) {
  main#blog section.featured-post .container {
    flex-direction: column;
    padding-bottom: 52px;
  }
}
main#blog section.featured-post .container .image-wrapper {
  width: 60%;
  height: 100%;
}
@media (max-width: 768px) {
  main#blog section.featured-post .container .image-wrapper {
    width: 100%;
  }
}
main#blog section.featured-post .container .image-wrapper img {
  max-width: 100%;
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
main#blog section.featured-post .container .content-wrapper {
  width: 40%;
}
@media (max-width: 768px) {
  main#blog section.featured-post .container .content-wrapper {
    width: 100%;
  }
}
main#blog section.featured-post .container .content-wrapper .heading-text-wrapper {
  color: #101828;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  main#blog section.featured-post .container .content-wrapper .heading-text-wrapper h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
main#blog section.featured-post .container .content-wrapper .supporting-text-wrapper {
  padding-bottom: 16px;
}
main#blog section.featured-post .container .content-wrapper .supporting-text-wrapper p {
  color: #475467;
  font-size: 16px;
  line-height: 24px;
}
main#blog section.featured-post .container .content-wrapper .learn-more-wrapper a {
  color: #F46E15;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  position: relative;
}
main#blog section.featured-post .container .content-wrapper .learn-more-wrapper a:after {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0px;
  margin-left: 10px;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper {
  display: grid;
  grid-gap: 48px 32px;
  grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
}
@media (max-width: 768px) {
  main#blog section.blog-posts .container .posts-container .posts-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(343px, 1fr));
  }
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post {
  display: none;
  max-width: 475px;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post:nth-child(-n+6) {
  display: grid;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post .image-wrapper {
  padding-bottom: 20px;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post .image-wrapper img {
  max-width: 100%;
  max-height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  height: 240px;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post .author-wrapper {
  padding-bottom: 8px;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post .author-wrapper p {
  color: #475467;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post .tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post .tags-wrapper .tag {
  padding: 2px 8px;
  border-radius: 6px;
  border: 0px solid #EAECF0;
  background: #F9FAFB;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post .tags-wrapper a {
  color: #344054;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post .heading-text-wrapper {
  padding-bottom: 8px;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post .heading-text-wrapper h2 {
  color: #101828;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
main#blog section.blog-posts .container .posts-container .posts-wrapper .post .supporting-text-wrapper p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  color: #475467;
  font-size: 16px;
  line-height: 24px;
  max-height: 48px;
}
main#blog section.blog-posts .container .posts-container .load-more-wrapper {
  padding-top: 64px;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  main#blog section.blog-posts .container .posts-container .load-more-wrapper {
    display: none;
  }
}
main#blog section.blog-posts .container .posts-container .mobile-navigation {
  display: none;
  color: #344054;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border-top: 1px solid #EAECF0;
  margin-top: 48px;
  padding-top: 16px;
}
main#blog section.blog-posts .container .posts-container .mobile-navigation #currentPage, main#blog section.blog-posts .container .posts-container .mobile-navigation #totalPages {
  font-weight: 500;
}
@media (max-width: 768px) {
  main#blog section.blog-posts .container .posts-container .mobile-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
main#blog section.blog-posts .container .posts-container .mobile-navigation button {
  display: flex;
  padding: 8px;
}