.articles-cct .articles-cct__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;

}
.articles-cct .articles-cct__heading .elementor-heading-title:after {
  content: '';
  display: block;
  width: 50px;
  border-bottom: 2px solid var(--e-global-color-accent);
  margin-top: 10px;
}

@media (max-width: 767px) {
  .articles-cct .articles-cct__heading {
    flex-direction: column;
  }
}

.articles-cct .articles-cct__heading__search {
  display: flex;
  border-radius: 20px;
}
.articles-cct .articles-cct__heading__search__input {
  flex: 1;
  height: 54px;
  border: none;
  color: var(--e-global-color-text);
  border: 1px solid #D2D5D0;
  border-radius: 10px;
  padding: 10px 10px 10px 60px !important;
  min-width: 340px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='20px' height='20.7407407px' fill='%23D2D5D0' viewBox='0 0 20 20.7407407' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M19.6959131,18.8915285 L14.765571,13.757498 C16.0332486,12.2487098 16.7278166,10.3503454 16.7278166,8.37406588 C16.7278166,3.75667877 12.9756946,0 8.3639083,0 C3.75212199,0 0,3.75667877 0,8.37406588 C0,12.991453 3.75212199,16.7481318 8.3639083,16.7481318 C10.0952373,16.7481318 11.7451091,16.2252988 13.1557005,15.2327899 L18.1234983,20.4057781 C18.3311415,20.6216834 18.6104233,20.7407407 18.9097057,20.7407407 C19.1929877,20.7407407 19.4617237,20.6326061 19.6657303,20.4359976 C20.0991989,20.0183865 20.1130176,19.3258877 19.6959131,18.8915285 Z M8.3639083,2.18453893 C11.7727464,2.18453893 14.5459275,4.9610879 14.5459275,8.37406588 C14.5459275,11.7870439 11.7727464,14.5635928 8.3639083,14.5635928 C4.9550702,14.5635928 2.18188912,11.7870439 2.18188912,8.37406588 C2.18188912,4.9610879 4.9550702,2.18453893 8.3639083,2.18453893 Z' id='Shape'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 20px 16px;
}

.articles-cct .articles-cct__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.articles-cct .articles-cct__list__item {
  background: #efefef;
  overflow: hidden;
}

.articles-cct .articles-cct__list__item__header {
  background-color: #efefef;
  color: #333;
  padding: 20px 25px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  gap: 10px;
}

.articles-cct .articles-cct__list__item__header:before {
  content: url("data:image/svg+xml,%3Csvg aria-hidden='true' class='e-font-icon-svg e-fas-plus' viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'%3E%3C/path%3E%3C/svg%3E");
  width: 13px;
  height: 15px;
  transition: all ease-in-out 300ms;
}

.articles-cct .articles-cct__list__item.open .articles-cct__list__item__header:before {
  content: url("data:image/svg+xml,%3Csvg aria-hidden='true' class='e-font-icon-svg e-fas-minus' viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'%3E%3C/path%3E%3C/svg%3E");
}

.articles-cct .articles-cct__list__item__content_wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: 250ms grid-template-rows ease-in-out;
}

.articles-cct .articles-cct__list__item.open .articles-cct__list__item__content_wrapper {
  grid-template-rows: 1fr;
}

.articles-cct .articles-cct__list__item .articles-cct__list__item__content {
  padding: 0 20px;
  overflow: hidden;
  transition: 250ms padding ease-in-out;
}

.articles-cct .articles-cct__list__item.open .articles-cct__list__item__content {
  padding: 20px 35px 20px 50px;
}

.articles-cct__list__not_found {
  display: none;
  text-align: center;
}
