.mcd-faqs__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 40px + (60px - 40px) * (100vw - 320px) / (1920px - 320px), 60px);
  align-items: start;
}
@media (max-width: 1023px) {
  .mcd-faqs__inner {
    grid-template-columns: 1fr;
  }
}
.mcd-faqs__intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mcd-faqs__kicker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.mcd-faqs__kicker-line {
  flex-shrink: 0;
  width: 32px;
  height: 2px;
  background-color: #f1563f;
}
.mcd-faqs__heading {
  margin: 0;
}
.mcd-faqs__body {
  margin: 0;
  font-weight: 300;
}
.mcd-faqs__body p {
  margin: 0 0 1em;
}
.mcd-faqs__body :last-child {
  margin-bottom: 0;
}
.mcd-faqs__list {
  display: flex;
  flex-direction: column;
}
.mcd-faqs__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  transition: border-color 0.2s ease;
}
.mcd-faqs__item:has(.mcd-faqs__toggle:checked) {
  border-bottom-color: #e41d10;
}
.mcd-faqs__toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.mcd-faqs__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 18px + (22px - 18px) * (100vw - 320px) / (1920px - 320px), 22px);
  line-height: 1.25;
  color: #000000;
}
.mcd-faqs__toggle:focus-visible + .mcd-faqs__question {
  outline: 2px solid #e41d10;
  outline-offset: 2px;
}
.mcd-faqs__icon {
  position: relative;
  flex-shrink: 0;
  width: clamp(16px, 16px + (18px - 16px) * (100vw - 320px) / (1920px - 320px), 18px);
  height: clamp(16px, 16px + (18px - 16px) * (100vw - 320px) / (1920px - 320px), 18px);
  margin-top: 0.35em;
  color: #e41d10;
}
.mcd-faqs__icon::before, .mcd-faqs__icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease;
}
.mcd-faqs__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.mcd-faqs__icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}
.mcd-faqs__toggle:checked + .mcd-faqs__question .mcd-faqs__icon::after {
  transform: translateX(-50%) rotate(90deg);
}
.mcd-faqs__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.mcd-faqs__toggle:checked ~ .mcd-faqs__answer-wrap {
  grid-template-rows: 1fr;
}
.mcd-faqs__answer {
  overflow: hidden;
  min-height: 0;
  max-width: 750px;
  font-weight: 300;
}
.mcd-faqs__answer p {
  margin: 0 0 1em;
}
.mcd-faqs__answer > :first-child {
  margin-top: 14px;
}
.mcd-faqs__answer.mcd-body > :last-child {
  margin-bottom: 20px;
}

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