/* 260126 추가 - 툴팁 안내문구 */
.tooltip-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-left: 4px;
}
.help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #9ca3af;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  border: none;
  cursor: default;
  position: relative;
}
.tooltip-content {
  position: absolute;
  bottom: 100%;
  left: -20px;
  transform: none;
  margin-bottom: 12px;
  width: max-content;
  min-width: 195px;
  max-width: 300px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  padding: 14px 18px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.tooltip-content::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 20px;
  transform: none;
  width: 0;
  height: 0;
  border-top: 10px solid white;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.05));
}
@media (min-width: 992px) {
  .tooltip-content {
    top: 50%;
    bottom: auto;
    left: 100%;
    transform: translateY(-50%);
    margin-bottom: 0;
    margin-left: 16px;
    border-radius: 10px;
    padding: 20px 24px;
    width: max-content;
    max-width: 345px;
  }
  .tooltip-content::before {
    top: 50%;
    left: auto;
    right: 100%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-right: 10px solid white;
    border-bottom: 10px solid transparent;
    border-left: none;
    filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.05));
  }
}
.tooltip-container:hover .tooltip-content,
.tooltip-container:focus-within .tooltip-content {
  opacity: 1;
  visibility: visible;
}
.tooltip-body {
  font-size: 1.3rem;
  line-height: 1.54;
  color: #171717;
  text-align: left;
}
.tooltip-body > p {
  margin-top: 7px;
}
.tooltip-body > p:first-child {
  margin-top: 0;
}