.app-container {
  .casy-study-selected {
    .casy-study-selected__container {
      position: relative;
      z-index: 2;
      max-width: 1192px;
      padding: 48px 100px;
      width: 100%;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 48px;
      @media (max-width: 1400px) {
        padding: 48px 50px;
      }
      @media (max-width: 1000px) {
        padding: 32px 16px;
        gap: 48px;
      }
    }
    .casy-study-selected__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 24px;
      .case-study-selected__header-text {
        max-width: 584px;
        p {
          margin-bottom: 0;
        }
      }
    }
    .casy-study-selected__item {
      width: calc(50% - 8px);
      padding: 32px;
      border-radius: 8px;
      border: 1px solid rgba(25, 19, 37, 0.1);
      text-decoration: none;
      display: flex;
      flex-direction: column;
      @media (min-width:768px) {

      &.one {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 32px;
        p.title {
          font-size: 19px;
        }
        .casy-study-selected__thumb {
          margin-bottom: 0;
          min-width: 200px;
          width: 200px;
          img {
            height: 100%;
          }
        }
      }
    }
      @media (max-width: 768px) {
        width: 100%;
        padding: 24px;
      }
      .casy-study-selected__cats {
        display: flex;

        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 8px;
        .casy-study-selected__cat {
          color: rgba(25, 19, 37, 0.5);
          font-size: 11px;
          font-weight: 600;
          border-radius: 4px;
          padding: 6px 8px;
          background-color: rgba(25, 19, 37, 0.1);
          display: flex;
          align-items: center;
          justify-content: center;
        }
      }
      .casy-study-selected__thumb {
        width: 100%;
        display: flex;
        margin-bottom: 24px;
        img {
          width: 100%;
          object-fit: cover;
          height: 240px;
          border-radius: 4px;
          @media (max-width: 768px) {
            height: 210px;
          }
        }
      }
      p.title {
        color: #191325;
        font-size: 23px;
        font-weight: 600;
        line-height: 1.2;
        font-family: var(--mainfont);
        margin-bottom: 8px;
        @media (max-width: 1000px) {
          font-size: 19px;
        }
      }
      .casy-study-selected__item-text {
        p {
          font-size: 13px;
          margin-bottom: 24px;
        }
      }
      span.more {
        background-color: #7b4fff;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 360px;
        font-size: 16px;
        align-items: center;
        font-weight: 600;
        text-decoration: none;
        justify-content: center;
        padding: 12px 20px;
        transition: 0.3s;
        display: flex;
        width: fit-content;
        margin-top: auto;
        &.small {
          font-size: 13px;
          padding: 8px 14px;
          svg {
            margin-left: 6px;
                    width: 16px;
          }
        }
        svg {
          margin-left: 12px;
          path {
            transition: 0.3s;
          }
        }
        &:hover {
          background-color: #5018bf;
        }
      }
    }
    .casy-study-selected__items {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }
  }
}
