.single-special-case-problems-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.single-special-case-problems-section .section-title {
  margin: 0 0 24px;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px; /* 112.5% */
  color: var(--brand-white);
}

.single-special-case-problems-section .section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-special-case-problems-section .section-list-item {
  display: flex;
  justify-content: space-between;
  min-height: 600px;
  background: var(--e-global-opacity-black-064);
  backdrop-filter: blur(60px);
  border-radius: 12px;
}

.single-special-case-problems-section .item-content-wrapper {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.single-special-case-problems-section .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single-special-case-problems-section .content-title {
  margin: 0 0 12px;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 125% */
  color: var(--brand-white);
}

.single-special-case-problems-section .content-text {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: var(--brand-white);
}

.single-special-case-problems-section .content-list-wrapper p {
  margin: 0 0 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: 'liga' off;
  line-height: 28px; /* 155.556% */
  color: var(--brand-white);
}

.single-special-case-problems-section .content-list-wrapper ul,
.single-special-case-problems-section .solutions-body ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-special-case-problems-section .content-list-wrapper li,
.single-special-case-problems-section .solutions-body li,
.single-special-case-problems-section .solutions-body p {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: var(--e-global-opacity-white-080);
}

.single-special-case-problems-section .solutions-body p {
  padding-left: 0;
  margin: 0;
}

.single-special-case-problems-section .content-list-wrapper li:before,
.single-special-case-problems-section .solutions-body li:before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  content: '';
  background: var(--e-global-opacity-white-024);
  border-radius: 50%;
}

.single-special-case-problems-section .item-solution-wrapper {
  padding: 24px;
  overflow: hidden;
  background-color: rgba(240, 243, 250, 0.08);
  border-radius: 12px;
}

.single-special-case-problems-section .solutions-heading {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.single-special-case-problems-section .solutions-title {
  margin: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
  color: var(--brand-white);
}

.single-special-case-problems-section .solutions-title-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.single-special-case-problems-section .item-media-wrapper {
  display: flex;
  flex: 1 1 50%;
  align-items: center;
  justify-content: center;
  margin: 8px 8px 8px 32px;
  overflow: hidden;
  background-image: var(--special-case-problems-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}

.single-special-case-problems-section .item-media-icon-wrapper {
  width: 120px;
  height: 120px;
  padding: 10px;
}

.single-special-case-problems-section .item-media-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width:1360px) {
  .single-special-case-problems-section {
    padding-top: var(--fluid-40-120);
    padding-bottom: var(--fluid-40-120);
  }

  .single-special-case-problems-section .section-title {
    font-size: var(--fluid-40-64);
    line-height: 1.125;
  }

  .single-special-case-problems-section .content-title {
    font-size: var(--fluid-28-32);
    line-height: 1.25;
  }

  .single-special-case-problems-section .content-text {
    font-size: var(--fluid-14-16);
    line-height: 1.5;
  }

  .single-special-case-problems-section .content-list-wrapper li,
  .single-special-case-problems-section .solutions-body li,
  .single-special-case-problems-section .solutions-body p {
    font-size: var(--fluid-14-16);
    line-height: 1.5;
  }

  .single-special-case-problems-section .solutions-title {
    font-size: clamp(16px, 13.2px + 0.5vw, 20px);
    line-height: 1.4;
  }
}

@media screen and (max-width:998px) {
  .single-special-case-problems-section .section-list-item {
    flex-direction: column-reverse;
  }

  .single-special-case-problems-section .item-media-wrapper {
    flex: 1 1 auto;
    aspect-ratio: 319 / 224;
    margin: 8px;
  }

  .single-special-case-problems-section .item-content-wrapper {
    flex: 1 1 auto;
    gap: 16px;
    padding: 16px;
  }

  .single-special-case-problems-section .item-solution-wrapper {
    padding: 16px;
  }
}

@media screen and (max-width:560px) {
  .single-special-case-problems-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .single-special-case-problems-section .section-title {
    font-size: 40px;
    line-height: 48px;
  }

  .single-special-case-problems-section .content-title {
    font-size: 28px;
    line-height: 36px;
  }

  .single-special-case-problems-section .content-text {
    font-size: 14px;
    line-height: 20px;
  }

  .single-special-case-problems-section .content-list-wrapper li,
  .single-special-case-problems-section .solutions-body li,
  .single-special-case-problems-section .solutions-body p {
    font-size: 14px;
    line-height: 20px;
  }

  .single-special-case-problems-section .solutions-title {
    font-size: 16px;
    line-height: 24px;
  }
}
