.shared-content-image-block {
  width: 100%;
  display: flex;
  overflow: hidden;
  gap: max(3.125vw, 24px);
}

.shared-content-image-block .img-container {
  width: 55%;
  min-height: max(25vw, 240px);
  display: flex;
  position: relative;
}

.shared-content-image-block .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.shared-content-image-block.no-image .text,
.shared-content-image-block.image-only .img-container {
  width: 100%;
}

.shared-content-image-block .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.shared-content-image-block .text .description {
  margin: max(1.667vw, 12px) 0 0;
  font-size: max(12px, 0.833vw);
}

.shared-content-image-block .link-container {
  display: flex;
  align-items: center;
  gap: max(20px, 1.667vw);
  flex-wrap: wrap;
  margin-top: max(24px, 1.667vw);
}

.shared-content-image-block .text-link {
  display: flex;
  align-items: center;
  gap: max(0.833vw, 12px);
  line-height: 1.16;
  background-color: var(--main-blue);
  color: #fff;
  padding: max(12px, 0.833vw) max(1.667vw, 24px);
  font-size: max(12px, 0.833vw);
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
}

.shared-content-image-block .text-link .arrow {
  position: relative;
  width: max(0.86vw, 12px);
  height: 1px;
  background-color: #fff;
  border-radius: 0 1px 1px 0;
  transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
}

.shared-content-image-block .text-link .arrow::before,
.shared-content-image-block .text-link .arrow::after {
  position: absolute;
  right: 0.5px;
  width: max(9px, 0.64vw);
  height: 1px;
  content: "";
  background-color: #fff;
  transform-origin: right;
  top: 0;
  border-radius: 0 1px 1px 0;
}

.shared-content-image-block .text-link .arrow::before {
  transform: rotate(-40deg);
  -webkit-transform: rotate(-40deg);
}

.shared-content-image-block .text-link .arrow::after {
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
}

.shared-content-image-block .text-link:hover {
  transform: translateX(max(0.86vw, 10px));
  -webkit-transform: translateX(max(0.86vw, 10px));
}

.shared-content-image-block .text-link:hover .arrow {
  width: max(1.667vw, 24px);
}

.shared-content-image-block .shared-arrow-link {
  width: fit-content;
  max-width: 100%;
}

.shared-content-image-block .shared-arrow-link .title-item {
  margin-bottom: 0;
}

.shared-content-image-block .shared-arrow-link:hover {
  transform: translateX(max(0.86vw, 10px));
  -webkit-transform: translateX(max(0.86vw, 10px));
}

.shared-content-image-block .shared-arrow-link:hover .arrow {
  width: max(1.667vw, 24px);
}

@media (max-width: 768px) {
  .shared-content-image-block {
    flex-direction: column !important;
  }

  .shared-content-image-block .img-container,
  .shared-content-image-block .text {
    width: 100%;
  }

  .shared-content-image-block .img-container {
    height: 240px;
  }

  .shared-content-image-block .text-link:hover {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  .shared-content-image-block .text-link:hover .arrow {
    width: max(0.86vw, 12px);
  }
}
