.image-info-section-filled {
  margin: 120px 0;
}

.image-info-section-filled .image-info-section-filled__content-wrapper {
  border-radius: 20px;
  border: 1px solid var(--Silver);
  background: var(--White);
  overflow: hidden;
  padding: 0;
}

.image-info-section-filled__image-wrapper {
  overflow: hidden;
  border-radius: 20px;
  width: 407px;
}

.image-info-section-filled__image-wrapper {
  width: 100%;
}

.image-info-section-filled__title-wrapper {
  display: flex;
  align-items: center;
  padding: 60px 60px 60px 80px;
}

.image-info-section-filled__title {
  color: var(--Dark-blue);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;

  max-width: 358px;
}

.image-info-section-filled__text-wrapper {
  padding: 60px 60px 60px 80px;
  display: flex;
  gap: 48px;
  background-color: var(--Gray);
}

.image-info-section-filled__text {
  color: var(--Black);
  font-size: 16px;
  line-height: 140%;
  position: relative;
}

.image-info-section-filled__text-read-more {
  display: none;
  border: none;
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--Dark-blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  text-align: center;
  padding: 135px 0 5px;
  width: 100%;
  background: linear-gradient(180deg,
      rgba(245, 248, 252, 0) 0.01%,
      var(--Gray) 73.93%);

  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.image-info-section-filled__text p:not(:last-of-type) {
  margin-bottom: 24px;
}

.image-info-section-filled__info-wrapper {
  display: flex;
  width: 100%;
}

.image-info-section-filled__info {
  padding: 10px 60px;
  position: relative;
  width: 33%;

  color: var(--Black);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
}

.image-info-section-filled__info::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: " ";
  width: 1px;
  height: 100%;
  background-image: repeating-linear-gradient(var(--Silver) 4px,
      transparent 4px,
      transparent 9px,
      var(--Silver) 9px,
      var(--Silver) 15px);
}

.image-info-section-filled__info:first-child {
  padding-left: 0;
}

.image-info-section-filled__info:last-child {
  padding-right: 0;
}

.image-info-section-filled__info:last-child::after {
  display: none;
}

.image-info-section-filled__info strong {
  display: block;
  color: var(--Dark-blue);
  font-size: 40px;
  font-weight: 600;
  margin: 15px 0;
}

@media screen and (max-width: 1200px) {
  .image-info-section-filled .image-info-section-filled__content-wrapper {
    border: none;
    border-radius: 0;
  }

  .image-info-section-filled__image-wrapper {
    display: none;
  }

  .image-info-section-filled__title-wrapper {
    display: block;
    padding: 0;
    margin-bottom: 40px;
  }

  .image-info-section-filled__title {
    max-width: 100%;
    font-size: 22px;
    margin-bottom: 40px;
  }

  .image-info-section-filled__text {
    max-height: 320px;
    overflow: hidden;
  }

  .image-info-section-filled__text.active {
    max-height: 100%;
    overflow: visible;
  }

  .image-info-section-filled__text-read-more {
    display: block;
  }

  .image-info-section-filled__text-read-more.hidden {
    display: none;
  }

  .image-info-section-filled__info-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .image-info-section-filled__info {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
  }

  .image-info-section-filled__info:first-child {
    padding-top: 0;
  }

  .image-info-section-filled__info:last-child {
    padding-bottom: 0;
  }

  .image-info-section-filled__info strong {
    min-width: max-content;
  }

  .image-info-section-filled__info::after {
    top: auto;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(90deg,
        var(--Silver) 4px,
        transparent 4px,
        transparent 9px,
        var(--Silver) 9px,
        var(--Silver) 15px);
  }

  .image-info-section-filled {
    margin: 80px 0;
  }

  .image-info-section-filled__text-wrapper {
    padding: 40px 16px;
  }
}