.bmt-faq-preview,
.bmt-local-faq {
  background: #f5f5f3;
  color: #171719;
}

.bmt-faq-block__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.bmt-faq-block__header .bmt-title {
  font-size: clamp(34px, 5vw, 48px);
}

.bmt-faq-block__header .bmt-sub {
  max-width: 680px;
  margin-bottom: 0;
}

.bmt-faq-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bmt-faq-block__item {
  overflow: hidden;
  border: 1px solid #dededb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .035);
}

.bmt-faq-block__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 20px;
  color: #18181a;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.bmt-faq-block__item summary::-webkit-details-marker {
  display: none;
}

.bmt-faq-block__item summary::after {
  content: '+';
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #f1f1ef;
  color: var(--burmet-red);
  font-size: 20px;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.bmt-faq-block__item[open] {
  border-color: rgba(198, 0, 23, .26);
}

.bmt-faq-block__item[open] summary::after {
  transform: rotate(45deg);
  background: var(--burmet-red);
  color: #fff;
}

.bmt-faq-block__item summary:focus-visible,
.bmt-faq-block__cta:focus-visible {
  outline: 3px solid rgba(198, 0, 23, .3);
  outline-offset: 3px;
}

.bmt-faq-block__answer {
  padding: 0 20px 20px;
  color: #4d4d51;
  font-size: 14px;
  line-height: 1.7;
}

.bmt-faq-block__answer p {
  margin: 0;
}

.bmt-faq-block__answer a {
  color: #a90014;
  font-weight: 700;
  text-underline-offset: 3px;
}

.bmt-faq-block__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #d8d8d5;
}

.bmt-faq-block__footer p {
  margin: 0;
  color: #656569;
  font-size: 14px;
}

.bmt-faq-block__cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border-radius: 13px;
  background: var(--burmet-red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.bmt-faq-block__cta:hover {
  background: #a90014;
}

@media (max-width: 760px) {
  .bmt-faq-block__header,
  .bmt-faq-block__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .bmt-faq-block__grid {
    grid-template-columns: 1fr;
  }

  .bmt-faq-block__cta {
    width: 100%;
    box-sizing: border-box;
  }
}

