/* ——— ABOUT US / HOW WE DO IT ——— */
.cabout {
  background: var(--black);
  padding: 5rem clamp(1.25rem, 4vw, 3.5rem);
}

.cabout__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 16rem);
  gap: clamp(2rem, 6vw, 5rem);
}

.cabout__col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cabout__block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cabout__block p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 34rem;
}

.cabout__block p + p {
  margin-top: 1rem;
}

.cabout__cycle {
  list-style: none;
}

.cabout__cycle li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 2.25rem;
}

.cabout__cycle li:last-child {
  padding-bottom: 0;
}

.cabout__cycle li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: -6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.cabout__cycle li:last-child::before {
  display: none;
}

.cabout__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.cabout__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  padding-top: 0.4rem;
}

@media (max-width: 900px) {
  .cabout__grid {
    grid-template-columns: 1fr;
  }

  .cabout__cycle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }

  .cabout__cycle li::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .cabout__cycle {
    grid-template-columns: 1fr;
  }
}
