/* == LISTADO BLUR == */
.service-list-section {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  position: relative;
}

.services-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: var(--services-list-justify, center);
}

/* Blur enabled */
.services-list.blur-enabled .service-item {
  filter: blur(8px);
  opacity: var(--pro-blur-inactive-opacity, 0.6);
  color: var(--pro-blur-inactive-color, #1B1B1B);
  pointer-events: none;
}
.services-list.blur-enabled .service-item.active {
  filter: none;
  opacity: var(--pro-blur-active-opacity, 1);
  color: var(--pro-blur-active-color, #1B1B1B);
  pointer-events: auto;
}

/* Blur disabled */
.services-list:not(.blur-enabled) .service-item {
  filter: none !important;
  opacity: var(--pro-inactive-opacity, 0.6);
  color: var(--pro-inactive-color, #1B1B1B);
  pointer-events: none;
}
.services-list:not(.blur-enabled) .service-item.active {
  filter: none !important;
  opacity: var(--pro-active-opacity, 1);
  color: var(--pro-active-color, #1B1B1B);
  pointer-events: auto;
}

/* Item base */
.service-item {
  font-size: 135px;
  font-family: 'Neue Montreal', sans-serif;
  font-weight: 800;
  transform: translateX(0);
  transition:
    filter 0.32s cubic-bezier(.77,0,.18,1),
    opacity 0.22s,
    transform 0.37s cubic-bezier(.77,0,.18,1),
    color 0.22s;
  z-index: 0;
  overflow: visible;
}
.service-item.active {
  transform: translateX(48px) scale(1.04);
  z-index: 1;
}

/* Title reset — remove browser default margins */
.service-item-title {
  margin: 0;
  padding: 0;
}

/* Description default */
.service-item-desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

/* Button */
.service-item-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.service-item-button.reverse {
  flex-direction: row-reverse;
}

/* ─── Two Columns Layout ─── */
.service-item--columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.service-item--columns .service-item__left {
  flex: 0 0 auto;
}
.service-item--columns .service-item__right {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* ─── Separator ─── */
.pe-list-separator {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 20px 0;
  width: 100%;
}

/* ─── Mobile ─── */
@media (max-width: 767px) {
  .service-list-section {
    flex-direction: column;
    align-items: flex-start;
    min-height: 60vh;
    padding-bottom: 40px;
  }

  .service-item.active {
    transform: translateX(10px) scale(1.03);
  }

  .service-item--columns {
    flex-direction: column;
    gap: 10px;
  }
  .service-item--columns .service-item__right {
    text-align: left;
    align-items: flex-start;
  }
}
