.hp-details details {
  border-color: rgba(49, 45, 90, 0.14);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(49, 45, 90, 0.07);
}

.hp-details summary {
  position: relative;
  padding: 27px 72px 27px 30px;
  list-style: none;
  font-size: 15px;
}

.hp-details summary::-webkit-details-marker { display: none; }

.hp-details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 26px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #eef4df;
  color: var(--green);
  font-size: 22px;
  transform: translateY(-50%);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.hp-details details[open] summary::after {
  content: "−";
  background: var(--blue);
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}

.hp-detail-body {
  padding: 6px 30px 32px;
  border-top: 1px solid #ececf1;
}

.hp-detail-lead {
  max-width: 760px !important;
  margin: 24px 0 !important;
  color: #5c5970;
  font-size: 15px;
  line-height: 1.75;
}

.hp-detail-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid #ececf1;
  border-radius: 12px;
  background: #f8f9f5;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.hp-detail-points span i {
  display: grid;
  flex: 0 0 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #eef4df;
  color: var(--green);
  font-style: normal;
  font-size: 11px;
}

@media (max-width: 700px) {
  .hp-details { margin-top: 55px; }
  .hp-details summary { padding: 22px 62px 22px 22px; font-size: 14px; line-height: 1.45; }
  .hp-details summary::after { right: 18px; width: 32px; height: 32px; }
  .hp-detail-body { padding: 2px 20px 24px; }
}

