/* MORE2 - 텍스트 + 점 + 원형 화살표 */
.hymore2 {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, calc(0.47vw + 6.5px), 14px);
  font-size: clamp(14px, calc(0.31vw + 13px), 18px);
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.hymore2:hover {
  color: var(--primary, #111827);
}
.hymore2_txt {
  display: inline;
}
.hymore2_txt::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9ca3af;
  margin-left: clamp(8px, calc(0.47vw + 6.5px), 14px);
  vertical-align: middle;
  transition: background 0.2s ease;
}
.hymore2:hover .hymore2_txt::after {
  background: var(--primary, #111827);
}
.hymore2_circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, calc(1.09vw + 28.5px), 46px);
  height: clamp(32px, calc(1.09vw + 28.5px), 46px);
  border-radius: 50%;
  background: #1f2937;
  color: #fff;
  font-size: clamp(16px, calc(0.47vw + 14.5px), 22px);
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.hymore2:hover .hymore2_circle {
  background: var(--primary, #111827);
  transform: translateX(2px);
}
@media (max-width: 767px) {
  .hymore2 {
    font-size: 13px;
    gap: 6px;
  }
  .hymore2_txt::after {
    width: 3px;
    height: 3px;
    margin-left: 6px;
  }
  .hymore2_circle {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
