
.disclosurePage{
  display: grid;
  gap: 0 0;
  grid-template-areas: "leftSitebar disclosureContent";
  grid-template-columns: 482px auto;

  @media (max-width: $desktop-sm) {
    grid-template-columns: 300px auto;
  }
  @media (max-width: $tablet) {
    grid-template-areas: "leftSitebar" "disclosureContent";
    grid-template-columns: auto;
  }

  .disclosureContent {
    grid-area: disclosureContent;

    &__topbar {
      padding: 48px 40px 0;
      border-bottom: 1px solid rgba(0,0,0, .1);
    }
    h6 {
      padding-left: 40px;
    }

    .disclosureContent__files_container {
      margin-top: 10px;
    }
    .pagination {
      position: relative;
      display: flex;
      width: 100%;
      height: 100%;
      flex-direction: row;
      justify-content: flex-start;
      flex-wrap: wrap;

      @media (max-width: $tablet) {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        max-width: calc(100vw - 50px);
        overflow-x: hidden;
      }
      .page-item {
        width: auto;
        list-style: none;
        margin-bottom: 15px;

        @media (max-width: $tablet) {
          width: max-content;
          margin-bottom: 5px;
          white-space: nowrap;
          overflow-x: auto;
        }
        &.last {
          border-color: #E4BC96;

          @media (min-width: $tablet) {
            margin-left: auto;
            padding-right: 20px;
          }
        }
      }
    }
    &__title {
      margin-bottom: 24px;
      font-style: normal;
      font-weight: 600;
      font-size: 30px;
      line-height: 100%;
      letter-spacing: -0.02em;
      color: #1F2000;
    }
    &__items {
      &-year {
        padding: 9px 40px;
        background: #EFECE7;
        border: 1px solid #EFECE7;

        span {
          font-style: normal;
          font-weight: 400;
          font-size: 14px;
          line-height: 100%;
          letter-spacing: -0.01em;
          color: #2F2F2F;
          opacity: 0.4;
        }
      }
    }
    &__item {
      display: flex;
      column-gap: 40px;
      padding: 24px 40px;
      border-bottom: 1px solid rgba(0,0,0, .1);

      &:hover {
        background: #EFECE7;
      }

      &.hidden {
        display: none;
      }

      &-image {
        svg {
          width: 104px;
          height: 104px;
        }
      }

      &-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
      }
      &-title {
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: -0.01em;
        color: #2F2F2F;
      }
      &-intro,
      &-size,
      &-btn a {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: -0.01em;
      }
      &-intro {
        margin-bottom: 16px;
      }
      &-download {
        display: flex;
        column-gap: 11px;
        align-items: center;
      }
      &-btn a {
        color: #2F2F2F;
        text-decoration: none;
        background: #F2F2F2;
        border-radius: 6px;
        padding: 3px 12px;

        &:hover {
          background: #BB9B6D;
          color: #ffffff;
        }
      }
      &-separator {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #2F2F2F;
        opacity: 0.2;
      }
      &-size {
        color: #2F2F2F;
        opacity: .4;
      }

      &-icon {
        align-self: center;
        margin-left: auto;

        svg {
          width: 24px;
          height: 24px;
        }
      }
    }
    table {
      border-collapse: collapse;
      margin: 24px;

      tr:nth-child(2) > td, tr:nth-child(24) > td, tr:nth-child(37) > td, tr:nth-child(47) > td, tr:nth-child(59) > td {
        font-weight: bold;
      }
      th, td {
        text-align: left;
        padding: 12px 8px;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: -0.01em;
        color: #2F2F2F;
        border: 1px solid rgba(0,0,0, .1);
      }

      th {
        background: #F6F6F4;
        font-weight: 700;
        text-align: center;
        position: sticky;
        top: 0;
        z-index: 2;
      }
    }
    &__files {
      margin-top: 20px;
    }
    &__items {
      margin-top: 20px;
      margin-bottom: 20px;
    }
  }
}
