.wc-container {
  width: 100%;
}



.tabcontent {
  display: none;
}

.tab_content__buttons {
  display: flex;
  gap: 16px;
  width: 100%;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}

.tab_content__buttons button {
  background-color: transparent;
  border: none;
  font-family: "Bitter", serif;
  font-size: 20px;
  color: #C3CCCD;
  cursor: pointer;
  padding: 0px;
}

.tab_content__buttons button h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Bitter", serif;
}

.tab_content__buttons button.active {
  color: #3F5A5E !important;
}

.tabcontent.active {
  display: block;
}

.tab_content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding: 0px 16px;
  width: 100%;
}
.article__post {
  width: 100%;
}

.article__post,
.article__post .article__post-content {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}



.article__post img {
  height: 506px;
  object-fit: cover;
  border-radius: 8px;
}

.article__post .article__title {
  font-size: 18px;
  text-transform: uppercase;
  color: #EE6900;
  font-weight: 400;
  margin-top: 4px;
}



.article__post .article__resumo {
  font-family: "Bitter", serif;
  color: #3F5A5E;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 0px;
}

.article__post .article_description {
  font-size: 18px;
  font-weight: 500;
  color: #3F5A5E;
  font-family: "Bitter", serif;
  margin-bottom: 0px;
  line-height: 22px;
}

.article__post a {
  height: 47px;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  padding: 0px 25px;
  text-wrap: nowrap;
  font-weight: 600;
  border-radius: 8px;
  background-color: #EE6900;
  color: white !important;
}

.tab_actions {
  display: flex;
  position: relative;

  justify-content: space-between;
}

.tab_actions .button_action__next-prev {
  display: flex;
  align-items: center;
}

.tab_actions .count {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.tab_actions .current_count {
  width: 2px;
  height: 12px;
  display: flex;
  border-radius: 2px;
  background-color: #3F5A5E;
  display: none;
}

.tab_actions .current_count.active {
  display: flex;
}

.tab_actions .button_action__next-prev button {
  padding: 0px;
  background-color: transparent;
  border: 0px;    
}

@media (min-width: 1024px) {
  .article__post .article__post-content {
    width: 40%;
  }
  .tab_content__buttons button h3 {
    font-size: 40px;
    font-weight: 600;
  }
  .article__post img {
    height: 100%;
    width: 100%;
    max-width: 60%;
    object-fit: cover;
    aspect-ratio: 736 / 506;
  }

  .article__post {
    flex-direction: row;
    align-items: center;
    column-gap: 28px;
  }

  .tab_content {
    background-color: white;
    padding: 40px 20px;
  }

}

@media (max-width: 1023px) {

  .wc-header-search,
  .wc-navigation {
    display: none;
  }




  .tab_content__buttons button {
    position: absolute;
    opacity: 0;
  }
  .tab_content__buttons button.active {
    opacity: 1;
  }


  .wc-home-featured-post__excerpt {
    text-align: center;
  }

  .wc-home-featured-post__title {
    text-align: center;
  }

  .tab-final__butonn {
    display: none;
  }

}