.img-list {
  margin-bottom: 160px;
}

.img-list.with_bg {
  padding: 100px 0;
  background-color: #f7f7f7;
}

.img-list .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.img-list img {
}

.img-list .container.reverse {
  flex-direction: row-reverse;
}

.img-list .title {
  margin-bottom: 40px;
}

.img-list__content {
  max-width: 630px;
}

.img-list ul,
.img-list ol {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.img-list ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 24px;

  color: #222;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.img-list ol li {
  counter-increment: count;
}

.img-list ol p {
  font-family: "EB-Garamond";
  font-size: 24px;
}

.img-list ol p::before {
  content: counter(count) ". ";
  color: var(--Grey);
  font-family: "EB-Garamond";
  font-size: 24px;
}

.img-list ul li strong::before,
.img-list ul li p.add_arrow::before {
  content: url("/wp-content/themes/euvatandas.tr/images/arrow_list.svg");
  position: absolute;
  width: 10px;
  height: 16px;
  left: 0;
  top: 0;
}

.img-list ul li strong {
  color: var(--Grey, #405363);
  font-family: "EB-Garamond";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

@media (max-width: 991px) {
  .img-list {
    margin-bottom: 80px;
  }

  .img-list.with_bg {
    padding: 80px 0;
  }

  .img-list ul {
    gap: 16px;
  }

  .img-list .container,
  .img-list .container.reverse {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .img-list img.mb-img-none {
    display: none;
  }

  .img-list__item {
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: gap 0.4s ease;
  }

  .img-list__header {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    position: relative;
    color: #405363;
    font-family: "EB-Garamond";
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }

  .img-list ul li .img-list__header strong {
    padding-left: 36px;
  }

  .img-list ul li .img-list__header strong::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 24px;
    height: 24px;
    background-image: url("/wp-content/themes/euvatandas.tr/images/ic_baseline-plus.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s, background-image 0.3s;
    pointer-events: none;
  }

  .img-list ul li.img-list__item.open .img-list__header strong::before {
    transform: translateY(-50%) rotate(180deg);
  }

  .img-list ul li.img-list__item.open .img-list__header strong::before {
    background-image: url("/wp-content/themes/euvatandas.tr/images/ic_baseline-minus.svg");
  }

  .img-list ul li.img-list__item {
    padding-left: 0;
  }

  .img-list ul li.img-list__item.open {
    gap: 10px;
  }

  .img-list__text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 36px;
    color: var(--Black, #222);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .img-list ol {
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .img-list img {
    min-height: 260px;
  }
}
