/* ==========================================================
   RENTING STEPS — FLECHAS CON BORDE IZQUIERDO AZUL (REAL)
   ========================================================== */

:root {
  --border-thickness: 6px;
}

.srST {
  background: #ffffff;
  position: relative;
  transform: translateX(-50%);
  padding: 70px 0 80px;
  overflow: visible;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
}

.srST__container {
  width: 80%;
  margin: 0 auto;
}

.srST__head {
  text-align: center;
  margin-bottom: 70px;
}

.srST__title {
  margin: 0;
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
}

.srST__highlight {
  color: var(--color3);
}

.srST__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch; 
}

.srST__step {
  position: relative;
  display: flex;
}


.srST__content {
  position: relative;
  background: #f8fafc;
  padding: 50px 50px 50px 70px;
  z-index: 2;
  height: 100%;
  clip-path: polygon(
    100% 50%,
    92% 0,
    0% 0,
    8% 50%,
    0% 100%,
    92% 100%
  );
  display: grid;
  grid-template-columns: 66px 1fr;
  grid-template-rows: 1fr auto auto 1fr;
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
  text-align: left;
}

.srST__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color3);
  z-index: -2;
  clip-path: inherit;
}

.srST__content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f8fafc;
  z-index: -1;
  clip-path: inherit;
  transform: translateX(var(--border-thickness));
}

.srST__number {
  grid-column: 1;
  grid-row: 2 / span 2;
  font-size: 5rem;
  font-weight: 900;
  color: var(--color3);
  line-height: 0.85;
  margin: 0;
  align-self: start;
  transform: translateY(-22px);
}

.srST__stepTitle {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  transform: none;
  text-align: left !important;
}

.srST__stepText {
  grid-column: 2;
  grid-row: 3;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #475569;
  transform: none;
}

@media (max-width: 1100px) {
  .srST__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .srST__content {
    clip-path: none !important;
    border-radius: 16px;
    padding: 40px 32px !important;
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
    row-gap: 6px;
    grid-template-rows: auto auto;
  }

  .srST__content::before,
  .srST__content::after {
    display: none;
  }

  .srST__number {
    font-size: 3.5rem;
    transform: translateY(-6px);
  }

  .srST__stepTitle,
  .srST__stepText {
    transform: none;
  }
}
