/* Shared detail polish for the current landing page and its legal pages.
   The comparison pages retain their original appearances. */

/* Draw the + / minus geometrically, independent of font baselines. */
.disclosure-icon {
  position: relative;
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--blue);
}
.disclosure-icon::before,
.disclosure-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.disclosure-icon::after { width: 2px; height: 16px; }
details[open] > summary .disclosure-icon::after { display: none; }
.faq-list > details > summary::after { content: none; }
.guarantee-result > details > summary,
#inquiryDraftDetails > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  list-style: none;
}
.guarantee-result > details > summary::-webkit-details-marker,
#inquiryDraftDetails > summary::-webkit-details-marker { display: none; }
.guarantee-result .disclosure-icon { color: #bdd0ff; }

/* The app demo uses the same centered shape at a slightly smaller size.
   Its existing muted / completed colors remain meaningful. */
#demoApp :is(.action-step, .execution-receipt, .supporting-details) > summary::after,
#demoApp :is(.action-step, .execution-receipt, .supporting-details)[open] > summary::after {
  content: "";
  display: block;
  flex: 0 0 20px;
  align-self: center;
  width: 20px;
  height: 20px;
  margin-left: auto;
  font-size: 0;
  line-height: 0;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 2px, 2px 14px;
}
#demoApp :is(.action-step, .execution-receipt, .supporting-details)[open] > summary::after {
  background-size: 14px 2px, 2px 0;
}

/* Ellipsis icons no longer need a font-dependent vertical padding offset. */
#kanaele .channel-examples-more > summary { padding: 0; }
#kanaele .channel-examples-more > summary > svg { display: block; width: 18px; height: 18px; }

/* Minimum height only takes effect once the text links create a box. */
.footer nav a { display: inline-flex; align-items: center; min-height: 44px; }
