/**
 * QNA Accordion Block Styles - Bare Minimum
 */
.qna-trigger {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 1em 0;
  position: relative;
  color: var(--wp--preset--color--light-blue);
  padding-right: 2.5em; }

.qna-icon {
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  right: 0;
  width: 1.5rem;
  height: 1.5rem; }
  @media (max-width: 991.98px) {
    .qna-icon {
      width: 1.3333333333333333333rem;
      height: 1.3333333333333333333rem; } }
  .qna-icon::before, .qna-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease; }
  .qna-icon::before {
    background-image: url('data:image/svg+xml,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.5 1.5C15.5 0.66875 14.8313 0 14 0C13.1687 0 12.5 0.66875 12.5 1.5V12.5H1.5C0.66875 12.5 0 13.1687 0 14C0 14.8313 0.66875 15.5 1.5 15.5H12.5V26.5C12.5 27.3312 13.1687 28 14 28C14.8313 28 15.5 27.3312 15.5 26.5V15.5H26.5C27.3312 15.5 28 14.8313 28 14C28 13.1687 27.3312 12.5 26.5 12.5H15.5V1.5Z" fill="%233D598A"/></svg>'); }
  .qna-icon::after {
    background-image: url('data:image/svg+xml,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 12.5C0.66875 12.5 0 13.1687 0 14C0 14.8313 0.66875 15.5 1.5 15.5H26.5C27.3312 15.5 28 14.8313 28 14C28 13.1687 27.3312 12.5 26.5 12.5H1.5Z" fill="%233D598A"/></svg>'); }

.qna-question {
  margin: 0;
  font-size: 1.425rem; }
  @media (max-width: 991.98px) {
    .qna-question {
      font-size: 1.1111111111111111111rem; } }

.qna-item {
  border-bottom: 1px solid var(--wp--preset--color--light-blue);
  width: 790px;
  max-width: 100%; }

.qna-answer {
  padding-bottom: 1em; }

.qna-trigger[aria-expanded="true"] .qna-icon::before {
  opacity: 0; }

.qna-trigger[aria-expanded="true"] .qna-icon::after {
  opacity: 1; }

.qna-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease; }
  .qna-content:not([hidden]) {
    max-height: 1000px; }

/*# sourceMappingURL=qna.css.map */
