.icb {
  position: relative;
  width: 100%;
  background: #eeebff;
  margin: 10px 0;
}

.icb__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 42px 1fr 42px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 20px 40px;
  grid-template-rows: 1fr 40px;
  gap: 20px 42px;
  grid-template-areas:
    "avatar text text"
    "avatar author author";

  padding: 8.5% 5% 8.5% 3.2%;
}

.icb__img-wrapper {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: avatar;
  position: relative;
  width: 190px;
  height: 175px;
}
.icb__svg1 {
  position: absolute;
  top: -3%;
  right: 27%;
}
.icb__svg2 {
  position: absolute;
  top: 35%;
  right: 0%;
}
.icb__img-inner {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(
    100% 13%,
    89% 62%,
    100% 87%,
    41% 100%,
    0 47%,
    35% 0
  );
  clip-path: polygon(100% 13%, 89% 62%, 100% 87%, 41% 100%, 0 47%, 35% 0);
  background-color: #fff;
}
.icb__img-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 25%;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 2px solid #1f1d3e;
  z-index: 5;
}
.icb__img-wrapper::after {
  content: "";
  position: absolute;
  left: 43%;
  bottom: 3%;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 2px solid #1f1d3e;
  z-index: 5;
}

.icb__img {
  width: 100%;
  height: 100%;
}
.icb__info-text {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: text;
  font-size: 16px !important;
  line-height: 21px !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
}
.icb__info-author {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: author;
  font-weight: bold !important;
  font-size: 16px !important;
  line-height: 19px !important;
}
.icb__br-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .icb {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .icb__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100px 25px 1fr 25px 1fr;
    grid-template-columns: 100px 1fr 1fr;
    -ms-grid-rows: 90px 30px 1fr;
    grid-template-rows: 90px 1fr;
    gap: 30px 25px;
    grid-template-areas:
      "avatar author author"
      "text text text";
    padding: 50px 4.2% 40px;
  }
  .icb__img-wrapper {
    width: 97px;
    height: 90px;
  }
  .icb__img-wrapper::before {
    width: 19px;
    height: 19px;
  }
  .icb__img-wrapper::after {
    width: 19px;
    height: 19px;
  }
  .icb__info-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .icb__br-mobile {
    display: block;
  }
  .icb__img-wrapper {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .icb__info-text {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
  .icb__info-author {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
  }
}
@media screen and (max-width: 350px) {
  .icb__inner {
    gap: 20px;
  }
  .icb__info-author,
  .icb__info-text {
    padding-right: 10px;
  }
}
