.astra-collection-items {
  background-color: rgb(0, 0, 0, .52);
  padding-top: 60px;
  position: relative;
  z-index: 1;

  @media screen and (max-width: 480px) {
    padding-top: 36px;
  }

  .section-container {
    display: flex;
    align-items: flex-start;

    @media screen and (max-width: 768px) {
      flex-wrap: wrap;
    }

    .left {
      width: 414px;

      @media screen and (max-width: 1240px) {
        width: 360px;
      }
    }

    .right {
      flex: 1;
      margin-bottom: 60px;

      @media screen and (max-width: 768px) {
        margin-bottom: 48px;
      }

      .right__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 48px;

        @media screen and (max-width: 1240px) {
          margin-bottom: 36px;
        }

        .collection-title {
          font-size: 92px;
          font-family: var(--astra-roboto), sans-serif;
          font-weight: var(--astra-font-weight-thin);
          color: #A8A8A8;

          @media screen and (max-width: 1240px) {
            font-size: 48px;
            text-align: left;
          }

          @media screen and (max-width: 768px) {
            font-size: 32px;
            text-align: left;
          }
        }

        .more-button-wrapper {
          .more-button {
            width: 214px;
            height: 56px;
            border: 2px solid #4EC3E1;
            border-radius: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            color: #4EC3E1;
            text-decoration: none;
            background-color: transparent;
            font-family: var(--astra-source-code-pro), monospace;
            font-size: 24px;
            font-weight: var(--astra-font-weight-regular);
            cursor: pointer;

            @media screen and (max-width: 768px) {
              width: 75px;
              height: 36px;
              font-size: 14px;
              font-weight: var(--astra-font-weight-light);
            }
          }

          .more-button__arrow {
            width: 48px;
            display: block;

            @media screen and (max-width: 768px) {
              display: none;
            }

            svg {
              width: 100%;
              display: block;
            }
          }
        }
      }

      .right__items {
        list-style: none;
        display: grid;
        padding: 0;
        margin: 0 0 120px;
        gap: 24px;

        @media screen and (max-width: 768px) {
          gap: 12px;
          margin: 0 0 60px;
        }

        @media screen and (max-width: 480px) {
          gap: 4px;
          margin: 0 0 48px;
        }

        .right__items--item {
          width: 100%;
        }
      }
    }
  }
}