main {
    white-space: pre-line
}

.content-wrapper {
    display: flex; 
    flex-direction: column; 
    gap: var(--space-xl);
}

.about-specialist {
    display: flex;
    flex-direction: row;
    gap: var(--space-3xl);
}

.specialist-img-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
}

.specialist-img-container img {
    width: 160px;
    height: 234px;
    background-position: center;
    border-radius: 16px;
}

.castom-img {
    max-width: 562px;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

ol {
    font-size: var(--fs-xs);
    font-weight: var(--fw-regular);
    font-family: var(--font-body);

    margin-left: var(--space-md);
    list-style-position: inside;
    margin-top: -20px;
}

.li {
    margin-bottom: -16px;
}

@media (max-width: 768px) {

  main {
      white-space: pre-line;
  }

  .content-wrapper {
      gap: var(--space-3xl-m);
  }

  .about-specialist {
      flex-direction: column-reverse;
      gap: var(--space-lg-m);
      align-items: center;
  }

  .specialist-img-container {
      gap: var(--space-xs-m);
      align-items: center;
  }

  .specialist-img-container img {
      width: 120px;
      height: 180px;
      border-radius: 14px;
  }

  .castom-img {
      display: none;
  }

  .text-wrapper {
      gap: var(--space-sm-m);
  }

  ol {
      font-size: var(--fs-xs-m);
      margin-left: var(--space-sm-m);
      margin-top: -12px;
  }

  .li {
      margin-bottom: -10px;
  }
}
