.runda-custom-process {
  position: relative;
  padding: calc(var(--text-gap-lg) * 2) 0;
}

.runda-custom-process-decorate-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 41.1%;
  transform: translateY(-29.08%);
  z-index: -1;
  min-width: 240px;
}

.runda-custom-process-decorate-img img {
  width: 100%;
  height: auto;
}

.runda-custom-process-top {
  text-align: center;
}

.runda-custom-process-top h2 {
  color: #000;
  font-size: var(--title-size-h2);
  font-weight: 400;
  line-height: normal;
}

.runda-custom-process-top p {
  color: rgba(0, 0, 0, 0.60);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
  margin-top: 16px;
}

.runda-custom-process-list {
  margin-top: var(--text-gap);
  display: grid;
  gap: 31px 87px;
  grid-template-columns: repeat(3, 1fr);
}

.runda-custom-process-list-item-img {
  width: 100%;
  position: relative;
  box-shadow: 0 20px 80px 0 rgba(188, 176, 141, 0.20);
}

.runda-custom-process-list-item-arrow {
  position: absolute;
  top: 50%;
  right: -31px;
  transform: translate(100%, -50%);
}

.runda-custom-process-list-item-arrow svg {
  width: 25px;
  aspect-ratio: 25 / 49;
}

.runda-custom-process-list-item:nth-child(3n) .runda-custom-process-list-item-arrow {
  display: none;
}


.runda-custom-process-list-item-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.runda-custom-process-list-item-content h3 {
  color: #333;
  font-family: var(--font-family);
  font-size: var(--title-size-h5);
  font-weight: 400;
  line-height: normal;
  margin-top: var(--text-gap-sm);
  text-align: center;
}

.runda-custom-process-list-item-content p {
  color: #000;
  font-family: var(--font-family);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
  margin-top: 16px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1500px) {
  .runda-custom-process-list {
    gap: 30px 65px;
  }

  .runda-custom-process-list-item-arrow {
    right: -20px;
  }
}

@media screen and (max-width: 1200px) {
  .runda-custom-process-list {
    gap: 24px 50px;
  }

  .runda-custom-process-list-item-arrow svg {
    width: 20px;
  }

  .runda-custom-process-list-item-arrow {
    right: -15px;
  }
}

@media screen and (max-width: 992px) {

  .runda-custom-process-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
  }

  .runda-custom-process-list-item-arrow {
    right: -10px;
  }

  .runda-custom-process-list-item:nth-child(3n) .runda-custom-process-list-item-arrow {
    display: block;
  }

  .runda-custom-process-list-item:nth-child(2n) .runda-custom-process-list-item-arrow {
    display: none;
  }

  .runda-custom-process-list-item-img {
    box-shadow: 0 10px 40px 0 rgba(35, 52, 95, 0.09);
  }

  .runda-custom-process-list-item-content h3,
  .runda-custom-process-list-item-content p {
    margin-top: 8px;
  }
}

@media screen and (max-width: 768px) {
  .runda-custom-process-list-item-arrow svg {
    width: 16px;
  }

  .runda-custom-process-list-item-arrow {
    right: -12px;
  }
}

@media screen and (max-width: 576px) {
  .runda-custom-process-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .runda-custom-process-list-item-arrow {
    display: none;
  }
}

@media screen and (max-width: 480px) {}