.docs-or-docs {
    background: #e27c1d;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    padding: 5px 15px;
    border-radius: 5px;
    z-index: 5
}


.docs-or-docs {
    margin: 0 auto;
    margin-top: 21px;
    text-align: center;
    display: flex;
    max-width: 77px;
    justify-content: center;
    margin-bottom: 26px;
}



.docs-or-item:last-child .docs-or-docs {
    display: none;
}

.audio-reviews.row {
	padding-bottom: 41px;
}

.item-views.staff.linked.sections.within {
	padding-bottom: 40px;
}

@media screen and (min-width: 992px) {
    .docs-or-docs {
        position: absolute;
        right: 0;
        top: calc(50% - 13px);
        transform: translateX(calc(100% + 7px));
    }

    .docs-or-item {
        margin-right: 80px;
    }

    .items.row.docs_items {
        text-align: center;
        display: flex;
        justify-content: center;
      }
      s-or-item:last-child {
        margin-right: 0;
      }
}

@media screen and (max-width: 992px) {
    .docs_items .name {
        margin-bottom: 0;
    }
}

.link-block {
    background: #ffffff;
    padding: 0 16px;
  }

  .link-block__title {
    color: #1a1f36;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .link-block__title::before {
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #4f7cff, #6c5ce7);
    border-radius: 2px;
  }

  .link-block__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 112px; /* ~2 строки: 2 * (40px + 10px gap) */
  }

  .link-block__list.is-open {
    max-height: 2000px;
  }

  .link-block__item {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: #ffffff;
    border: 1.5px solid #d8dce6;
    border-radius: 999px;
    color: #3a4256;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.2s ease;
    cursor: pointer;
  }

  .link-block__item:hover {
    border-color: #e27c1d;
    color: #e27c1d;
    box-shadow: 0 4px 12px rgba(255, 161, 79, 0.12);
  }

  .link-block__item:active {
    transform: translateY(0);
  }

  .link-block__footer {
    margin-top: 18px;
    display: flex;
    justify-content: center;
  }

  .link-block__toggle {
    background: none;
    border: none;
    color: #e27c1d;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .link-block__toggle:hover {
    background: #fff8ee;
    color: #e27c1d;
  }

  .link-block__toggle-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .link-block__toggle.is-open .link-block__toggle-icon {
    transform: rotate(180deg);
  }

  .link-block__toggle.is-hidden {
    display: none;
  }

  @media (max-width: 480px) {
    .link-block { padding: 22px 18px 18px; }
    .link-block__title { font-size: 18px; margin-bottom: 16px; }
    .link-block__item { padding: 9px 14px; font-size: 13.5px; }
    .link-block__list { max-height: 300px; }
  }


.section-block-link {
  padding: 
40px 0 40px; 
}

@media screen and (min-width: 1200px) {
    .section-block-link {
        padding-top: 80px;
}
}

.link-block__list {
    position: relative
  }
  
  .link-block__list:not(.is-open):before {
      content: "";
      z-index: 2;
      background: linear-gradient(#fff0 40%,#fff 100%);
      width: 100%;
      height: 80px;
      position: absolute;
      bottom: 0;
      left: 0;
  }

  .link-block__list.is-hidden-fog::before {
    display: none;
  }