.mtfip,
.mtfip * {
  box-sizing: border-box;
}

.mtfip {
  width: 100%;
  color: #111;
}

.mtfip__inner {
  width: 100%;
  margin: 0 auto;
}

.mtfip__image-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: rgba(150, 159, 165, 0.12);
}

.mtfip__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% var(--mtfip-img-y, 50%);
}

.mtfip__layout {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.mtfip__aside {
  flex: 0 0 290px;
  min-width: 0;
}

.mtfip__menu-heading,
.mtfip__kicker {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #aeb7bb;
}

.mtfip__menu-heading {
  margin-bottom: 22px;
}

.mtfip__menu-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mtfip__menu-link {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  transition: color 160ms ease, opacity 160ms ease;
}

.mtfip__menu-link.is-active {
  opacity: 0.72;
}

.mtfip__menu-link:hover {
  opacity: 0.82;
}

.mtfip__content {
  flex: 1 1 auto;
  min-width: 0;
}

.mtfip__kicker {
  margin-bottom: 12px;
}

.mtfip__title {
  margin: 0 0 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 5vw, 86px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 400;
}

.mtfip__intro {
  max-width: 780px;
  margin-bottom: 34px;
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

.mtfip__intro p,
.mtfip__body p {
  margin: 0 0 1em;
}

.mtfip__intro p:last-child,
.mtfip__body p:last-child {
  margin-bottom: 0;
}

.mtfip__accordions {
  display: flex;
  flex-direction: column;
}

.mtfip__details {
  border: 1px solid rgba(150, 159, 165, 0.35);
  overflow: hidden;
}

.mtfip__summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 54px !important;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: inherit;
}

.mtfip__summary::-webkit-details-marker {
  display: none;
}

.mtfip__summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}

.mtfip__details[open] .mtfip__summary::after {
  content: "−";
}

.mtfip__body {
  padding-bottom: 20px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

body.mt-theme-dark .mtfip {
  color: #f5f5f0;
}

body.mt-theme-dark .mtfip__details {
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 767px) {
  .mtfip__layout {
    flex-direction: column;
  }

  .mtfip__aside {
    flex-basis: auto;
    width: 100%;
    margin-bottom: 38px;
  }

  .mtfip__menu-list {
    gap: 10px;
  }

  .mtfip__menu-link {
    font-size: 22px;
  }

  .mtfip__title {
    font-size: clamp(38px, 13vw, 58px);
  }

  .mtfip__summary {
    font-size: 21px;
  }
}
