.arrow-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.arrow-bullet-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  align-items: center;
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #000;
}

.arrow-bullet-list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 22px;
  background-image: url("../img/technology/bullet.svg");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .arrow-bullet-list li {
    font-size: 0.875rem;
  }
  .arrow-bullet-list li::before {
    width: 12px;
    height: 16px;
  }
}
