/* per_help_list-common.css — shared layout for help article list */


.per-help-list-main {
  flex: 1;
  min-width: 0;
  padding-right: 89px;
}

.help-list-container {
  width: min(1129px, 100%);
  margin: 0;
}

.help-list-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.help-list-head__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.help-list-back {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.help-list-back img {
  width: 18px;
  height: 18px;
}

.help-list-title {
  font-size: 28px;
  line-height: 42px;
  color: #1a1a1a;
  font-weight: 700;
}

.help-list-subtitle {
  margin-top: 0;
  font-size: 13px;
  line-height: 19px;
  color: #999;
}

.help-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.help-list-item {
  background: #fff;
  border-radius: 12px;
  min-height: 96px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.help-list-item__content h2 {
  font-size: 16px;
  line-height: 24px;
  color: #1a1a1a;
  font-weight: 600;
}

.help-list-item__content p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 19px;
  color: #999;
}

.help-list-item__arrow {
  font-size: 24px;
  line-height: 1;
  color: #ddd;
  margin-left: 12px;
  flex-shrink: 0;
}

.help-list-empty {
  margin-top: 16px;
  font-size: 14px;
  color: #666;
}

.help-list-empty.is-hidden {
  display: none;
}

@media (max-width: 992px) {
  .per-help-list-main {
    padding: 0;
  }

  .help-list-head {
    gap: 12px;
  }

  .help-list-title {
    font-size: 24px;
    line-height: 1.35;
  }

  .help-list-subtitle {
    font-size: 12px;
    line-height: 18px;
  }


  .help-list-item {
    min-height: 100px;
    padding: 18px 16px;
  }

  .help-list-item__content h2 {
    font-size: 16px;
  }

  .help-list-item__arrow {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .help-list-head {
    align-items: flex-start;
  }

  .help-list-back {
    width: 36px;
    height: 36px;
  }

  .help-list-back img {
    width: 16px;
    height: 16px;
  }

  .help-list-title {
    font-size: 22px;
  }

  .help-list-subtitle {
    font-size: 12px;
    line-height: 17px;
  }

  .help-list-item {
    border-radius: 12px;
  }

  .help-list-item__content h2 {
    font-size: 15px;
  }

  .help-list-item__content p {
    margin-top: 8px;
    font-size: 13px;
  }

  .help-list-item__arrow {
    font-size: 20px;
  }
}
