.tab-description {
  display: flex;
  gap: 80px;
  padding: 48px;
  margin-top: 64px;
  border-radius: 24px;
  background-color: var(--white);
}

.tab-description > div {
  flex: 1;
}

.tab-description .description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
}

.tab-description .description .title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.tab-description .description .title.composition-title {
  margin-top: 0;
  text-align: left;
}

.tab-description .description .clearfix {
  display: none;
}

.tab-description .pag_header {
  margin: 16px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}

.tab-description .pag:not(:first-child) .pag_header {
  margin-top: 56px;
}

.tab-description .pag .char {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 23px;
}

.tab-description .pag .char .char-right {
  font-weight: 600;
}

.tab-description .pag .char .char-left {
  position: relative;
  color: var(--taupe-gray);
  white-space: nowrap;
}

.tab-description .pag .char .char-left span span {
  /* display: flex; */
  position: relative;
  padding-right: 2px;
  background-color: var(--white);
  z-index: 11;
}

.tab-description .pag .char .char-left > span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(-10px);
  border-bottom: 2px dotted var(--taupe-gray);
}

.mobile-img {
  display: none;
}

@media (max-width: 991px) {
  .tab-description {
    flex-direction: column;
    gap: 56px;
  }

  .tab-description .description > img {
    display: none;
  }

  .mobile-img {
    display: initial;
  }
}

@media (max-width: 600px) {
  .tab-description {
    gap: 40px;
    margin-top: 22px;
    padding: 24px;
  }

  .tab-description .description {
    font-size: 14px;
    line-height: 21px;
  }

  .tab-description .pag:not(:first-child) .pag_header {
    margin-top: 40px;
  }

  .tab-description .pag .pag_header {
    font-size: 16px;
    line-height: 21px;
  }

  .tab-description .pag .char {
    font-size: 14px;
    line-height: 21px;
  }

  .tab-description .pag .char .char-left {
    display: inline-block;
    min-width: 70%;
  }

  .tab-description .pag .char .char-right {
    display: inline-block;
  }
  
  .tab-description .pag .char .char-left,
  .tab-description .pag .char .char-right {
    float: unset;
  }
}