.text-list {
  padding: 100px 0;
  background-color: var(--Light);
}

.text-list h2 {
  margin-bottom: 40px;
}

.text-list h3 {
  margin: 40px 0 30px 0;
  color: var(--Grey);
  font-family: "EB-Garamond";
  font-weight: 400;
  font-size: calc(24px + 6 * ((100vw - 375px) / (1920 - 375)));
}

.text-list p,
.text-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.text-list p {
  margin-bottom: 25px;
}

.text-list p:last-of-type,
.text-list ul:last-of-type {
  margin-bottom: 0;
}

.text-list ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.text-list li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.text-list li::before {
  content: "";
  border: solid var(--Grey);
  border-width: 0 2.5px 2.5px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
}

.text-list_sub {
  padding-left: 20px;
}

.text-list .text-list_sub::before {
  display: none;
}

.text-list_sub ul {
  gap: 15px;
}

.text-list_sub li {
  gap: 10px;
}

.text-list_sub li::before {
  content: "";
  width: 0;
  height: 0;
  border: none;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--Black);
  border-radius: 2px;
  transform: none;
  padding: 0;
}

@media (max-width: 768px) {
  .text-list {
    padding: 80px 0;
  }

  .text-list h3 {
    margin: 40px 0 25px 0;
  }

  .text-list ul {
    gap: 15px;
  }
}
