.block-works {
  --works-stripe-w: 72px;
  background-color: #fff;
  background-image: repeating-linear-gradient(
    90deg,
    #fff 0,
    #fff var(--works-stripe-w),
    #f3f3f3 var(--works-stripe-w),
    #f3f3f3 calc(var(--works-stripe-w) * 2)
  );
  padding: var(--section-pad-y) 0;
}

.block-works__inner {
  box-sizing: border-box;
  width: 100%;
  margin-inline: 0;
  padding-inline: var(--layout-inline);
}

.block-works__head {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.block-works__head-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}

.block-works__head-main {
  min-width: 0;
  width: 100%;
}

.block-works__title {
  margin: 0;
  width: 100%;
  max-width: 52rem;
  font-family: "Roboto", var(--font), system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.15;
  color: #252529;
}

.block-works__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.block-works__step {
  box-sizing: border-box;
  min-height: 156px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  background: #f0f2f2;
  border: none;
}

.block-works__step--spacer {
  gap: 0;
  padding: 0;
  min-height: 156px;
}

.block-works__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  box-sizing: border-box;
  border: none;
  font-family: "Roboto", var(--font), system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  color: #513172;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23513172' stroke-width='1.05' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 25L7 7L25 7'/%3E%3Cpath d='M75 7L93 7L93 25'/%3E%3Cpath d='M7 75L7 93L25 93'/%3E%3Cpath d='M93 75L93 93L75 93'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
}

.block-works__step-text {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: "Roboto", var(--font), system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #252529;
}

.block-works__scheme {
  position: relative;
  width: 100%;
  max-width: min(780px, 100%);
  margin: clamp(28px, 4vw, 48px) auto 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.block-works__scheme-image {
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
}

@media (max-width: 560px) {
  .block-works__head-top {
    gap: clamp(8px, 2vw, 16px);
  }

  .block-works__steps {
    grid-template-columns: 1fr;
  }

  .block-works__step--spacer {
    display: none;
  }
}
