/* Послуги консультації — у стилі акордеонів ЛМЦ */

.lmc-consult-services {
  padding: 40px 0 56px;
  background: #fff;
}

.lmc-consult-services__list {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lmc-consult-services__item {
  width: 100%;
  border-radius: 4px;
  background: #f5f5f5;
  border: 1px solid transparent;
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.lmc-consult-services__item.is-open {
  background: #fff;
  border-color: #c7c7c7;
}

.lmc-consult-services__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  font-family: "Noto Sans", sans-serif;
}

.lmc-consult-services__title {
  color: #013232;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.lmc-consult-services__chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='23' height='23' rx='11.5' stroke='%23013232' stroke-width='2'/%3E%3Cpath d='M13.3715 11.919H17.0385V13.686H13.3715V17.391H11.5855V13.686H7.93748V11.919H11.5855V8.176H13.3715V11.919Z' fill='%23013232'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: none;
}

.lmc-consult-services__item.is-open .lmc-consult-services__chevron {
  transform: none;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='23' height='23' rx='11.5' stroke='%23013232' stroke-width='2'/%3E%3Cpath d='M16.625 11.8438C16.9902 11.8438 17.3125 12.166 17.3125 12.5312V13.2188C17.3125 13.6055 16.9902 13.9062 16.625 13.9062H8.375C7.98828 13.9062 7.6875 13.6055 7.6875 13.2188V12.5312C7.6875 12.166 7.98828 11.8438 8.375 11.8438H16.625Z' fill='%23013232'/%3E%3C/svg%3E");
}

.lmc-consult-services__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 20px 16px;
  gap: 0 40px;
}

.lmc-consult-services__item.is-open .lmc-consult-services__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lmc-consult-services__links li {
  margin: 0;
  border-top: 1px solid #ececec;
}

.lmc-consult-services__links a {
  display: block;
  padding: 10px 0;
  color: #2e3131;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.15s ease;
}

.lmc-consult-services__links a:hover,
.lmc-consult-services__links a:focus {
  color: #09b9aa;
  text-decoration: none;
}

@media only screen and (max-width: 765px) {
  .lmc-consult-services {
    padding: 28px 0 40px;
  }

  .lmc-consult-services__toggle {
    padding: 16px 14px;
  }

  .lmc-consult-services__title {
    font-size: 15px;
  }

  .lmc-consult-services__item.is-open .lmc-consult-services__links {
    grid-template-columns: 1fr;
  }

  .lmc-consult-services__links {
    padding: 0 14px 14px;
  }

  .lmc-consult-services__links a {
    font-size: 14px;
    padding: 9px 0;
  }
}
