.compact-help {
  margin: 10px 0;
  border: 1px solid rgba(18, 133, 104, .2);
  border-radius: 14px;
  background: rgba(248, 253, 250, .94);
  box-shadow: 0 7px 18px rgba(22, 92, 74, .05);
  overflow: hidden;
}

.compact-help[hidden] {
  display: none !important;
}

.compact-help > summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: #155f50;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.compact-help > summary::-webkit-details-marker {
  display: none;
}

.compact-help__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #138b70;
  font: 900 15px/1 system-ui, sans-serif;
  box-shadow: 0 3px 8px rgba(19, 139, 112, .2);
}

.compact-help__label {
  min-width: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 760;
}

.compact-help__action {
  flex: 0 0 auto;
  color: #668079;
  font-size: 12px;
  font-weight: 650;
}

.compact-help__action::after {
  content: "⌄";
  display: inline-block;
  margin-left: 5px;
  color: #138b70;
  font-size: 16px;
  transition: transform .18s ease;
}

.compact-help[open] .compact-help__action::after {
  transform: rotate(180deg);
}

.compact-help__body {
  margin: 0 !important;
  padding: 10px 13px 14px !important;
  border: 0 !important;
  border-top: 1px solid rgba(18, 133, 104, .12) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.compact-help__body > :first-child {
  margin-top: 0 !important;
}

.compact-help__body > :last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 520px) {
  .compact-help {
    margin: 7px 0;
    border-radius: 12px;
  }

  .compact-help > summary {
    min-height: 42px;
    gap: 8px;
    padding: 6px 10px;
  }

  .compact-help__icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    font-size: 13px;
  }

  .compact-help__label {
    font-size: 13px;
  }

  .compact-help__body {
    padding: 9px 11px 12px !important;
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .compact-help__action::after {
    transition: none;
  }
}
