.bmt-faq-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 66px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .92), rgba(5, 5, 6, .58)),
    url('../images/slider/brasa.webp') center 58% / cover no-repeat;
  border-bottom: 1px solid var(--burmet-border);
}

.bmt-faq-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(198, 0, 23, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(198, 0, 23, .05), 0 0 0 104px rgba(198, 0, 23, .035);
  pointer-events: none;
}

.bmt-faq-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.bmt-faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.bmt-faq-kicker::before {
  content: '';
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--burmet-red);
}

.bmt-faq-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #fff;
  font-family: 'CHEDROS', sans-serif;
  font-size: clamp(48px, 8vw, 82px);
  font-weight: normal;
  letter-spacing: -1px;
  line-height: .92;
  text-transform: uppercase;
}

.bmt-faq-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.bmt-faq-main {
  background: #f5f5f3;
  color: #171719;
}

.bmt-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  align-items: start;
}

.bmt-faq-toolbar {
  margin-bottom: 34px;
}

.bmt-faq-toolbar h2 {
  margin: 0 0 8px;
  font-family: 'CHEDROS', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
}

.bmt-faq-toolbar p {
  margin: 0;
  color: #606064;
  line-height: 1.6;
}

.bmt-faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.bmt-faq-filter {
  appearance: none;
  padding: 10px 15px;
  border: 1px solid #d8d8d5;
  border-radius: 999px;
  background: #fff;
  color: #252527;
  cursor: pointer;
  font: 700 13px/1 'Poppins', sans-serif;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.bmt-faq-filter:hover {
  transform: translateY(-1px);
  border-color: #aaa;
}

.bmt-faq-filter[aria-pressed='true'] {
  border-color: var(--burmet-red);
  background: var(--burmet-red);
  color: #fff;
}

.bmt-faq-filter:focus-visible,
.bmt-faq-item summary:focus-visible,
.bmt-faq-side a:focus-visible {
  outline: 3px solid rgba(198, 0, 23, .3);
  outline-offset: 3px;
}

.bmt-faq-status {
  min-height: 21px;
  margin-top: 12px !important;
  color: #777 !important;
  font-size: 13px;
}

.bmt-faq-group {
  margin: 0 0 36px;
}

.bmt-faq-group[hidden] {
  display: none;
}

.bmt-faq-group__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: #222;
  font-family: 'CHEDROS', sans-serif;
  font-size: 27px;
  font-weight: normal;
  text-transform: uppercase;
}

.bmt-faq-group__heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #d8d8d5;
}

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

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

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

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

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

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

.bmt-faq-answer {
  padding: 0 22px 22px;
  color: #4d4d51;
  font-size: 15px;
  line-height: 1.75;
}

.bmt-faq-answer p {
  margin: 0 0 12px;
}

.bmt-faq-answer p:last-child {
  margin-bottom: 0;
}

.bmt-faq-answer a,
.bmt-faq-note a {
  color: #a90014;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bmt-faq-note {
  margin: 5px 0 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--burmet-red);
  border-radius: 0 14px 14px 0;
  background: #fff;
  color: #4d4d51;
  font-size: 14px;
  line-height: 1.65;
}

.bmt-faq-side {
  position: sticky;
  top: 92px;
  padding: 24px;
  border-radius: 20px;
  background: #151518;
  color: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .16);
}

.bmt-faq-side__eyebrow {
  margin: 0 0 8px;
  color: #ef4458;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bmt-faq-side h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: 'CHEDROS', sans-serif;
  font-size: 29px;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
}

.bmt-faq-side p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.65;
}

.bmt-faq-side__links {
  display: grid;
  gap: 9px;
}

.bmt-faq-side a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.bmt-faq-side a::after {
  content: '→';
  color: #ef4458;
}

.bmt-faq-side a:hover {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .05);
}

@media (max-width: 900px) {
  .bmt-faq-layout {
    grid-template-columns: 1fr;
  }

  .bmt-faq-side {
    position: static;
  }
}

@media (max-width: 600px) {
  .bmt-faq-hero {
    padding: 72px 0 50px;
  }

  .bmt-faq-hero::after {
    display: none;
  }

  .bmt-faq-item summary {
    padding: 17px 16px;
    font-size: 15px;
  }

  .bmt-faq-answer {
    padding: 0 16px 18px;
  }

  .bmt-faq-filter {
    padding: 10px 13px;
  }
}

