/* Kendis FAQ accordion. Shared by /pricing/ and /free-trial/ in every locale.
   Behaviour lives in js/kendis-faq.js; the markup contract is documented there.

   Why this is a stylesheet rather than inline styles on the elements:
   the theme's bundle carries

       button,input[type=button],... { background-color:#59bab2; color:#fff !important }

   and an inline style cannot beat !important. /free-trial/ does not load that
   bundle, so inline styling looked fine there and rendered white-on-white the
   moment the same markup landed on /pricing/, which does. The resets below are
   the only rules that need !important; everything else is ordinary styling. */

.kds-faq-item {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(20, 22, 50, .10);
  margin-bottom: 12px;
  overflow: hidden;
}

/* The button reset. Each !important here answers a theme rule of equal force. */
.kds-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  background-color: transparent !important;
  color: #151838 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 20px 22px !important;
}

.kds-faq-q:hover,
.kds-faq-q:active,
.kds-faq-q:focus {
  background-color: transparent !important;
  color: #151838 !important;
}

.kds-faq-q:focus-visible {
  outline: 2px solid #2ce0c6;
  outline-offset: 2px;
}

.kds-faq-sign {
  flex: none;
  width: 24px;
  text-align: center;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: #0e9e8e;
}

.kds-faq-q:hover .kds-faq-sign { color: #0b7d70; }

/* No max-height animation: the theme's accordion caps an open answer at 600px,
   which clips the longer answers on narrow screens and in translation. */
.kds-faq-a p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: #586084;
}

@media (max-width: 600px) {
  .kds-faq-q { font-size: 15px; padding: 16px 18px !important; }
  .kds-faq-a p { padding: 0 18px 18px; font-size: 14px; }
}
