.text-scroller-component {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 75px;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .text-scroller-component {
    padding-top: 100px;
  }
}
@media (max-width: 460px) {
  .text-scroller-component {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.image-positional-icon {
  position: absolute;
  left: 28%;
  top: -19%;
}
@media (max-width: 2000px) {
  .image-positional-icon {
    left: 27%;
    top: -13%;
  }
}
@media (max-width: 1800px) {
  .image-positional-icon {
    left: 26%;
    top: -14%;
  }
}
@media (max-width: 1600px) {
  .image-positional-icon {
    left: 25%;
    top: -13%;
  }
}
@media (max-width: 1440px) {
  .image-positional-icon {
    left: 25%;
    top: -11%;
  }
}
@media (max-width: 1170px) {
  .image-positional-icon {
    left: 28%;
    top: -21%;
  }
}
@media (max-width: 900px) {
  .image-positional-icon {
    left: 28%;
    top: -18%;
  }
}
@media (max-width: 768px) {
  .image-positional-icon {
    left: 5%;
    top: -10%;
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 460px) {
  .image-positional-icon {
    left: 10%;
    top: -3.3%;
    width: 80px;
    height: 80px;
  }
}
.text-scroller-title {
  margin-bottom: 1rem;
  text-align: left;
}
.text-scroller-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.text-scroller-row {
  display: grid;
  grid-template-columns: 1.2fr 50px 2fr;
  align-items: flex-start;
  /* top-align dot */
  gap: 1rem;
  position: relative;
  opacity: 0.2;
  transition: opacity 0.5s ease;
}
.text-scroller-row.active {
  opacity: 1;
}
/* Left Column: label */
.text-scroller-label {
  text-align: right;
  padding-right: 0.5rem;
}
.text-scroller-label p {
  font-size: 1.8rem;
  font-family: roboto;
  font-weight: 300;
}
.text-scroller-label.mobile {
  display: none;
}
@media (max-width: 768px) {
  .text-scroller-label {
    display: none;
  }
  .text-scroller-label.mobile {
    display: flex;
    padding-bottom: 0px;
  }
  .text-scroller-label.mobile p {
    font-size: 1.8rem;
    font-family: roboto;
    font-weight: 300;
  }
}
@media (max-width: 460px) {
  .text-scroller-label.mobile p {
    margin-bottom: 20px;
  }
}
/* Middle Column: dot and vertical line */
.text-scroller-line {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.text-scroller-dot {
  z-index: 1;
}
.default-dot {
  width: 14px;
  height: 14px;
  border: 2px solid black;
  border-radius: 50%;
  display: inline-block;
}
.default-dot img {
  display: none;
}
.default-dot.has_icon.active {
  border: none;
  height: unset;
  width: unset;
}
.default-dot.has_icon.active img {
  display: block;
}
/* Vertical line that continues through rows */
.text-scroller-vertical {
  position: absolute;
  top: 35px;
  /* start below the dot */
  bottom: 0;
  width: 2px;
  background-color: #000;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
/* Right Column: text */
.text-scroller-text {
  text-align: left;
}
@media (max-width: 460px) {
  .text-scroller-text {
    padding-bottom: 40px;
  }
}
.text-scroller-text .column-title {
  position: absolute;
  top: -50px;
}
/* Optional: responsive */
@media (max-width: 768px) {
  .text-scroller-row {
    grid-template-columns: 44px 0.8fr;
  }
  .text-scroller-label {
    text-align: left;
    padding-right: 0;
  }
}
@media (max-width: 460px) {
  .text-scroller-row {
    grid-template-columns: 44px 1fr;
  }
  .text-scroller-label {
    text-align: left;
    padding-right: 0;
  }
}
