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

.fdfl {
  background: #fff;
  padding: clamp(22px, 3vw, 34px) 16px;
}

.fdfl__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.fdfl__grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 430px);
  gap: clamp(20px, 3vw, 30px);
  align-items: start;
}

.fdfl__left {
  border-top: 1px solid #e8ecf1;
}

.fdfl__item {
  border-bottom: 1px solid #e8ecf1;
}

.fdfl__question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
  color: rgb(13, 30, 53);
}

.fdfl__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #dfe5ed;
  background: #f4f6f9;
  position: relative;
  flex-shrink: 0;
}

.fdfl__dot::before,
.fdfl__dot::after {
  content: "";
  position: absolute;
  background: #9eabbd;
}

.fdfl__dot::before {
  width: 8px;
  height: 1.5px;
  left: 4px;
  top: 8px;
}

.fdfl__dot::after {
  width: 1.5px;
  height: 8px;
  left: 8px;
  top: 4px;
}

.fdfl__item.is-open .fdfl__dot {
  background: #1b2e4b;
  border-color: #1b2e4b;
}

.fdfl__item.is-open .fdfl__dot::before,
.fdfl__item.is-open .fdfl__dot::after {
  background: #fff;
}

.fdfl__item.is-open .fdfl__dot::after {
  opacity: 0;
}

.fdfl__answer {
  display: none;
  padding: 0 34px 16px 0;
}

.fdfl__answer.is-open {
  display: block;
}

.fdfl__answer p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: oklch(0.551 0.027 264.364);
}

.fdfl__sticky {
  position: sticky;
  top: 24px;
}

.fdfl__media-title {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgb(74, 144, 217);
  text-transform: uppercase;
}

.fdfl__media-wrap {
  border-radius: 12px;
  overflow: hidden;
}

.fdfl__media-image {
  display: block;
  width: 100%;
  height: clamp(250px, 30vw, 360px);
  object-fit: cover;
}

.fdfl__media-caption {
  margin: 12px 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(27, 46, 75, 0.5);
}

@media (max-width: 1024px) {
  .fdfl__grid {
    grid-template-columns: 1fr;
  }

  .fdfl__sticky {
    position: static;
  }
}

@media (max-width: 700px) {
  .fdfl__question {
    font-size: 14px;
    line-height: 20px;
  }

  .fdfl__answer p {
    font-size: 12px;
    line-height: 20px;
  }
}
