.font-size-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin: 5px 10px;
}

/* 라벨 */
.font-label {
  font-size: 13px;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
}

/* 버튼 묶음 */
.font-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 버튼 자체 */
.font-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 32px;
  height: 30px;
  padding: 0 8px;

  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);

  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

/* 버튼 크기 차이로 의미 전달 */
.font-btn[data-size="small"]  { font-size: 12px; }
.font-btn[data-size="medium"] { font-size: 14px; }
.font-btn[data-size="large"]  { font-size: 16px; }

/* 선택 상태 */
.font-btn.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--text);
}