/* ===== FAQ layout ===== */
.schools-faq {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;

  align-items: center;

}


.schools-faq__left {
  margin: 0;
  letter-spacing: .5px;
  margin-left: 50%;
}
.schools-faq__right {
  margin:125px;
}

/* ===== Accordion ===== */


.schools-faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 14px 56px 14px 0;
  cursor: pointer;
  display: block;
  font-size: 25px;
  line-height: 1.35;
  color: #2a1f1a;
  position: relative;
}

.schools-faq__q:focus {
  outline: none;
}

/* black plus icon */
.schools-faq__plus {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;

  background: url('./plus.png') center/contain no-repeat;
}


.schools-left_red__title {
  color: #591403;
  text-align: left;
  font-size: clamp(50px, 4vw, 80px);
  margin-top: 0;
  font-family: var(--mydict-heading-font);
  margin-left: 30px;
}


.schools-faq__plus::before,
.schools-faq__plus::after {
  content: none !important;
}
.schools-faq__plus::before {
  width: 16px;
  height: 3px;
}

.schools-faq__plus::after {
  width: 3px;
  height: 16px;
}

/* answer (white) */
.schools-faq__a {
  display: none;
  padding: 0 56px 14px 0;
  color: rgba(255, 255, 255, .92);
  line-height: 1.55;
  font-size: 20px;
}

.schools-faq__item.is-open .schools-faq__a {
  display: block;
}

.schools-faq__item.is-open .schools-faq__plus::after {
  display: none;
}

@media (max-width: 900px) {
  .schools-faq {
    grid-template-columns: 1fr;
  }
  .schools-faq__right {
    margin: 25px;
  }
  .schools-faq__left {
    margin:auto;
    
  }
  .schools-left_red__title {
    margin-left: 0;
    font-size: 50px;
    margin-top:20px;
  }
}