.sectionList__itemList {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% - 20px);
  margin-bottom: 1.111111111111111rem;
}

.cItem {
  width: 100%;
  height: 100%;
}

.cItem__container {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border-radius: 6px;
  padding: 1.666666666666667rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.cItem__container:hover {
  -webkit-filter: drop-shadow(0px 4px 13px rgba(99,146,237,0.21));
          filter: drop-shadow(0px 4px 13px rgba(99,146,237,0.21));
}

.cItem__imgBlock {
  width: auto;
  position: relative;
}

.cItem__imgBlock img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cItem__imgBlock a {
  width: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cItem__title {
  color: #242631;
  line-height: 1.2;
  font-size: 16px;
  font-size: 0.888888888888889em;
}

.cItem__titleBlock {
  width: 100%;
  padding-left: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cItem__title:hover {
  color: #2d66cd;
}

.cItem__buyBlock {
  width: 30%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.cItem__price {
  margin-bottom: 1rem;
  font-size: 24px;
  font-size: 1.333333333333333em;
  font-weight: 700;
}

@media screen and (max-width: 960px) {
  .cItem__container {
    padding: 1.5rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .cItem__titleBlock {
    width: 70%;
  }

  .cItem__buyBlock {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .cItem__price {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 560px) {
  .cItem__titleBlock {
    width: 65%;
    padding-left: 1rem;
  }
}

@media screen and (max-width: 400px) {
  .cItem__imgBlock {
    width: 100%;
  }

  .cItem__imgBlock a {
    margin: auto;
  }

  .cItem__titleBlock {
    width: 100%;
    padding-left: 0;
    margin-bottom: 1rem;
  }
}